/* Sección Bienvenida */
.welcome-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #ffffff;
}

.welcome-container {
    max-width: 900px;
    margin: 0 auto;
}

.welcome-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #2a5e48; /* Verde similar al de la imagen */
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.welcome-line {
    width: 120px;
    height: 3px;
    background-color: #e97b73; /* El color coral/rosado de la imagen */
    margin: 0 auto 30px auto;
    border-radius: 2px;
}

.welcome-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* ================================
   MINDO ECUADOR SECTION
================================ */
.mindo-section {
    background: #2e7d62; /* verde similar al de tu imagen */
    padding: 60px 20px;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.mindo-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}

.mindo-text {
    flex: 1;
}

.mindo-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 600;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: #e57373; /* línea roja suave como la imagen */
    margin: 0 auto 25px auto;
    border-radius: 2px;
}

.mindo-description {
    text-align: justify;
    font-size: 17px;
    line-height: 1.7;
    color: #f1f1f1;
}

.mindo-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mindo-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.mindo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Mindo Section */
@media (max-width: 768px) {
    .mindo-container {
        flex-direction: column;
        gap: 30px;
    }

    .mindo-text {
        width: 100%;
    }

    .mindo-title {
        font-size: 24px;
    }

    .mindo-description {
        font-size: 16px;
        text-align: left;
    }

    .mindo-gallery {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .mindo-img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .mindo-section {
        padding: 40px 15px;
    }

    .mindo-container {
        gap: 25px;
    }

    .mindo-title {
        font-size: 20px;
    }

    .mindo-description {
        font-size: 15px;
    }

    .mindo-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .mindo-img {
        height: 200px;
    }
}

/* Botón amarillo */
.mindo-button-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-yellow {
    background: #FFD500;
    color: #000;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.btn-yellow:hover {
    background: #e6c200;
}

/* Why Choose Us Section */
.why-section {
    padding: 80px 20px;
    background-color: #f9fafb;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.why-title {
    font-size: 28px;
    font-weight: 700;
    color: #245f46;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.why-underline {
    width: 60px;
    height: 3px;
    background-color: #d94c4c;
    margin: 0 auto 40px auto;
    border-radius: 5px;
}

.why-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.why-card {
    background: #ffffff;
    width: 300px;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.why-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1f3b2d;
}

.why-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

/* ================================
   SECCIÓN: NUESTROS SERVICIOS
   ================================ */
.services-section {
    background: linear-gradient(135deg, #2f6f63, #396f59);
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.services-underline {
    width: 50px;
    height: 4px;
    background-color: #d97163;
    border-radius: 2px;
    margin: 0 auto 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 14px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, background 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* ================================
   Un lugar donde te recibimos como en casa 
   ================================ */

.magic-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.magic-container {
    max-width: 900px;
    margin: 0 auto;
}

.magic-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #2e6d53;
}

.magic-underline {
    width: 60px;
    height: 4px;
    background-color: #d97163;
    border-radius: 2px;
    margin: 10px auto 30px;
}

.magic-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.magic-btn-wrapper {
    text-align: center;
}

.btn-yellow {
    background-color: #f7c600;
    padding: 14px 32px;
    border-radius: 12px;
    display: inline-block;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.btn-yellow:hover {
    background-color: #eab700;
}


/* ================================
   EXPLORA NUESTRAS INSTALACIONES
   ================================ */

.install-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
    
}

.install-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: #2e6d53;
}

.install-underline {
    width: 50px;
    height: 4px;
    background-color: #d97163;
    border-radius: 2px;
    margin: 10px auto 40px;
}

.install-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.install-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.install-img:hover {
    transform: scale(1.03);
}

/* ============================
   ENCUÉNTRANOS
   ============================ */
.find-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.find-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #2e6d53;
}

.find-underline {
    width: 60px;
    height: 4px;
    background: #d97163;
    margin: 10px auto 40px;
    border-radius: 3px;
}

.find-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.find-text {
    text-align: left;
}

.find-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.find-description,
.find-address {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    margin-top: 10px;
    line-height: 1.6;
}

.btn-location {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 26px;
    background: #ff6e6e;
    color: white;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
}

.find-map {
    width: 100%;
    height: 260px;
    border-radius: 14px;
    overflow: hidden;
}

/* Responsive Encuéntranos Section */
@media (max-width: 768px) {
    .find-section {
        padding: 60px 15px;
    }

    .find-title {
        font-size: 28px;
    }

    .find-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .find-text {
        text-align: center;
    }

    .find-subtitle {
        font-size: 20px;
    }

    .find-description,
    .find-address {
        font-size: 14px;
    }

    .find-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .find-section {
        padding: 40px 15px;
    }

    .find-title {
        font-size: 24px;
    }

    .find-container {
        gap: 25px;
    }

    .find-subtitle {
        font-size: 18px;
    }

    .find-description,
    .find-address {
        font-size: 13px;
    }

    .find-map {
        height: 250px;
    }

    .btn-location {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ============================
   TESTIMONIOS
   ============================ */
.reviews-section {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
    overflow: visible;
}

.reviews-section h3 {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-slider-container {
    width: 100%;
    overflow: visible;
    position: relative;
    padding: 20px 0;
}

.reviews-slider-track {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reviews-row {
    display: flex;
    gap: 25px;
    width: fit-content;
    animation: slideLeft 60s linear infinite;
}

.reviews-row-1 {
    animation: slideLeft 60s linear infinite;
}

.reviews-row-2 {
    animation: slideLeft 70s linear infinite;
    animation-direction: reverse;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.07);
    min-width: 500px;
    max-width: 500px;
    min-height: 240px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    color: #444;
}

.review-author {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #2e6d53;
}

/* Responsive Testimonios */
@media (max-width: 768px) {
    .review-card {
        min-width: 350px;
        max-width: 350px;
        min-height: 200px;
    }
    
    .reviews-row {
        gap: 20px;
    }
    
    .reviews-slider-container {
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .review-card {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
        min-height: 180px;
    }
    
    .reviews-section {
        padding: 50px 15px;
    }
    
    .reviews-slider-container {
        padding: 10px 0;
    }
}

/* ============================
   MISIÓN Y VISIÓN
   ============================ */
.mision-vision-section {
    background: linear-gradient(135deg, #2f6f63, #396f59);
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.mision-vision-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mision-vision-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.mision-vision-underline {
    width: 50px;
    height: 4px;
    background-color: #d97163;
    border-radius: 2px;
    margin: 0 auto 40px;
}

.mision-vision-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.vision-card,
.mision-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 14px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, background 0.3s ease;
}

.vision-card:hover,
.mision-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.vision-title,
.mision-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.vision-text,
.mision-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
    text-align: left;
}

/* Responsive Misión y Visión Section */
@media (max-width: 768px) {
    .mision-vision-section {
        padding: 60px 15px;
    }

    .mision-vision-title {
        font-size: 28px;
    }

    .mision-vision-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .vision-card,
    .mision-card {
        padding: 25px;
    }

    .vision-title,
    .mision-title {
        font-size: 24px;
    }

    .vision-text,
    .mision-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .mision-vision-section {
        padding: 40px 15px;
    }

    .mision-vision-title {
        font-size: 24px;
    }

    .mision-vision-underline {
        width: 40px;
        margin: 10px auto 30px;
    }

    .mision-vision-content {
        gap: 20px;
    }

    .vision-card,
    .mision-card {
        padding: 20px;
    }

    .vision-title,
    .mision-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .vision-text,
    .mision-text {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* ============================
   VALORES
   ============================ */
.valores-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.valores-container {
    max-width: 1200px;
    margin: 0 auto;
}

.valores-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #2e6d53;
    margin-bottom: 10px;
}

.valores-underline {
    width: 50px;
    height: 4px;
    background-color: #d97163;
    border-radius: 2px;
    margin: 0 auto 50px;
}

.valores-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: left;
}

@media (max-width: 768px) {
    .valores-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.valores-item {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valores-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.valores-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #2e6d53;
    margin-bottom: 25px;
    text-align: center;
}

.valores-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.valor-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.valor-number {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #d97163;
    min-width: 25px;
}

.valor-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    flex: 1;
}

.valor-text strong {
    color: #2e6d53;
    font-weight: 600;
}

/* ============================
   NUESTRA CONVICCION
   ============================ */
.credo-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2f6f63, #396f59);
    color: #fff;
    text-align: center;
}

.credo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.credo-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.credo-underline {
    width: 50px;
    height: 4px;
    background-color: #d97163;
    border-radius: 2px;
    margin: 0 auto 50px;
}

.credo-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.credo-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: 14px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, background 0.3s ease;
}

.credo-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.credo-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.credo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    line-height: 1.9;
    opacity: 0.95;
    font-style: italic;
    text-align: center;
}

.compromisos-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: 14px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, background 0.3s ease;
}

.compromisos-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.compromisos-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.compromiso-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.compromiso-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.compromiso-number {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #d97163;
    min-width: 30px;
    line-height: 1.2;
}

.compromiso-content {
    flex: 1;
}

.compromiso-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.compromiso-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .credo-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ============================
   HISTORIA
   ============================ */
.historia-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.historia-container {
    max-width: 900px;
    margin: 0 auto;
}

.historia-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #2e6d53;
    margin-bottom: 10px;
}

