/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GENERAL */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #cfd8dc 0%, #0fa3a6 100%);
    color: #1a1a1a;
    line-height: 1.6;
}

/* CONTENEDOR GLOBAL */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 80px 0;
}

/* HERO */

.hero-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* TEXTO */
.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.hero-text h1 span {
    color: #0fa3a6;
}

.hero-text p {
    margin: 25px 0;
    font-size: 1.1rem;
    color: #333;
    max-width: 500px;
}

/* BOTÓN WHATSAPP */
.btn-whatsapp {
    display: inline-block;
    padding: 15px 40px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

/* IMAGEN */
.hero-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        margin: 20px auto;
    }
}

.logo {
    width: 220px;
    margin-bottom: 25px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
}

/* BOTÓN */
.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background: white;
    color: #0fa3a6;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #0fa3a6;
    color: white;
}

/* SECCIONES */
section {
    background: white;
}

/* TITULOS */
h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #f7f7f7;
    padding: 30px;
    border-radius: 20px;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* BENEFITS */
.benefits ul {
    list-style: none;
    max-width: 600px;
    margin: auto;
}

.benefits li {
    margin-bottom: 15px;
}

/* TESTIMONIAL */
.testimonial-card {
    max-width: 600px;
    margin: auto;
    background: #f7f7f7;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

/* CTA */
.cta {
    text-align: center;
    background: linear-gradient(135deg, #0fa3a6, #087c7f);
    color: white;
    padding: 80px 20px;
}

.cta h2 {
    margin-bottom: 30px;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 30px;
    background: #111;
    color: white;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .container {
        padding: 50px 0;
    }
}

/* NAVBAR SCROLLED */
.navbar.scrolled {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* FADE ANIMATION */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================= TOP BAR ================= */

.top-bar {
    background: #f5f5f5;
    font-size: 12px;          /* más pequeño */
    padding: 6px 0;           /* más delgado */
    letter-spacing: 0px;      /* más elegante */
}

.top-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;      /* mejor alineación vertical */
    padding: 0 5%;
    color: #777;              /* gris más fino */
    font-weight: 300;         /* más delgado */
}

/* Texto izquierdo (email + teléfono) */
.top-left a {
    font-size: 11px;
    font-weight: 300;
    color: #777;
    text-decoration: none;
    margin-right: 25px;
}

/* Horario (lado derecho) */
.top-right span {
    font-size: 13px;   /* un poco más grande */
    font-weight: 400;  /* ligeramente más visible */
    color: #555;
}

/* ================= NAVBAR ================= */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: hsl(0, 0%, 100%);
    z-index: 999;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1300px;
    margin: auto;
    padding: 28px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO SOLO NAVBAR */
.navbar .logo {
    display: flex;
    align-items: center;   /* 🔥 centrado vertical real */
    margin: 0;             /* 🔥 elimina el empuje */
    width: auto;
}

/* Imagen del logo */
.navbar .logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* MENU */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;

    font-size: 14px;        /* un poco más pequeño */
    font-weight: 300;       /* más delgado */
    letter-spacing: 2px;    /* más elegante */
    text-transform: uppercase;

    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: #0fa3a6;
}

/* BOTON */
.nav-btn {
    padding: 10px 25px;
    background: #04A1B0;
    color: rgb(255, 255, 255);
    text-decoration: none;
    border-radius: 0px;
    font-weight: 300;
    transition: 0.3s;

    font-size: 12px;
    letter-spacing: 2px;

    min-height: 45px;           /* mantiene altura */
    display: inline-flex;       /* centra mejor */
    align-items: center;        /* centra vertical */
    justify-content: center;    /* centra horizontal */
}

.nav-btn:hover {
    background: #041919;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .nav-menu {
        display: none;
    }

    .top-container {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

/* ================= HERO BACKGROUND FULL ================= */

.hero {
    position: relative;
    height: 100vh;
    background: url("images/7546.webp") center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Overlay oscuro elegante */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.75)
    );
}

/* Contenido */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

/* Subtítulo */
.hero-subtitle {
    font-size: 20px;          /* mismo tamaño que description */
    font-weight: 300;
    letter-spacing: 0.3px;    /* 🔥 MISMO tracking */
    text-transform: none;
    opacity: 0.9;             /* mismo look */
    margin-bottom: 0px;      /* mismo espaciado */
}


.hero-description {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.3px;

    margin-top: 10px;
    margin-bottom: 50px;

    opacity: 0.9;
}



/* Título gigante */
.hero h1 {
    font-size: 150px;
    font-weight: 1600;
    letter-spacing: 0px;
    margin-bottom: 15px;
}

.hero h1 span {
    color: #04A1B0;
}

/* Botón premium */
.hero-btn {
    padding: 15px 40px;
    background: #04A1B0;
    color: white;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 2px;
    transition: 0.3s ease;

    margin-top: 50px;   /* 🔥 ESTA ES LA CLAVE */
    display: inline-block;
}


.hero-btn:hover {
    background: #051919;
}

/* Responsive */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 16px;
    }
}

/* ================= FOOTER PREMIUM ================= */

.footer {
    position: relative;
    background-color: #091A1B; /* azul navy */
    color: #ddd;
    padding: 100px 5% 40px;
    overflow: hidden;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

/* Columnas */
.footer-col h2,
.footer-col h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 25px;
    color: #aaa;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
    color: #aaa;
}

