/* ============================================
   NEXA FISIOTERAPIA Y SALUD
   Estilos principales
   ============================================ */

/* ---- Variables / Colores ---- */
:root {
    --navy: #0A2E5C;
    --navy-light: #123d78;
    --gold: #D4AF37;
    --gold-dark: #B8960C;
    --gold-light: #F5EDDA;
    --gold-light-70: rgba(245, 237, 218, 0.7);
    --teal: #4CA6A8;
    --teal-light: #E0F0F0;
    --white: #ffffff;
    --gray-50: #F9FAFB;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --text: #333333;
    --text-light: #6B7280;
    --text-dark: #1a1a1a;
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
    --radius: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;
    --transition: all 0.3s ease;
}


/* ---- Reset y base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}


/* ---- Utilidades ---- */
.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}


/* ---- Tipografía sección ---- */
.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-tag--gold { color: var(--gold); }
.section-tag--teal { color: var(--teal); }

.section-title {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
}

@media (min-width: 640px) {
    .section-title { font-size: 2.25rem; }
}

.section-title--light {
    color: var(--white);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 42rem;
    margin: 1rem auto 0;
}

@media (min-width: 640px) {
    .section-subtitle { font-size: 1.125rem; }
}

.section-subtitle--light {
    color: rgba(191, 219, 254, 0.8);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
    .section-header { margin-bottom: 4rem; }
}

.section-header--light {
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-header--light { margin-bottom: 3rem; }
}


/* ---- Botones ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn--primary {
    background: var(--gold);
    color: var(--white);
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    background: var(--gold-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--navy);
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    border: 2px solid var(--navy);
}

.btn--outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
    padding: 0.875rem;
}


/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
}

.header--scrolled {
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

@media (min-width: 768px) {
    .nav { height: 5rem; }
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav__logo-img {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 0.75rem;
    overflow: hidden;
    flex-shrink: 0;
    object-fit: contain;
}

@media (min-width: 768px) {
    .nav__logo-img { width: 8rem; height: 8rem; }
}

.nav__logo-img--sm {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem;
}

.nav__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav__logo-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    color: var(--navy);
}

@media (min-width: 768px) {
    .nav__logo-name { font-size: 1.375rem; }
}

.nav__logo-name--white { color: var(--white); }

.nav__logo-sub {
    font-size: 0.5625rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .nav__logo-sub { font-size: 0.625rem; }
}

.nav__logo-sub--gold { color: var(--gold); }

/* Menú desktop */
.nav__menu {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .nav__menu { display: flex; gap: 0.5rem; }
}

@media (min-width: 1024px) {
    .nav__menu { gap: 0.25rem; }
}

.nav__link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    border-radius: 0.5rem;
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--navy);
    background: var(--gold-light-70);
}

@media (min-width: 1024px) {
    .nav__link { padding: 0.5rem 1rem; }
}

.nav__cta {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--gold);
    color: var(--white) !important;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.nav__cta:hover {
    background: var(--gold-dark);
    box-shadow: var(--shadow-md);
}

/* Hamburguesa */
.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .nav__toggle { display: none; }
}

.nav__toggle:hover {
    background: var(--gold-light-70);
}

.nav__toggle-bar {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* Menú móvil abierto */
.nav__menu--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-200);
    gap: 0.25rem;
}

.nav__menu--open .nav__link,
.nav__menu--open .nav__cta {
    margin-left: 0;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
}


/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
    background: linear-gradient(160deg, #f8f9fc 0%, #e8edf5 40%, #f5edda 100%);
}

.hero__bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    pointer-events: none;
}

.hero__bg-circle--gold {
    top: 5rem;
    right: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
}

.hero__bg-circle--navy {
    bottom: 5rem;
    left: 2.5rem;
    width: 14rem;
    height: 14rem;
    background: radial-gradient(circle, var(--navy) 0%, transparent 70%);
}

.hero__bg-circle--teal {
    top: 50%;
    left: 50%;
    width: 10rem;
    height: 10rem;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
    opacity: 0.1;
}

@media (min-width: 768px) {
    .hero__bg-circle--gold { width: 24rem; height: 24rem; }
    .hero__bg-circle--navy { width: 20rem; height: 20rem; }
    .hero__bg-circle--teal { width: 16rem; height: 16rem; }
}

.hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2rem;
    align-items: center;
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .hero__content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.hero__text {
    text-align: center;
}