.historia-underline {
    width: 50px;
    height: 4px;
    background-color: #d97163;
    border-radius: 2px;
    margin: 0 auto 40px;
}

.historia-content {
    text-align: left;
}

.historia-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    line-height: 1.9;
    color: #444;
}

.historia-text p {
    margin-bottom: 25px;
}

.historia-text p:last-child {
    margin-bottom: 0;
}

.historia-text strong {
    color: #2e6d53;
    font-weight: 600;
}

/* ============================
   CONTÁCTANOS
   ============================ */
.contact-section {
    padding: 80px 20px;
    text-align: center;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #2e6d53;
}

.contact-underline {
    width: 60px;
    height: 4px;
    background: #d97163;
    margin: 10px auto 30px;
    border-radius: 3px;
}

.contact-text {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
}

.contact-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

.btn-reserva {
    background: #ff6e6e;
    padding: 14px 32px;
    border-radius: 14px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

/* ============================
   LANGUAGE SWITCH
   ============================ */
.language-switch-container {
    display: flex;
    align-items: center;
    margin-left: 10px;
    padding: 5px 0;
    position: relative;
    z-index: 1001;
}

.language-switch {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    overflow: visible;
}

.language-switch::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}

.language-switch[data-lang="es"]::before {
    left: 4px;
}