/* Botón */
.footer-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #c8a24d;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-btn:hover {
    background: #b8913f;
}

/* Línea inferior */
.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
}

/* Redes sociales */
.social-icons {
    margin-bottom: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: white;
    margin: 0 8px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #c8a24d;
    border-color: #c8a24d;
}

/* Back to top */
.back-top {
    position: absolute;
    right: 20px;
    bottom: 50px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 1000px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* ================= STATS SECTION ================= */

.stats {
    background: linear-gradient(135deg, #c8a24d, #b8913f);
    padding: 70px 5%;
    color: white;
}

.stats-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item {
    padding: 20px;
    position: relative;
}

/* Línea divisora */
.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.4);
}

/* Icono */
.stat-icon {
    font-size: 45px;
    margin-bottom: 15px;
}

/* Número */
.stat-item h2 {
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Texto */
.stat-item p {
    font-size: 18px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .stat-item::after {
        display: none;
    }
}

@media (max-width: 500px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}

.top-left a {
    color: #555;
    text-decoration: none;
    margin-right: 20px;
    font-size: 14px;
}

.top-left a:hover {
    color: #0fa3a6;
}
/* ===== HERO TITLE FONT ===== */

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
}
/* ================= HERO BUTTONS ================= */

.hero-buttons {
    margin-top: 0px;          /* controla distancia desde texto */
    display: flex;
    justify-content: center;
    gap: 70px;                 /* espacio entre botones */
    flex-wrap: wrap;           /* 🔥 importante para móvil */
}

/* Botón base (refinamos el actual sin romperlo) */
.hero-btn {
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 2px;
    transition: 0.3s ease;
    display: inline-block;

    width: 260px;
    text-align: center;
    font-size: 13px;

}

/* Botón principal */
.hero-btn.primary {
    background: #04A1B0;
    color: white;
}

.hero-btn.primary:hover {
    background: #051919;
}

/* Botón outline premium */
.hero-btn.outline {
    background: transparent;
    color: white;
    border: 1px solid #04A1B0;     /* 🔥 borde delgado elegante */
}

.hero-btn.outline:hover {
    background: #04A1B0;
    color: white;
}
/* ================= ABOUT PREMIUM ================= */

.about {
    background: #f8f8f8;
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1300px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    align-items: center;
    gap: 60px;
}

/* TEXTO */

.about-label {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #04A1B0;
    display: block;
    margin-bottom: 15px;
}

.about-text h2 {
    font-size: 60px;
    font-weight: 1300;
    margin-bottom: 25px;
    font-family:'Cormorant Garamond', serif;
    line-height: 1.1;
    text-align: left;
}

.about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 300;
}

/* BOTÓN */

.about-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #04A1B0;
    color: white;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    transition: 0.3s ease;
}

.about-btn:hover {
    background: #051919;
}

/* IMAGEN */

.about-image img {
    width: 100%;
    border-radius: 0;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* STATS */

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-box {
    background: white;
    padding: 25px;
    border-radius: 0px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
}

.stat-box h3 {
    font-size: 32px;
    color: #04A1B0;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 13px;
    color: #777;
    letter-spacing: 1px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .stat-box {
        width: 180px;
    }

    .about-image img {
        max-width: 320px;
    }
}
.team-member {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.team-member img {
    width: 100%;
    display: block;
}

/* OVERLAY */
.member-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 168, 181, 0.85); /* Turquesa */
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transition: all 0.35s ease;
}

/* Hover */
.team-member:hover .member-overlay {
    opacity: 1;
}

/* Texto */
.member-overlay h3 {
    font-family: 'Cormorant', serif;
    color: white;
    font-size: 26px;
    margin: 0;
    letter-spacing: 2px;
}

.member-overlay p {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 14px;
    letter-spacing: 2px;
    margin-top: 8px;
}
.stat-number {
    font-family: 'Cormorant', serif;
    font-size: 68px;
}

.about-bg-text {
    position: absolute;
    top: -50px;
    right: 80px;   /* 👈 MUCHÍSIMO más estable que left */

    font-family: 'Cormorant', serif;
    font-size: 190px;

    font-weight: 700;
    font-style: italic;

    color: rgba(0, 0, 0, 0.03);

    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}
.about-stats .stat-box:nth-child(2) {
    background: #00A8B5;
}

.about-stats .stat-box:nth-child(2) .stat-number,
.about-stats .stat-box:nth-child(2) p {
    color: white;
}
.stat-box {
    position: relative;
    overflow: hidden;
}

/* Número gigante decorativo */
.stat-box::before {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'Cormorant', serif;
    font-size: 130px;
    font-weight: 700;
    font-style: italic;

    color: rgba(0, 0, 0, 0.02);

    z-index: 0;
}

/* Números visibles encima */
.stat-number,
.stat-box p {
    position: relative;
    z-index: 1;
}

.stat-box:nth-child(1)::before { content: "48"; }
.stat-box:nth-child(2)::before { content: "24"; }
.stat-box:nth-child(3)::before { content: "3578"; }

