@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Modak&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    text-transform: none;
    background-color: var(--light);
    color: var(--dark);
}

:root {
    --primary: #336600; 
    --secondary: #99cc66;
    --light: #f5f5f5;
    --dark: #14141f;
    --yellow: #ffcc33;
    --orange: #ff9900;
    --grem: #907c46;
}
/* ubicar al medio texto relevante del titular*/
.carousel-inner{
    margin-top: -50px;
    margin-bottom: -50px;
    z-index: -1;
}
.carousel-caption {
    justify-content: start;
    padding: 20px;
    margin-top: -50px;
}
.carousel-caption .titulo1{
    font-size: 4rem;
}
.carousel-caption .parrafo1{
    font-size: 1.4rem;
}
@media (max-width: 768px){
    .carousel-caption .titulo1{
        font-size: 2rem;
    }
    .carousel-caption .parrafo1{
        font-size: 1rem;
    }
}

/**---------------------sobre la imformacion  aqui h1------------*/
.romax{
    padding-top: 6rem;
}
.animated-title {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    color: #4b5320;
    animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.grafit {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0;
}
.grafit img {
    flex: 1 1 50%;
    padding: 10px;
    max-width: 100%;
    height: auto;
    margin: 0.5rem;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    mask-image: linear-gradient(var(--light) 50%, transparent);
    filter: grayscale(50%);
    transition: transform 0.3s ease;
}
.grafit img:hover {
    transform: scale(1.01);
}


.grafit .colw{
    flex: 1 1 50%;
    padding: 10px;
}

#parrafo {
    font-size: 1.4rem;
    color: #3e3e3e;
    line-height: 1.6;
    font-style: italic;
    animation: escribir 4s steps(40) 1 normal both;
    width: 100%;
    border-right: 1px solid;
    overflow: hidden;
}
@keyframes escribir {
    from { width: 70%; }
    to { width: 100%; }
}
@media (max-width: 768px) {
    .grafit .colw{
        flex: 1 1 100%;
    }
}



/*indicaciones*/

.icon-container {
    border-radius: 50%;
    border: 2px solid var(--primary);
    width: 100px;
    height: 100px;
    animation: spin 4s linear infinite;
    margin: 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}
.row .col-md-4 .card{
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    padding: 10px;
}


@media (max-width: 768px) {
    .col1 {
        width: 90%;
        height: auto;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



@media (max-width: 768px) {
    .container{
        width: 90%;
    }
}

/* -----------------------sobre las cards de paquetes------------*/
.card-general {
    transition: transform 0.5s;
    margin-top: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    width: 300px;
    height: 550px;
}
.card-general:hover {
    transform: scale(1.05);
}
.card-general img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}
.card-body .card-title{
    color: var(--primary);
}
.card-body .btn{
    background-color: var(--secondary);
    color: white;
}
.card-body .btn:hover{
    background-color: var(--primary);
    color: white;
}
.card-footer {
    padding: 10px;
}
@media (max-width: 768px) {
    .card-general {
        width: 90%;
        height: auto;
    }

    .card-general img {
        height: auto;
    }

    .card-body {
        padding: 15px;
    }

    .card-footer {
        padding: 5px;
    }
}

@media (max-width: 576px) {
    .card-general {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .card-body {
        padding: 10px;
    }

    .card-footer {
        padding: 5px;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .card-footer ul li {
        font-size: 0.875rem;
    }

    .text-center span {
        font-size: 1.5rem;
    }

    .btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
}

/* Frequently Asked Questions Section */
.faq-section1 {
    padding: 2rem 0;
}

.faq-section1 .row1 {
    margin-bottom: 2rem;
}

.faq-section1 .display-4 {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
}

.faq-section1 .row00 {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.faq-section1 .col01 {
    flex: 1 1 calc(33.333% - 1.5rem);
    display: flex;
    justify-content: center;
}

.faq-section1 .card0 {
    border: 1px solid var(--secondary);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-section1 .card0:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.faq-section1 .card-body {
    padding: 1.5rem;
}

.faq-section1 .card-body .card-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 1rem;
}

.faq-section1 .card-body .card-text {
    font-size: 1rem;
    color: var(--dark);
}

.faq-section1 .card-body .mb-3 i {
    color: var(--primary);
}

@media (max-width: 768px) {
    .faq-section1 .col01 {
        flex: 1 1 calc(50% - 1.5rem);
    }
}

@media (max-width: 576px) {
    .faq-section1 .col01 {
        flex: 1 1 100%;
    }

    .faq-section1 .display-4 {
        font-size: 2rem;
    }

    .faq-section1 .card-body .card-title {
        font-size: 1.25rem;
    }

    .faq-section1 .card-body .card-text {
        font-size: 0.875rem;
    }
}



/* <!-- Additional Frequently Asked Questions Section -->*/
.container .row h2 {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
}

.columnas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 20px;
    margin-bottom: 20px;
}

.col1, .col2 {
    flex: 1 1 calc(50% - 1.5rem);
    padding: 10px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.colfqs {
    flex: 1 1 100%;
}

.carta-header {
    background-color: var(--light);
    border-bottom: 1px solid var(--secondary);
    padding: 10px;
}

.faq-btn {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 0;
}

.faq-btn:hover {
    cursor: pointer;
    border-bottom: 1px solid var(--primary);
    transition: background-color 0.3s ease, color 0.3s ease, border-bottom 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    padding: 5px;
    border-radius: 10px;
}

.faqtitulo {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.3rem;
}

.contenido {
    padding: 15px;
    background-color: var(--light);
}

.lista-ayahuascas {
    padding-left: 20px;
}

.lista00 {
    margin-bottom: 10px;
}

.imgref {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}

@media (max-width: 1200px) {
    .col1, .col2 {
        flex: 1 1 100%;
    }

    .faqtitulo {
        font-size: 1.25rem;
    }

    .contenido {
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .faqtitulo {
        font-size: 1rem;
    }

    .contenido {
        padding: 5px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light);
    padding: 2rem 0;
}

.container-testimonials {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.testimonial {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    margin: 1rem;
    padding: 1rem;
    flex: 1 1 calc(33.333% - 2rem);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 450px;
    width: 360px;
    transition: transform 0.5s ease-in-out;
}

.testimonial:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 0 15px rgba(153, 204, 102, 0.5);
    border: 1px solid rgba(153, 204, 102, 0.5);
}

.testimonial-content {
    padding: 1rem;
}

.testimonial-titulo {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.testimonial-comment {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.testimonial-author h5 {
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary);
    margin: 0;
}

.testimonial-author p {
    font-size: 0.875rem;
    color: var(--dark);
    margin: 0;
}

.testimonial-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.testimonials-section {
    position: relative;
}
/*funcion de los botones del testimonios*/
.carouseltestimonials {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

}

.carouselbtntestimonials {
    color: var(--dark);
    border: 1px solid var(--dark);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 0 1rem;
}

.carouselbtntestimonials:hover {
    background-color: var(--yellow);
    transform: scale(1.1);
}

.carouselbtntestimonials i {
    font-size: 1rem;
}
@media (max-width: 1200px) {
    .testimonial {
        flex: 1 1 100%;
        margin: 0.5rem 0;
    }

    .testimonial-content {
        padding: 0.5rem;
    }

    .testimonial-titulo {
        font-size: 1rem;
    }

    .testimonial-comment {
        font-size: 0.875rem;
    }

    .testimonial-author h5 {
        font-size: 0.875rem;
    }

    .testimonial-author p {
        font-size: 0.75rem;
    }

    .testimonial-icon {
        font-size: 1.5rem;
    }
}