.language-switch[data-lang="en"]::before {
    left: 42px;
}

.language-switch:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.language-switch:active {
    transform: translateY(0);
}

.lang-flag {
    font-size: 16px;
    line-height: 1;
    position: relative;
    z-index: 3;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
}

.language-switch[data-lang="es"] .lang-flag:first-child {
    opacity: 1;
}

.language-switch[data-lang="es"] .lang-flag:last-child {
    opacity: 0.3;
}

.language-switch[data-lang="en"] .lang-flag:first-child {
    opacity: 0.3;
}

.language-switch[data-lang="en"] .lang-flag:last-child {
    opacity: 1;
}

.lang-text {
    display: none;
}

/* Responsive Language Switch */
@media (max-width: 768px) {
    .language-switch {
        width: 60px;
        height: 28px;
    }
    
    .language-switch[data-lang="es"]::before {
        left: 3px;
    }
    
    .language-switch[data-lang="en"]::before {
        left: 35px;
    }
    
    .lang-flag {
        font-size: 14px;
        width: 22px;
        height: 22px;
    }
    
    .language-switch::before {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .language-switch-container {
        margin-left: 5px;
    }
    
    .language-switch {
        width: 55px;
        height: 26px;
    }
    
    .language-switch[data-lang="es"]::before {
        left: 3px;
    }
    
    .language-switch[data-lang="en"]::before {
        left: 32px;
    }
    
    .lang-flag {
        font-size: 12px;
        width: 20px;
        height: 20px;
    }
    
    .language-switch::before {
        width: 18px;
        height: 18px;
    }
}

/* ============================
   PRUEBA SOCIAL
   ============================ */
.social-proof {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(46, 125, 98, 0.1), rgba(233, 123, 115, 0.1));
    border-radius: 16px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.proof-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #2e7d62;
    line-height: 1;
}

.proof-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .social-proof {
        gap: 30px;
        padding: 25px 15px;
    }
    
    .proof-number {
        font-size: 36px;
    }
    
    .proof-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .social-proof {
        gap: 20px;
        padding: 20px 10px;
    }
    
    .proof-number {
        font-size: 32px;
    }
    
    .proof-label {
        font-size: 11px;
    }
}

/* ============================
   BOTÓN VOLVER ARRIBA
   ============================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2e7d62, #2a5e48);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(46, 125, 98, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 998;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #2a5e48, #1f4a3a);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(46, 125, 98, 0.6);
}

.back-to-top:active {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 90px;
        right: 20px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 85px;
        right: 15px;
        font-size: 16px;
    }
}