.stat-box h3 {
    font-family: 'Cormorant', serif;
    font-size: 65px;
    font-weight: 800;
    font-style: italic;
    line-height: 1.05;
}
.about-stats:hover .stat-box {
    transform: scale(0.95);
    opacity: 0.6;
}

.about-stats .stat-box:hover {
    transform: scale(1.14) translateY(-8px);
    opacity: 1;
    z-index: 5;
}
.about::before {
    content: "";
    position: absolute;

    width: 320px;
    height: 320px;

    background: url("images/Plants2.png") no-repeat;
    background-size: contain;

    top: -40px;
    left: -40px;

    opacity: 0.18;
    pointer-events: none;
}
.about::after {
    content: "";
    position: absolute;

    width: 380px;
    height: 380px;

    background: url("images/Plants1.png") no-repeat;
    background-size: contain;

    bottom: -60px;
    right: -60px;

    opacity: 0.18;
    pointer-events: none;
}
.services {
    position: relative;
    background: white;
    padding: 140px 5% 100px;
    overflow: hidden;
}
.services {
    background-color: #f5efe8;

    background-image:
        radial-gradient(at 20% 40%, rgba(0,0,0,0.04) 0%, transparent 45%),
        radial-gradient(at 80% 60%, rgba(0,0,0,0.03) 0%, transparent 50%),
        radial-gradient(at 40% 80%, rgba(0,0,0,0.025) 0%, transparent 55%),
        radial-gradient(at 70% 20%, rgba(0,0,0,0.02) 0%, transparent 60%);
}
/* ===== NAVBAR LINKS (referencia visual) ===== */
.nav-menu a {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* ===== TÍTULOS DEL FOOTER ===== */
.footer-col h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    margin-bottom: 22px;
}
.footer-logo {
    width: 220px;     /* ajusta si quieres más grande o pequeño */
    margin-bottom: 20px;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    text-align: left;      /* ← todo a la izquierda */
}

.footer-col {
    text-align: left;
}

.footer-col h3 {
    text-align: left;
}

.footer-col ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-col ul li {
    text-align: left;
}
.footer-container {
    display: grid;
    grid-template-columns: 1.8fr 0.9fr 0.9fr 1fr;
    gap: 30px;
}
.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: #04A1B0;          /* mismo color del botón RESERVAR */
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background: #04A1B0;          /* mismo hover del nav-btn */
    transform: translateY(-2px);
}
.footer-col a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 0.7;
}
html {
    scroll-behavior: smooth;
}
.cta {
    position: relative;
    padding: 140px 20px; /* ← MÁS ANCHA (altura mayor) */
    text-align: center;
    color: white;
    overflow: hidden;

    background-image: url("images/16734.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay MÁS opaco */
.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 168, 181, 0.88); /* ← MÁS OPACO */
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}
.contact-section {
    padding: 100px 20px;
    background: white;
}

.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* Imagen */
.contact-image {
    background-image: url("images/Lorena2.jpeg");
    background-size: cover;
    background-position: center;
    min-height: 520px;
}

/* Formulario */
.contact-form {
    background: #1aa5a9;
    padding: 70px 60px;
    color: white;
    position: relative;
}

/* Textura sutil */
.contact-form::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        radial-gradient(circle at 20% 20%, white 1px, transparent 1px);
    background-size: 40px 40px;
}

.contact-form * {
    position: relative;
    z-index: 2;
}

.contact-label {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.contact-form h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 800;
    margin: 10px 0 15px;
    text-align: left;
}

.contact-form p {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 35px;
}

/* Inputs */
form input,
form select,
form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding: 12px 0;
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    outline: none;
}

form input::placeholder,
form textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

/* Filas */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

form textarea {
    margin-top: 10px;
    resize: none;
    height: 80px;
}

/* Botón */
.contact-form button {
    margin-top: 35px;
    background: #111;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-image {
        min-height: 320px;
    }
}
.contact-form,
.contact-form label,
.contact-form input,
.contact-form select,
.contact-form textarea {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}
.contact-form h2 {
    font-size: 52px;
}

.contact-form label {
    font-size: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    font-size: 16px;
}

form select option {
    color: #111;
    background: #ffffff;
}

/* Hover moderno */
form select option:hover {
    background: #f2f2f2;
}
.contact-form button {
    margin-top: 35px;

    background: #071A1A;      /* ✅ Turquesa suave premium */
    color: white;

    border: none;
    padding: 16px 34px;

    border-radius: 0;         /* Bordes cuadrados */

    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;

    cursor: pointer;
    transition: all 0.35s ease;
}
.contact-form button:hover {
    background: #103332;     /* Turquesa un poco más profundo */
    transform: translateY(-2px);
}
.contact-image {
    overflow: hidden;   /* 🔥 CLAVE para que el zoom no se salga */
}
.contact-image {
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
.contact-image:hover {
    transform: scale(1.05);   /* ✅ Zoom ligero premium */
}
/* ================= WHY CHOOSE US ================= */

.why {
    background: #f8f8f8;
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
}

.why-container {
    max-width: 1300px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    align-items: center;
    gap: 60px;
}

/* TEXTO */

.why-text h2 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 25px;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.1;
    text-align: left;
}

.why-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 300;
}

/* IMAGEN */