@media (min-width: 768px) {
    .hero__text { text-align: left; }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-dark);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.hero__badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) { .hero__title { font-size: 3.25rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 3.75rem; } }

.hero__title-accent {
    color: var(--gold);
}

.hero__description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 36rem;
    margin: 0 auto 2rem;
    line-height: 1.7;
    font-weight: 300;
}

@media (min-width: 768px) {
    .hero__description { margin: 0 0 2rem; }
}

.hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero__buttons { flex-direction: row; }
}

@media (min-width: 768px) {
    .hero__buttons { justify-content: flex-start; }
}

/* Visual del hero con imagen */
.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 100%;
    z-index: 2;
}

@media (min-width: 768px) {
    .hero__image-wrapper {
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-xl);
        max-width: 32rem;
    }
}

.hero__photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/10;
}

.hero__image-accent {
    display: none;
}

@media (min-width: 768px) {
    .hero__image-accent {
        display: block;
        position: absolute;
        bottom: -0.5rem;
        left: -0.5rem;
        right: 0.5rem;
        top: 0.5rem;
        border: 3px solid var(--gold);
        border-radius: var(--radius-lg);
        z-index: -1;
        opacity: 0.4;
    }
}

.hero__circle-deco {
    display: none;
}

@media (min-width: 768px) {
    .hero__circle-deco {
        display: block;
        position: absolute;
        inset: 0;
        pointer-events: none;
    }
}

.hero__circle-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
}

.hero__circle-ring--1 {
    top: -1.5rem;
    left: -1.5rem;
    width: 6rem;
    height: 6rem;
    border-color: rgba(76, 166, 168, 0.2);
}

.hero__dot {
    position: absolute;
    border-radius: 50%;
}

.hero__dot--1 {
    top: 1rem;
    right: 0;
    width: 1rem;
    height: 1rem;
    background: rgba(212, 175, 55, 0.5);
}

.hero__dot--2 {
    bottom: 3rem;
    left: -2rem;
    width: 0.75rem;
    height: 0.75rem;
    background: rgba(76, 166, 168, 0.4);
}

/* Ola */
.hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 5rem;
}


/* ============================================
   SOBRE NOSOTROS
   ============================================ */
.about {
    padding: 5rem 0;
    background: var(--white);
}

@media (min-width: 768px) {
    .about { padding: 7rem 0; }
}

.about__grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about__image {
    position: relative;
}

.about__image-frame {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about__image-frame:hover .about__photo {
    transform: scale(1.05);
}

.about__image-deco {
    position: absolute;
    border-radius: 0.75rem;
    z-index: -1;
}

.about__image-deco--1 {
    bottom: -1rem;
    right: -1rem;
    width: 6rem;
    height: 6rem;
    background: rgba(212, 175, 55, 0.1);
}

.about__image-deco--2 {
    top: -1rem;
    left: -1rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--teal-light);
}

.about__text p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .about__text p { font-size: 1.125rem; }
}

.about__text p strong {
    color: var(--navy);
}

.about__buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .about__buttons { flex-direction: row; }
}


/* ============================================
   SERVICIOS
   ============================================ */
.services {
    padding: 5rem 0;
    background: var(--gray-50);
}

@media (min-width: 768px) {
    .services { padding: 7rem 0; }
}

.services__grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .services__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1280px) {
    .services__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
    .services__grid { gap: 2rem; }
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.service-card__image {
    width: 100%;
    height: 12rem;
    overflow: hidden;
    position: relative;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.08);
}

.service-card__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3rem;
    background: linear-gradient(to top, var(--white), transparent);
    pointer-events: none;
}

@media (min-width: 1024px) {
    .service-card__image { height: 14rem; }
}

.service-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
}

@media (min-width: 1024px) {
    .service-card__body { padding: 1.5rem 2rem 2rem; }
}

.service-card__icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius);
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

@media (min-width: 1024px) {
    .service-card__icon { width: 5rem; height: 5rem; }
}

.service-card__icon svg {
    width: 3rem;
    height: 3rem;
}

.service-card:hover .service-card__icon {
    background: var(--gold);
    color: var(--white);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

@media (min-width: 1024px) {
    .service-card__title { font-size: 1.25rem; }
}

.service-card__text {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .service-card__text { font-size: 1rem; }
}


/* ============================================
   FEATURES (POR QUÉ ELEGIRNOS)
   ============================================ */
.features {
    padding: 5rem 0;
    background: var(--white);
}

@media (min-width: 768px) {
    .features { padding: 7rem 0; }
}

.features__grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .features__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
    .features__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.feature {
    text-align: center;
}

.feature__icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    transition: var(--transition);
}