.why-image img {
    width: 100%;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* STATS (mismo estilo que about) */

.why-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Responsive */

@media (max-width: 900px) {
    .why-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-text h2 {
        text-align: center;
    }

    .why-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .stat-box {
        width: 180px;
    }
}
.why-container {
    max-width: 1600px;  /* antes 1300px */
    margin: auto;

    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 100px;  /* más aire */
}
/* ================= WHY BACKGROUND TEXT ================= */

.why {
    position: relative;
    overflow: hidden;
}

.why-bg-text {
    position: absolute;
    top: -60px;
    left: 60px;

    font-family: 'Cormorant Garamond', serif;
    font-size: 190px;
    font-weight: 700;
    font-style: italic;

    color: rgba(0, 0, 0, 0.03);

    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

/* Asegura que el contenido esté encima */
.why-container {
    position: relative;
    z-index: 2;
}
/* ================= WHY IMAGE ZOOM ================= */

.why-image {
    overflow: hidden;   /* 🔥 CLAVE para que el zoom no se salga */
}

.why-image img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;  /* animación suave premium */
}

.why-image:hover img {
    transform: scale(1.06);  /* zoom ligero elegante */
}
.why-container {
    max-width: 1600px;
    margin: auto;

    display: grid;
    grid-template-columns: 0.9fr 1.6fr; /* 🔥 35% / 65% */
    align-items: center;
    gap: 80px;
}
/* ================= WHY FEATURES ================= */

.why-features {
    margin-top: 40px;
    display: flex;
    gap: 40px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 260px;
}

.feature-icon {
    width: 55px;
    height: 55px;
    background-color: #04A1B0;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

/* 🔥 Check blanco dentro del círculo */
.feature-icon::after {
    content: "✓";
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #222;
}

.feature-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}
.feature-text h4 {
    font-size: 13px;              /* similar al botón */
    font-weight: 300;             /* mismo peso */
    text-transform: uppercase;    /* 🔥 igual que el botón */
    letter-spacing: 1.5px;        /* mismo espaciado */
    color: #000;                  /* negro */
    margin-bottom: 8px;
}
/* ================= SECTION ================= */

/* ================= TESTIMONIALS ================= */

.testimonials {
    background: #ffffff;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden; /* importante */
}

/* HEADER */

.testimonials-header {
    text-align: center;
    position: relative;
    margin-bottom: 70px;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    color: #1CA7A6;
}

.testimonials-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-top: 10px;
}

/* CONTROLS */

.testimonial-controls {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
}

.testimonial-controls button {
    background: #f3f3f3;
    border: none;
    padding: 12px 18px;
    margin-left: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

.testimonial-controls button:hover {
    background: #1CA7A6;
    color: white;
}

/* SLIDER */

.testimonial-slider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}

/* CARDS */

.testimonial-card {
    flex: 0 0 calc((100% - 60px) / 3);
    background: #F8F8F8;
    border-radius: 30px;
    padding: 110px 40px 40px; /* más espacio arriba */
    text-align: left;
    position: relative;
}

/* Imagen */

.testimonial-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    border: 6px solid #ffffff;
}

/* Nombre */

.testimonial-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    margin-bottom: 5px;
}

/* Subtítulo */

.testimonial-card span {
    color: #777;
    font-size: 14px;
}

/* Texto */

.testimonial-card p {
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Estrellas */

.testimonial-card .stars {
    margin-top: 20px;
    color: #0AA5B2;
    font-size: 20px;
    letter-spacing: 4px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        flex: 0 0 100%;
    }

    .testimonial-controls {
        position: static;
        transform: none;
        margin-bottom: 30px;
        text-align: center;
    }
}
/* FORZAR MISMA ALTURA EN TODAS LAS TESTIMONIAL CARDS */

.testimonial-track {
    align-items: stretch;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
}

.testimonial-card .stars {
    margin-top: auto;
}

.testimonial-card img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    border: 6px solid #ffffff;
}
.testimonial-card {
    flex: 0 0 calc((100% - 60px) / 3);
    background: #F8F8F8;
    border-radius: 30px;
    padding: 110px 40px 40px;
    text-align: left;
    position: relative;
    overflow: visible;
}

.testimonial-card img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    border: 6px solid #ffffff;
}
.testimonial-card {
    position: relative;
    background: #f2f2f2;
    padding: 60px 40px 40px 40px; /* espacio arriba */
    border-radius: 30px;
}

/* FOTO */
.testimonial-card img {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}
/* ===== TESTIMONIAL CARD FINAL CLEAN ===== */

.testimonial-card {
    flex: 0 0 calc((100% - 60px) / 3);
    background: #F8F8F8;
    border-radius: 30px;
    padding: 80px 40px 40px 40px; /* espacio superior equilibrado */
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* FOTO ESQUINA SUPERIOR DERECHA */
.testimonial-card img {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

/* Estrellas siempre abajo */
.testimonial-card .stars {
    margin-top: auto;
}
.testimonial-card p {
    font-weight: 300;   /* más delgado */
    line-height: 1.6;   /* más elegante */
    font-size: 15px;    /* opcional: un poco más fino visualmente */
}
.testimonial-card span {
    display: inline-block;
    margin-bottom: 15px;

    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;

    color: #000; /* o el color que usa tu botón */
}
.testimonial-card {
    padding: 110px 40px 40px 40px; /* antes 80px */
}
.testimonial-card img {
    position: absolute;
    top: 30px;
    right: 30px;

    width: 95px;   /* antes 70px */
    height: 95px;  /* antes 70px */

    border-radius: 50%;
    object-fit: cover;
}
.testimonial-slider {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}
.testimonials::before {
    content: "";
    position: absolute;

    left: -100px;   /* la empujamos un poco hacia afuera */
    top: 50%;
    transform: translateY(-50%);

    width: 500px;   /* ajusta tamaño */
    height: 500px;

    background-image: url("images/Spa.png");
    background-repeat: no-repeat;
    background-size: contain;

    opacity: 0.08;  /* muy sutil (clave para look premium) */
    z-index: 0;
}
.testimonials > * {
    position: relative;
    z-index: 2;
}

.location-section {
  font-family: 'Poppins', sans-serif;
}

.schedule-bar {
  background: linear-gradient(90deg, #00b3b3, #009999);
  color: white;
  padding: 40px 20px;
}

.schedule-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.schedule-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.schedule-title h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: 2px;
}

.icon {
  font-size: 32px;
}

.schedule-hours {
  margin-right: 150px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.hours-block .day {
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 5px;
}

.hours-block .time {
  font-size: 20px;
  font-weight: 600;
}

.divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.4);
}

.map-container iframe {
  display: block;
}
.schedule-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;       /* ajusta tamaño si quieres */
  font-weight: 600;      /* 500 o 600 queda elegante */
  letter-spacing: 0px;   /* menos espaciado que antes */
  text-transform: none;  /* importante si estaba en uppercase forzado */
}
.btn-primary {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.day {
  font-family: 'Poppins', sans-serif;   /* misma fuente */
  font-weight: 300;                     /* mismo grosor */
  letter-spacing: 2px;                  /* mismo espacio entre letras */
  text-transform: uppercase;            /* mayúsculas */
}
/* ===== SECCIÓN GENERAL ===== */

.pricing-section {
  background: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.pricing-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 60px;
  color: #2d2d2d;
}

/* ===== CATEGORÍAS (ÍCONOS ARRIBA) ===== */

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.tab {
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #e9e2de;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: auto;
  transition: 0.3s ease;
}

.icon-circle.active {
  background: #d79a85;
  color: #fff;
}

.tab span {
  display: block;
  margin-top: 15px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #333;
}

/* ===== CONTENEDOR DE SERVICIOS ===== */

.pricing-content {
  width: 80%;
  margin: auto;
}

/* Ocultar listas */
.pricing-list {
  display: none;
}

/* Mostrar activa */
.pricing-list.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}

/* ===== ITEM INDIVIDUAL ===== */

.pricing-item {
  display: flex;
  align-items: center;
}

.pricing-item img {
  width: 65px;
  height: 65px;
  border-radius: 12px;
  margin-right: 20px;
  object-fit: cover;
}

.service-info {
  text-align: left;
}

.service-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin: 0;
  font-weight: 500;
  color: #2d2d2d;
}

/* Línea automática hacia el precio */
.line {
  flex: 1;
  height: 1px;
  background: #ddd;
  margin: 0 20px;
}

.price {
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  text-align: right;
}

.price span {
  font-size: 13px;
  color: #888;
  margin-right: 5px;
}

.price strong {
  font-size: 20px;
  color: #2d2d2d;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {

  .pricing-list.active {
    grid-template-columns: 1fr;
  }

  .pricing-content {
    width: 90%;
  }

  .pricing-title {
    font-size: 36px;
  }

}
/* ===== HEADER ESTILO SPA ===== */

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-subtitle {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: #2aa6a6; /* puedes cambiar este color */
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.1;
  color: #1f1f1f;
  margin-bottom: 30px;
}

.section-description {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;   /* ← más delgada */
  color: #555;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}
.tab span {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;        /* mismo peso que botón */
  letter-spacing: 2px;     /* espacio elegante entre letras */
  text-transform: uppercase;
  color: #222;
  margin-top: 12px;
  display: block;
}
.price {
  display: none;
}
.service-info h4 {
  font-family: 'Poppins', sans-serif; /* igual que descripción */
  font-size: 18px;     /* un poco más grande que 16px */
  font-weight: 300;    /* misma delgadez elegante */
  color: #222;
  margin: 0;
}
.tab-icon {
  width: 90px;          /* tamaño original del círculo */
  height: 90px;
  border-radius: 50%;
  background: #f3f1ee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: 0.3s ease;
}

.tab-icon img {
  width: 38px;          /* tamaño interno similar al emoji */
  height: 38px;
  object-fit: contain;
}

.pricing-tab.active .tab-icon {
  background: #d39a82;  /* tu color durazno */
}
.tab-img {
  width: 125px;      /* ajusta el tamaño aquí */
  height: auto;     /* mantiene proporción */
  display: block;
  margin: 0 auto 15px;
  transition: 0.3s ease;
}
.pricing-tab h4 {
  font-size: 13px;          /* tamaño similar al botón */
  font-weight: 400;         /* más delgado */
  letter-spacing: 2px;      /* espacio entre letras elegante */
  text-transform: uppercase;
  margin-top: 10px;
  color: #1a1a1a;           /* mismo tono oscuro elegante */
}
.tab-img {
  width: 125px;          /* tu tamaño actual */
  height: auto;
  display: block;
  margin: 0 auto 15px;
  transition: transform 0.3s ease;  /* animación suave */
}

/* Efecto al pasar el mouse */
.pricing-tab:hover .tab-img {
  transform: scale(1.15);
}
.pricing-tab {
  transition: transform 0.3s ease;
}

.pricing-tab:hover {
  transform: translateY(-5px);
}
.pricing-section {
  position: relative;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;   /* tamaño imagen */
  height: 300px;
  background: url("images/Plants2.png") no-repeat;
  background-size: contain;
  opacity: 0.15;  /* controla qué tan suave se ve */
  pointer-events: none;
}
/* ===================================================== */
/* AG SERENITY - RESPONSIVE CLEAN VERSION (FINAL FIX)   */
/* ===================================================== */

/* Evita scroll horizontal */
body {
  overflow-x: hidden;
}

/* ============================= */
/* HERO */
/* ============================= */

.hero {
  min-height: 100vh; /* reemplaza height:100vh si lo tienes */
}

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 70px;
  }
}