.feature__icon svg {
    width: 3rem;
    height: 3rem;
}

.feature:hover .feature__icon {
    background: var(--teal);
    color: var(--white);
}

.feature__title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.feature__text {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.6;
}


/* ============================================
   BOOKING / RESERVAR CITA
   ============================================ */
.booking {
    padding: 5rem 0;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
}

@media (min-width: 768px) {
    .booking { padding: 7rem 0; }
}

.booking__content {
    max-width: 56rem;
}

.booking__widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    min-height: 37.5rem;
}

.booking__placeholder {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 1.5rem;
    text-align: center;
    min-height: 37.5rem;
}

.booking__placeholder-icon {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    margin-bottom: 1.5rem;
}

.booking__placeholder-icon svg {
    width: 3.5rem;
    height: 3.5rem;
}

.booking__placeholder h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.booking__placeholder p {
    color: var(--text-light);
    font-size: 0.875rem;
    max-width: 28rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.booking__placeholder-badge {
    padding: 0.625rem 1.25rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-dark);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}


/* ============================================
   CONTACTO
   ============================================ */
.contact {
    padding: 5rem 0;
    background: var(--white);
}

@media (min-width: 768px) {
    .contact { padding: 7rem 0; }
}

.contact__grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .contact__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact__info-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact__item--map {
    flex-direction: column;
}

.contact__item--map .contact__item-icon {
    display: none;
}

.contact__item-body {
    width: 100%;
}

.contact__item-body iframe {
    width: 100%;
    margin-top: 0.25rem;
}

.contact__item-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.contact__item-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.contact__item-label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.875rem;
}

.contact__item-value {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 0.125rem;
}

.contact__socials {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.contact__socials-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
}

.contact__social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    transition: var(--transition);
}

.contact__social-link:hover {
    background: var(--gold);
    color: var(--white);
}

.contact__social-link--fb:hover {
    background: var(--navy);
    color: var(--white);
}

.contact__social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}


/* ---- Canales directos ---- */
.contact__actions {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
    align-content: start;
}

@media (min-width: 1024px) {
    .contact__actions { padding: 2rem; }
}

.contact__actions-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--navy);
    line-height: 1.2;
}

.contact__actions-text {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact__action {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 4.75rem;
    padding: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.contact__action:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact__action-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--teal-light);
    color: var(--teal);
}

.contact__action--email .contact__action-icon {
    background: var(--gold-light);
    color: var(--gold-dark);
}

.contact__action--whatsapp .contact__action-icon {
    background: #e6f7ee;
    color: #128c4a;
}

.contact__action-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.contact__action strong,
.contact__action small {
    display: block;
}

.contact__action strong {
    color: var(--navy);
    font-size: 1rem;
}

.contact__action small {
    color: var(--text-light);
    font-size: 0.875rem;
    overflow-wrap: anywhere;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    margin-top: auto;
    background: var(--navy);
}

.footer__grid {
    display: grid;
    gap: 2.5rem;
    padding: 3rem 0;
}

@media (min-width: 640px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
    .footer__grid {
        grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
        gap: 2rem;
        padding: 4rem 0;
    }
}

.footer__description {
    font-size: 0.875rem;
    color: rgba(191, 219, 254, 0.7);
    line-height: 1.6;
    margin-top: 0.75rem;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer__links a {
    font-size: 0.875rem;
    color: rgba(191, 219, 254, 0.7);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--gold);
}

.footer__contact p {
    font-size: 0.875rem;
    color: rgba(191, 219, 254, 0.7);
    margin-bottom: 0.75rem;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 0;
}

@media (min-width: 640px) {
    .footer__bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer__bottom p {
    font-size: 0.75rem;
    color: rgba(191, 219, 254, 0.5);
}

.footer__legal {
    display: flex;
    gap: 1rem;
}

.footer__legal a {
    font-size: 0.75rem;
    color: rgba(191, 219, 254, 0.5);
    transition: var(--transition);
}

.footer__legal a:hover {
    color: var(--gold);
}


/* ============================================
   FIX: Imagen hero visible en movil
   ============================================ */
.hero__visual {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.hero__image-wrapper {
    width: 100% !important;
    max-width: 100% !important;
}

.hero__photo {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}