@media (max-width: 992px) {
  .hero {
    height: auto;
    padding: 120px 20px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================= */
/* ABOUT + WHY */
/* ============================= */

@media (max-width: 992px) {

  .about-container,
  .why-container {
    grid-template-columns: 1fr !important;
    gap: 40px;
    text-align: center;
  }

  .about-text h2,
  .why-text h2 {
    font-size: 42px;
  }

  .about-stats,
  .why-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-box {
    width: 160px;
  }
}

/* ============================= */
/* SERVICES */
/* ============================= */

@media (max-width: 992px) {

  .pricing-content {
    width: 100% !important;
  }

  .pricing-tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .pricing-list.active {
    grid-template-columns: 1fr !important;
  }

  .tab-img {
    width: 95px;
  }
}

@media (max-width: 600px) {
  .pricing-tab {
    width: 100%;
  }
}

/* ============================= */
/* TESTIMONIALS */
/* ============================= */

@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 30px) / 2) !important;
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 100% !important;
  }
}

/* ============================= */
/* CONTACT SECTION (CORREGIDO) */
/* ============================= */

/* Full width en desktop */
.contact-section {
  width: 100%;
  margin: 0;
  border-radius: 0;
}

/* Mantiene grid normal en PC */
.contact-wrapper {
  width: 100%;
}

/* Tablet */
@media (max-width: 992px) {

  .contact-wrapper {
    grid-template-columns: 1fr !important;
  }

  .contact-image {
    height: 350px;
  }

  .contact-form {
    padding: 60px 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Mobile */
@media (max-width: 600px) {

  .contact-form {
    padding: 40px 25px;
  }
}

/* ============================= */
/* SCHEDULE */
/* ============================= */

@media (max-width: 900px) {

  .schedule-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .schedule-hours {
    margin-right: 0;
    flex-direction: column;
    gap: 20px;
  }

  .divider {
    display: none;
  }
}

/* ============================= */
/* FOOTER */
/* ============================= */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr !important;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
}
/* ============================= */
/* MOBILE NAVBAR */
/* ============================= */

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #222;
    border-radius: 3px;
    transition: 0.3s;
}

/* MODO MOBILE */
@media (max-width: 768px) {

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 20px;
        display: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-btn {
        display: none; /* Oculta RESERVAR */
    }

    .menu-toggle {
        display: flex; /* Muestra hamburguesa */
    }

    .nav-container {
        position: relative;
    }
}
/* ================================= */
/* HERO MOBILE SPACING OPTIMIZATION */
/* ================================= */

@media (max-width: 768px) {

  /* Reduce espacio entre texto y botones */
  .hero-description {
    margin-bottom: 15px;
  }

  .hero-buttons {
    margin-top: 10px;   /* antes probablemente 30-40px */
    gap: 0px;          /* espacio entre botones */
  }

  .hero-btn {
    padding: 14px 20px;
  }

}
/* ============================= */
/* ABOUT MOBILE FIX (iPhone SE) */
/* ============================= */

@media (max-width: 600px) {

  .about {
    padding: 80px 25px;   /* más margen lateral */
  }

  .about-container {
    text-align: left;     /* quitamos centrado */
  }

  .about-text h2 {
    font-size: 38px;      /* mejor proporción en móvil */
    text-align: left;     /* título alineado izquierda */
  }

  .about-text p {
    font-size: 15px;
    line-height: 1.7;
    text-align: left;     /* texto alineado izquierda */
  }

}
/* ============================= */
/* STATS MOBILE WIDTH FIX */
/* ============================= */

@media (max-width: 600px) {

  .about-stats {
    flex-direction: column;   /* uno debajo del otro */
    align-items: center;
  }

  .stat-box {
    width: 90%;              /* 🔥 ocupa casi todo el ancho */
    max-width: 340px;        /* evita que sea exagerado */
  }

}
/* ================================= */
/* SERVICES MOBILE FIX (REAL ONE)    */
/* ================================= */

@media (max-width: 600px) {

  .pricing-section {
    padding: 80px 25px;   /* más margen lateral */
  }

  .section-header {
    text-align: left;     /* quitamos centrado */
  }

  .section-subtitle {
    text-align: left;
    display: block;
  }

  .section-title {
    font-size: 38px;
    line-height: 1.2;
    text-align: left;
  }

  .section-description {
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
  }

}
@media (max-width: 600px) {

  .pricing-tab img {
    width: 100px !important;
    max-width: none !important;
  }

}
/* ================================= */
/* FIX DEFINITIVO IMÁGENES SERVICIOS */
/* ================================= */

.pricing-item {
  display: flex;
  align-items: center;   /* 🔥 centra verticalmente */
  gap: 15px;
}

.pricing-item img {
  width: 85px !important;
  height: 85px !important;
  min-width: 85px;       /* 🔥 evita que se deformen */
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
/* ================================= */
/* WHY SECTION - MOBILE LEFT STYLE  */
/* ================================= */

@media (max-width: 768px) {

  .why-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .why-text {
    text-align: left;
    padding: 0 24px;
  }

  .about-label {
    font-size: 13px;
    letter-spacing: 3px;
  }

  .why-text h2 {
    font-size: 30px;
    line-height: 1.2;
    margin: 10px 0 20px;
  }

  .why-text p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
  }

  .about-btn {
    display: inline-block;
    padding: 14px 28px;
    margin-top: 10px;
  }

  .why-features {
    margin-top: 30px;
  }

  .why-feature {
    justify-content: flex-start;
    text-align: left;
  }

  .why-image img {
    width: 100%;
    border-radius: 18px;
  }

  /* Fondo decorativo más sutil */
  .why-bg-text {
    font-size: 80px;
    opacity: 0.03;
    left: 10px;
  }

}
/* ================================= */
/* WHY SECTION - MOBILE FIX REAL    */
/* ================================= */

@media (max-width: 768px) {

  .why {
    padding: 60px 20px;
  }

  .why-container {
    display: block !important;   /* 🔥 rompe grid o flex previo */
    width: 100%;
  }

  .why-text {
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: left;
  }

  .why-image {
    width: 100%;
    margin-top: 40px;
  }

  .why-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
  }

  /* Features en columna, no en dos */
  .why-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .why-feature {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .feature-text h4 {
    font-size: 14px;
    line-height: 1.4;
  }

  /* Fondo decorativo */
  .why-bg-text {
    left: 0;
    font-size: 70px;
    opacity: 0.03;
  }

}
@media (max-width: 768px) {

  .why-text h2 {
    font-size: 36px;     /* 🔥 más grande */
    line-height: 1.15;   /* más compacto y elegante */
    text-align: left;    /* alineado a la izquierda */
    margin: 10px 0 24px;
    letter-spacing: -0.5px; /* más premium */
  }

}
@media (max-width: 768px) {

  .testimonials h2 {
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 30px;
  }

}
@media (max-width: 768px) {

  .testimonials-slider {
    padding: 0 20px;   /* 🔥 crea espacio visual */
  }

}
@media (max-width: 768px) {

  .testimonial-card {
    padding: 30px 22px;
  }

}
@media (max-width: 768px) {

  /* Espacio lateral del carrusel */
  .testimonials .swiper {
    padding: 0 20px;
  }

  /* Que el slide no ocupe todo el ancho exacto */
  .testimonials .swiper-slide {
    width: 85% !important;
  }

}
@media (max-width: 768px) {

  .why {
    padding-left: 28px;
    padding-right: 28px;
  }

}
@media (max-width: 768px) {

  .testimonial-slider {
    padding: 0 24px;   /* 🔥 ESTE es el margen real */
  }

}
@media (max-width: 768px) {

  .schedule-bar {
    margin: 0 20px;          /* 🔥 crea margen lateral real */
    border-radius: 24px;     /* look más premium */
  }

  .schedule-container {
    padding: 50px 25px;      /* menos pesado verticalmente */
    text-align: left;
  }

  .schedule-title h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .day {
    font-size: 13px;
    letter-spacing: 3px;
  }

  .time {
    font-size: 22px;
    font-weight: 600;
    margin-top: 6px;
  }

}
@media (max-width: 768px) {

  .schedule-bar {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }

}
@media (max-width: 768px) {

  /* Convertimos a una sola columna */
  .contact-wrapper {
    display: flex;
    flex-direction: column;
  }

  /* Imagen arriba */
  .contact-image {
    height: 220px;      /* más compacto */
  }

  /* Formulario */
  .contact-form {
    padding: 60px 24px;
  }

  .contact-form h2 {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 18px;
  }

  .contact-form p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  /* Filas pasan a columna */
  .form-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Inputs */
  input,
  select,
  textarea {
    width: 100%;
  }

  textarea {
    min-height: 110px;
  }

  /* Botón */
  .contact-form .nav-btn {
    width: 100%;
    margin-top: 15px;
  }

}
.contact-btn {
  width: 100%;
  padding: 16px;
  background-color: #0f9c9c; /* tu turquesa */
  color: white;
  border: none;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-btn:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {

  footer {
    padding-left: 32px;
    padding-right: 32px;
  }

}
@media (max-width: 768px) {

  .footer {
    padding: 80px 28px 50px;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .footer-col {
    margin-bottom: 10px;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-col p {
    margin-bottom: 25px;
    line-height: 1.7;
  }

  .footer-btn {
    display: inline-block;
    margin-top: 10px;
  }

  .footer-col h3 {
    margin-bottom: 20px;
  }

  .footer-col ul li {
    margin-bottom: 14px;
  }

  .footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
  }

  .back-top {
    margin-top: 25px;
    display: inline-block;
  }

}
.hero {
  min-height: 100vh;      /* fallback viejo */
  min-height: 100svh;     /* viewport real moderno */
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {

  .hero {
    min-height: 92svh;
    padding: 100px 25px 70px;
  }

}
@media (max-width: 768px) {

  .hero {
    align-items: flex-start;
    padding-top: 130px;
  }

}
@media (max-width: 768px) {

  .hero {
    min-height: auto;
    height: auto;
    align-items: flex-start;   /* 🔥 clave */
    padding: 120px 25px 100px;  /* menos espacio abajo */
  }

}
@media (max-width: 768px) {

  .footer-bottom p {
    font-size: 12px;
    opacity: 0.5;
    letter-spacing: 0.5px;
  }

}
/* Base (mobile primero) */
.hero h1 {
  font-size: 38px;
}

.hero-top,
.hero-subtitle {
  font-size: 16px;
}
/* Tablets únicamente */
@media (min-width: 768px) and (max-width: 1024px) {

  .hero h1 {
    font-size: 64px;
    line-height: 1.1;
  }

}
/* Centrar Beauty • Wellness • Serenity SOLO en tablets */
@media (min-width: 768px) and (max-width: 1024px) {

  .about h2 {
    text-align: center;
    width: 100%;
  }

}
/* ===============================
   STATS MÁS ANCHOS EN TABLETS
================================ */
@media (min-width: 768px) and (max-width: 1024px) {

  .stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  .stat-box {
    flex: 1;
    max-width: none;
  }

}
@media (min-width: 768px) and (max-width: 1024px) {

  .pricing-section {
    padding: 110px 80px;
  }

  .section-description {
    max-width: 650px;
    margin: 0 auto 50px auto;
  }

}
/* =====================================
   PRICING TABS - TABLET ALIGNMENT FIX
====================================== */
@media (min-width: 768px) and (max-width: 1024px) {

  .pricing-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    justify-items: center;
  }

}
/* =====================================
   WHY SECTION - TABLET SPACING FIX
====================================== */
@media (min-width: 768px) and (max-width: 1024px) {

  .why {
    padding: 120px 80px;
  }

}
/* =====================================
   TESTIMONIOS - TABLET HEADER FIX
====================================== */
@media (min-width: 768px) and (max-width: 1024px) {

  .testimonials-header {
    position: relative;
    padding-bottom: 30px;
  }

  .testimonial-controls {
    margin-top: 20px;
  }

}
/* =====================================
   TESTIMONIOS - TABLET FIX DEFINITIVO
====================================== */
@media (min-width: 768px) and (max-width: 1024px) {

  .testimonials-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .testimonial-controls {
    position: static !important;   /* 🔥 rompe el absolute */
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
  }

}
/* =====================================
   CONTACT SECTION - TABLET IMAGE FIX
====================================== */
@media (min-width: 768px) and (max-width: 1024px) {

  .contact-wrapper {
    flex-direction: column;
  }

  .contact-image {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center top;
    border-radius: 20px 20px 0 0;
  }

  .contact-form {
    width: 100%;
    border-radius: 0 0 20px 20px;
  }

}
/* =====================================
   CONTACT SECTION - TABLET FIX REAL
====================================== */
@media (min-width: 768px) and (max-width: 1024px) {

  .contact-wrapper {
    display: flex;
    flex-direction: column;
  }

  .contact-image {
    width: 100%;
    height: auto !important;   /* 🔥 elimina altura fija */
    min-height: unset !important;
    background-size: contain !important;
    background-position: center top;
    background-repeat: no-repeat;
  }

}
/* =====================================
   CONTACT SECTION - TABLET SPACING
====================================== */
@media (min-width: 768px) and (max-width: 1024px) {

  .contact-section {
    padding: 120px 90px;
  }

}
/* =====================================
   FOOTER - 2 COLUMNAS EN TABLET
====================================== */
@media (min-width: 768px) and (max-width: 1024px) {

  .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

}
/* =====================================
   HERO TITLE - DESKTOP SIZE FIX
====================================== */
@media (min-width: 1025px) {

  .hero h1 {
    font-size: 124px;
    line-height: 1.1;
  }

}
/* =====================================
   HERO TEXT - SOLO ESCRITORIO
====================================== */
@media (min-width: 1025px) {

    .hero-subtitle,
    .hero-description {
        font-size: 18px;
        line-height: 1.6;
    }

    .hero-subtitle {
        margin-bottom: 15px;
    }

    .hero-description {
        margin-top: 20px;
    }

}
/* =====================================
   HERO TITLE - SOLO CELULARES
====================================== */
@media (max-width: 767px) {

    .hero h1 {
        font-size: 48px;
        line-height: 1.2;
    }

}
/* =====================================
   HERO TITLE SPACING
====================================== */

.hero h1 {
    margin: 40px 0; /* espacio arriba y abajo */
}
.hero h1 {
    margin-top: 35px;
    margin-bottom: 55px;
}