/*
Theme Name: Quirosalut
Theme URI: https://quirosalutmolins.com
Description: Tema custom para el centro terapéutico Quirosalut en Molins de Rei
Version: 1.0
Requires at least: 5.0
Requires PHP: 7.4
Author: Andrea Jiménez
Author URI: https://andreajimenez.dev
License: All Rights Reserved
Text Domain: quirosalut
Domain Path: /languages
*/

/* ========================================
   CSS VARIABLES
======================================== */
:root {
    --verde-principal: #9DC62F;
    --verde-oscuro: #7BA428;
    --verde-muy-oscuro: #5C7A1E;
    --verde-claro: #E8F5D6;
    --verde-suave: #F4F9EC;
    
    --blanco: #FFFFFF;
    --gris-50: #FAFAFA;
    --gris-100: #F5F5F5;
    --gris-200: #EEEEEE;
    --gris-300: #E0E0E0;
    --gris-400: #BDBDBD;
    --gris-500: #9E9E9E;
    --gris-600: #757575;
    --gris-700: #616161;
    --gris-800: #424242;
    --gris-900: #212121;
    --negro: #1A1A1A;
    
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gris-800);
    background-color: var(--blanco);
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--negro);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.875rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }

.overline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--verde-principal);
    margin-bottom: var(--space-sm);
    display: block;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.section-header p {
    margin-top: var(--space-sm);
    color: var(--gris-600);
}

/* ========================================
   LAYOUT
======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-3xl) 0;
}

.section--white {
    background-color: var(--blanco);
}

.section--gray {
    background-color: var(--gris-50);
    border-top: 1px solid var(--gris-200);
    border-bottom: 1px solid var(--gris-200);
}

.section--green-light {
    background-color: var(--verde-suave);
    border-top: 1px solid var(--verde-claro);
    border-bottom: 1px solid var(--verde-claro);
}

.section--green {
    background-color: var(--verde-principal);
    color: var(--blanco);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 1rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn--primary {
    background-color: var(--verde-principal);
    color: var(--blanco);
}

.btn--primary:hover {
    background-color: var(--verde-oscuro);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(157, 198, 47, 0.35);
}

.btn--secondary {
    background-color: var(--blanco);
    color: var(--verde-oscuro);
    border: 1.5px solid var(--verde-principal);
}

.btn--secondary:hover {
    background-color: var(--verde-suave);
}

.btn--white {
    background-color: var(--blanco);
    color: var(--verde-oscuro);
}

.btn--white:hover {
    background-color: var(--gris-100);
    transform: translateY(-2px);
}

/* ========================================
   HEADER
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gris-200);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header__logo img {
    height: 55px;
    width: auto;
}

.header__logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--verde-oscuro);
    display: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__link {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--gris-700);
    padding: 0.5rem 0;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--verde-principal);
    transition: var(--transition-fast);
}

.nav__link:hover {
    color: var(--verde-oscuro);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
    color: var(--gris-700);
}

.nav__phone svg {
    width: 16px;
    height: 16px;
    color: var(--verde-principal);
}

.header__cta {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 55px;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gris-800);
    transition: var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   HERO
======================================== */
.hero {
    padding-top: 70px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--verde-suave) 0%, var(--blanco) 60%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse, var(--verde-claro) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
    padding: var(--space-2xl) 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

.hero__content {
    max-width: 520px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    background: var(--blanco);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    color: var(--verde-oscuro);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--verde-claro);
}

.hero__badge svg {
    width: 16px;
    height: 16px;
    color: var(--verde-principal);
}

.hero__title {
    margin-bottom: var(--space-sm);
    color: var(--negro);
}

.hero__title-line {
    display: block;
}

.hero__title-line--accent {
    color: var(--verde-principal);
}

.hero__location {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.125rem;
    color: var(--verde-oscuro);
    margin-bottom: var(--space-md);
}

.hero__description {
    font-size: 1.0625rem;
    color: var(--gris-600);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.hero__stats {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--gris-300);
    border-bottom: 1px solid var(--gris-300);
}

.hero__stat {
    text-align: center;
}

.hero__stat-value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--verde-oscuro);
    display: block;
    line-height: 1.2;
}

.hero__stat-label {
    font-size: 0.875rem;
    color: var(--gris-500);
    display: block;
    margin-top: 4px;
}

.hero__actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero__image {
    position: relative;
    display: flex;
    justify-content: center;
}

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

.hero__image-placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, var(--verde-claro) 0%, var(--verde-suave) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    color: var(--verde-oscuro);
}

.hero__image-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.4;
}

.hero__image-placeholder span {
    font-size: 0.875rem;
    opacity: 0.6;
}

/* ========================================
   SERVICES
======================================== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.service-card {
    background: var(--blanco);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--gris-200);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--verde-claro);
}

.service-card__icon {
    width: 52px;
    height: 52px;
    background: var(--verde-suave);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    transition: var(--transition-normal);
}

.service-card:hover .service-card__icon {
    background: var(--verde-principal);
}

.service-card__icon svg {
    width: 26px;
    height: 26px;
    color: var(--verde-principal);
    transition: var(--transition-normal);
}

.service-card:hover .service-card__icon svg {
    color: var(--blanco);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--negro);
    margin-bottom: 6px;
}

.service-card__description {
    font-size: 0.9rem;
    color: var(--gris-600);
    margin-bottom: var(--space-md);
    line-height: 1.6;
    flex-grow: 1;
}

.service-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--gris-200);
    font-size: 0.8125rem;
}

.service-card__duration {
    color: var(--gris-500);
}

.service-card__price {
    font-weight: 600;
    color: var(--verde-oscuro);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--verde-oscuro);
}

.service-card__link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.service-card:hover .service-card__link svg {
    transform: translateX(4px);
}

/* ========================================
   TRUST
======================================== */
.trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.trust__item {
    text-align: center;
    padding: var(--space-md);
}

.trust__icon {
    width: 64px;
    height: 64px;
    background: var(--blanco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gris-200);
}

.trust__icon svg {
    width: 28px;
    height: 28px;
    color: var(--verde-principal);
}

.trust__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--negro);
    margin-bottom: 4px;
}

.trust__description {
    font-size: 0.875rem;
    color: var(--gris-600);
}

/* ========================================
   TEAM
======================================== */
.team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.team-card {
    text-align: center;
    background: var(--blanco);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.team-card__image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto var(--space-md);
    overflow: hidden;
    border: 3px solid var(--verde-claro);
}

.team-card__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--verde-claro) 0%, var(--verde-suave) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card__image-placeholder svg {
    width: 40px;
    height: 55px;
    color: var(--verde-principal);
    opacity: 0.5;
}

.team-card__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--negro);
    margin-bottom: 4px;
}

.team-card__role {
    color: var(--verde-oscuro);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
}

.team-card__specialty {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--verde-suave);
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    color: var(--verde-oscuro);
}

/* ========================================
   TESTIMONIALS
======================================== */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonials__grid .testimonial-card:nth-child(4),
.testimonials__grid .testimonial-card:nth-child(5) {
    max-width: 100%;
}

@media (min-width: 1025px) {
    .testimonials__grid--five {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--blanco);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
}

.testimonial-card__rating {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-sm);
}

.testimonial-card__rating svg {
    width: 16px;
    height: 16px;
    color: #FFB800;
    fill: #FFB800;
}

.testimonial-card__text {
    font-size: 0.9375rem;
    color: var(--gris-700);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.testimonial-card__author {
    font-weight: 500;
    color: var(--negro);
}

.testimonial-card__role {
    font-size: 0.875rem;
    color: var(--gris-500);
}

/* ========================================
   CONTACT FORM
======================================== */
.contact-form {
    display: grid;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--negro);
    font-size: 0.9375rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gris-300);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--verde-principal);
    box-shadow: 0 0 0 3px rgba(157, 198, 47, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background-color: var(--negro);
    color: var(--blanco);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand h3 {
    color: var(--blanco);
    margin-bottom: var(--space-sm);
    font-size: 1.125rem;
}

.footer__brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__list-title {
    font-weight: 600;
    color: var(--blanco);
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer__link:hover {
    color: var(--verde-principal);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer__copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer__socials {
    display: flex;
    gap: var(--space-sm);
}

/* ========================================
   WHATSAPP FLOATING BUTTON
======================================== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: var(--transition-normal);
    text-decoration: none;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
    color: var(--blanco);
}

/* ========================================
   PAGE TEMPLATE STYLES
======================================== */
.page-hero {
    padding-top: 70px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--verde-suave) 0%, var(--blanco) 60%);
    position: relative;
    overflow: hidden;
    margin-bottom: var(--space-3xl);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse, var(--verde-claro) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: var(--space-3xl) var(--space-md);
}

.page-hero__title {
    margin-bottom: var(--space-md);
}

.page-hero__description {
    max-width: 700px;
    font-size: 1.0625rem;
    color: var(--gris-600);
    line-height: 1.7;
}

/* ========================================
   SERVICE PAGES — HERO
======================================== */
.service-hero {
    padding-top: 70px;
    background: linear-gradient(135deg, var(--verde-suave) 0%, var(--blanco) 100%);
    border-bottom: 1px solid var(--verde-claro);
}

.service-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    padding: var(--space-2xl) 0;
}

.service-hero__content {
    max-width: 520px;
}

.service-hero__breadcrumb {
    font-size: 0.875rem;
    color: var(--gris-500);
    margin-bottom: var(--space-md);
}

.service-hero__breadcrumb a {
    color: var(--gris-500);
    text-decoration: none;
}

.service-hero__breadcrumb a:hover {
    color: var(--verde-oscuro);
}

.service-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.375rem 0.75rem;
    background: var(--blanco);
    border-radius: var(--radius-xl);
    font-size: 0.8125rem;
    color: var(--verde-oscuro);
    margin-bottom: var(--space-md);
    border: 1px solid var(--verde-claro);
}

.service-hero__tag svg {
    width: 14px;
    height: 14px;
}

.service-hero__title {
    margin-bottom: var(--space-sm);
}

.service-hero__subtitle {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.125rem;
    color: var(--verde-oscuro);
    margin-bottom: var(--space-md);
}

.service-hero__description {
    font-size: 1.0625rem;
    color: var(--gris-600);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.service-hero__actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.service-hero__image {
    position: relative;
}

.service-hero__image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-hero__image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, var(--verde-claro) 0%, var(--verde-suave) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.service-hero__image-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--verde-principal);
    opacity: 0.5;
}

.service-hero__image-placeholder span {
    font-size: 0.875rem;
    color: var(--verde-oscuro);
    opacity: 0.6;
}

/* ========================================
   SERVICE PAGES — PRICING BOX
======================================== */
.pricing-box {
    background: var(--blanco);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    position: absolute;
    bottom: -30px;
    right: -20px;
    min-width: 280px;
}

.pricing-box__title {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gris-500);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-box__item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed var(--gris-200);
    font-size: 0.9375rem;
}

.pricing-box__item:last-child {
    border-bottom: none;
}

.pricing-box__name {
    color: var(--gris-700);
}

.pricing-box__price {
    font-weight: 600;
    color: var(--verde-oscuro);
}

/* ========================================
   SERVICE PAGES — SECTION HEADER
======================================== */
.section__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.section__header p {
    margin-top: var(--space-sm);
    color: var(--gris-600);
}

/* ========================================
   SERVICE PAGES — BENEFITS
======================================== */
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.benefit-card {
    background: var(--blanco);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gris-200);
    transition: var(--transition-normal);
}

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

.benefit-card__icon {
    width: 56px;
    height: 56px;
    background: var(--verde-suave);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.benefit-card__icon svg {
    width: 26px;
    height: 26px;
    color: var(--verde-principal);
}

.benefit-card__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--negro);
    margin-bottom: 6px;
}

.benefit-card__description {
    font-size: 0.875rem;
    color: var(--gris-600);
    line-height: 1.6;
}

/* ========================================
   SERVICE PAGES — FOR WHO
======================================== */
.for-who__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.for-who__content h2 {
    margin-bottom: var(--space-md);
}

.for-who__content p {
    color: var(--gris-600);
    margin-bottom: var(--space-lg);
}

.for-who__list {
    display: grid;
    gap: var(--space-sm);
}

.for-who__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: var(--verde-suave);
    border-radius: var(--radius-md);
}

.for-who__item svg {
    width: 20px;
    height: 20px;
    color: var(--verde-principal);
    flex-shrink: 0;
    margin-top: 2px;
}

.for-who__item span {
    font-size: 0.9375rem;
    color: var(--gris-700);
}

.for-who__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.for-who__image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, var(--verde-claro) 0%, var(--verde-suave) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.for-who__image-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--verde-principal);
    opacity: 0.4;
}

.for-who__image-placeholder span {
    font-size: 0.875rem;
    color: var(--verde-oscuro);
    opacity: 0.6;
}

/* ========================================
   SERVICE PAGES — PROCESS
======================================== */
.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--verde-claro);
}

.process-step:last-child::after {
    display: none;
}

.process-step__number {
    width: 56px;
    height: 56px;
    background: var(--verde-principal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--blanco);
    position: relative;
    z-index: 1;
}

.process-step__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--negro);
    margin-bottom: 6px;
}

.process-step__description {
    font-size: 0.875rem;
    color: var(--gris-600);
    line-height: 1.6;
}

/* ========================================
   SERVICE PAGES — PROFESSIONAL
======================================== */
.professional {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    background: var(--blanco);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
}

.professional__image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid var(--verde-claro);
}

.professional__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--verde-claro) 0%, var(--verde-suave) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.professional__image-placeholder svg {
    width: 50px;
    height: 50px;
    color: var(--verde-principal);
    opacity: 0.5;
}

.professional__info {
    flex: 1;
}

.professional__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--negro);
    margin-bottom: 4px;
}

.professional__role {
    color: var(--verde-oscuro);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.professional__bio {
    color: var(--gris-600);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ========================================
   SERVICE PAGES — SCHEDULE & INFO
======================================== */
.schedule-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: 800px;
    margin: 0 auto;
}

.info-card {
    background: var(--blanco);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gris-200);
}

.info-card__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gris-500);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card__title svg {
    width: 18px;
    height: 18px;
    color: var(--verde-principal);
}

.info-card__item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--gris-100);
    font-size: 0.9375rem;
}

.info-card__item:last-child {
    border-bottom: none;
}

.info-card__label {
    color: var(--gris-600);
}

.info-card__value {
    font-weight: 500;
    color: var(--negro);
}

/* ========================================
   SERVICE PAGES — FAQ
======================================== */
.faq__list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--blanco);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    border: 1px solid var(--gris-200);
    overflow: hidden;
}

.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    cursor: pointer;
    font-weight: 500;
    color: var(--negro);
    transition: var(--transition-fast);
    user-select: none;
}

.faq-item__question:hover {
    background: var(--gris-50);
}

.faq-item__question svg {
    width: 20px;
    height: 20px;
    color: var(--verde-principal);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-item__question svg {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--gris-600);
    line-height: 1.7;
}

.faq-item.active .faq-item__answer {
    max-height: 300px;
    padding: 0 var(--space-md) var(--space-md);
}

/* ========================================
   SERVICE PAGES — CTA BANNER
======================================== */
.cta {
    text-align: center;
    padding: var(--space-3xl) 0;
    background: var(--verde-principal);
}

.cta__inner {
    max-width: 550px;
    margin: 0 auto;
}

.cta h2 {
    color: var(--blanco);
    margin-bottom: var(--space-sm);
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .services__grid,
    .trust__grid,
    .team__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero__inner {
        grid-template-columns: 1fr;
    }

    /* Service pages responsive */
    .service-hero__inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .service-hero__content {
        max-width: 100%;
        text-align: center;
    }

    .service-hero__actions {
        justify-content: center;
    }

    .service-hero__image {
        order: -1;
    }

    .pricing-box {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: var(--space-md);
    }

    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .for-who__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .for-who__image {
        order: -1;
    }

    .process__steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }

    .schedule-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services__grid,
    .trust__grid,
    .team__grid,
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav__list {
        display: none;
    }
    
    .nav__phone {
        display: none;
    }
    
    .hero__stats {
        flex-direction: column;
    }

    /* Service pages responsive */
    .benefits__grid {
        grid-template-columns: 1fr;
    }

    .process__steps {
        grid-template-columns: 1fr;
    }

    .professional {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   PAGE HEADER (Servicios, Equipo, Contacto)
   Compact — no excessive padding
======================================== */
.page-header {
    padding-top: 110px;
    padding-bottom: var(--space-2xl);
    background: var(--verde-suave);
    border-bottom: 1px solid var(--verde-claro);
}

.page-header__inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.page-header__breadcrumb {
    font-size: 0.875rem;
    color: var(--gris-500);
    margin-bottom: var(--space-md);
}

.page-header__breadcrumb a:hover {
    color: var(--verde-oscuro);
}

.page-header h1 {
    margin-bottom: var(--space-sm);
}

.page-header__subtitle {
    font-size: 1.0625rem;
    color: var(--gris-600);
    margin-bottom: var(--space-lg);
}

.page-header__badges {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.page-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1rem;
    background: var(--blanco);
    border-radius: var(--radius-xl);
    font-size: 0.8125rem;
    color: var(--gris-700);
    border: 1px solid var(--gris-200);
}

.page-header__badge svg {
    width: 14px;
    height: 14px;
    color: var(--verde-principal);
}

/* ========================================
   NAV ACTIVE STATE
======================================== */
.nav__link--active {
    color: var(--verde-oscuro);
}

.nav__link--active::after {
    width: 100%;
}

/* ========================================
   BUTTON LARGE VARIANT
======================================== */
.btn--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ========================================
   SERVICES PAGE — SERVICE FULL
   Grid: image left (280px), content right
======================================== */
.services-section {
    padding: var(--space-3xl) 0;
}

.service-full {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-xl);
    padding: var(--space-xl);
    background: var(--blanco);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gris-200);
    margin-bottom: var(--space-lg);
    transition: var(--transition-normal);
}

.service-full:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--verde-claro);
}

.service-full:nth-child(even) {
    grid-template-columns: 1fr 280px;
}

.service-full:nth-child(even) .service-full__image {
    order: 2;
}

.service-full__image {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.service-full__image-placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, var(--verde-claro) 0%, var(--verde-suave) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
}

.service-full__image-placeholder svg {
    width: 40px;
    height: 55px;
    color: var(--verde-principal);
    opacity: 0.5;
}

.service-full__image-placeholder span {
    font-size: 0.8125rem;
    color: var(--verde-oscuro);
    opacity: 0.6;
}

.service-full__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-full__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.375rem 0.75rem;
    background: var(--verde-suave);
    border-radius: var(--radius-xl);
    font-size: 0.8125rem;
    color: var(--verde-oscuro);
    width: fit-content;
    margin-bottom: var(--space-sm);
}

.service-full__tag svg {
    width: 14px;
    height: 14px;
}

.service-full__title {
    font-size: 1.625rem;
    margin-bottom: 4px;
}

.service-full__subtitle {
    color: var(--verde-principal);
    font-weight: 500;
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
}

.service-full__description {
    color: var(--gris-600);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.service-full__meta {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
    padding: var(--space-sm) 0;
    border-top: 1px solid var(--gris-200);
    border-bottom: 1px solid var(--gris-200);
    flex-wrap: wrap;
}

.service-full__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-full__meta-item svg {
    width: 18px;
    height: 18px;
    color: var(--verde-principal);
    flex-shrink: 0;
}

.service-full__meta-label {
    font-size: 0.75rem;
    color: var(--gris-500);
    display: block;
}

.service-full__meta-value {
    font-weight: 500;
    color: var(--negro);
    font-size: 0.9375rem;
}

.service-full__prices {
    margin-bottom: var(--space-md);
}

.service-full__price-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed var(--gris-200);
    font-size: 0.9375rem;
}

.service-full__price-row:last-child {
    border-bottom: none;
}

.service-full__price-name {
    color: var(--gris-700);
}

.service-full__price-value {
    font-weight: 600;
    color: var(--verde-oscuro);
}

.service-full__actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* ========================================
   EQUIPO PAGE — TEAM MEMBER
   Grid: image left (300px), content right
======================================== */
.team-section {
    padding: var(--space-3xl) 0;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.team-intro p {
    color: var(--gris-600);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.team-member {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-2xl);
    padding: var(--space-2xl);
    background: var(--blanco);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
    align-items: center;
}

.team-member:nth-child(even) {
    grid-template-columns: 1fr 300px;
}

.team-member:nth-child(even) .team-member__image {
    order: 2;
}

.team-member__image {
    position: relative;
}

.team-member__image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1/1;
}

.team-member__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--verde-claro) 0%, var(--verde-suave) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.team-member__image-placeholder svg {
    width: 60px;
    height: 60px;
    color: var(--verde-principal);
    opacity: 0.4;
}

.team-member__image-placeholder span {
    font-size: 0.875rem;
    color: var(--verde-oscuro);
    opacity: 0.6;
}

.team-member__content {
    padding: var(--space-md) 0;
}

.team-member__specialty {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.375rem 0.75rem;
    background: var(--verde-suave);
    border-radius: var(--radius-xl);
    font-size: 0.8125rem;
    color: var(--verde-oscuro);
    margin-bottom: var(--space-sm);
}

.team-member__name {
    font-size: 1.75rem;
    margin-bottom: 4px;
}

.team-member__role {
    color: var(--verde-principal);
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.team-member__bio {
    color: var(--gris-600);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.team-member__details {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--gris-50);
    border-radius: var(--radius-md);
}

.team-member__detail {
    display: flex;
    align-items: center;
    gap: 8px;
}

.team-member__detail svg {
    width: 18px;
    height: 18px;
    color: var(--verde-principal);
}

.team-member__detail-label {
    font-size: 0.8125rem;
    color: var(--gris-500);
}

.team-member__detail-value {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--negro);
}

.team-member__actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* ========================================
   EQUIPO PAGE — VALUES SECTION
   3-column grid
======================================== */
.values-section {
    padding: var(--space-3xl) 0;
    background: var(--gris-50);
    border-top: 1px solid var(--gris-200);
    border-bottom: 1px solid var(--gris-200);
}

.values-section__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.values-section__header p {
    margin-top: var(--space-sm);
    color: var(--gris-600);
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.value-card {
    background: var(--blanco);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gris-200);
}

.value-card__icon {
    width: 64px;
    height: 64px;
    background: var(--verde-suave);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.value-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--verde-principal);
}

.value-card__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--negro);
    margin-bottom: 6px;
}

.value-card__description {
    font-size: 0.9rem;
    color: var(--gris-600);
    line-height: 1.6;
}

/* ========================================
   CONTACTO PAGE — BOOKING SECTION
======================================== */
.booking-section {
    padding: var(--space-3xl) 0;
}

.booking-section__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.booking-section__header p {
    margin-top: var(--space-sm);
    color: var(--gris-600);
}

.calendar-widget {
    background: var(--gris-50);
    border: 2px dashed var(--gris-300);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.calendar-widget__icon {
    width: 80px;
    height: 80px;
    background: var(--verde-suave);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.calendar-widget__icon svg {
    width: 40px;
    height: 40px;
    color: var(--verde-principal);
}

.calendar-widget__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--negro);
    margin-bottom: var(--space-sm);
}

.calendar-widget__description {
    color: var(--gris-600);
    margin-bottom: var(--space-md);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.calendar-widget__note {
    font-size: 0.8125rem;
    color: var(--gris-500);
    background: var(--blanco);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    display: inline-block;
}

/* ========================================
   CONTACTO PAGE — CONTACT INFO SECTION
   2-column grid: info + map
======================================== */
.contact-section {
    padding: var(--space-3xl) 0;
    background: var(--gris-50);
    border-top: 1px solid var(--gris-200);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.contact-info {
    padding: var(--space-xl);
    background: var(--blanco);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-info__header {
    margin-bottom: var(--space-xl);
}

.contact-info__header h2 {
    margin-bottom: 4px;
}

.contact-info__header p {
    color: var(--gris-600);
}

.contact-info__items {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
}

.contact-item__icon {
    width: 50px;
    height: 50px;
    background: var(--verde-suave);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item__icon svg {
    width: 24px;
    height: 24px;
    color: var(--verde-principal);
}

.contact-item__content h3 {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gris-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-item__content p {
    color: var(--negro);
    font-size: 1rem;
}

.contact-item__content a {
    color: var(--verde-oscuro);
    font-weight: 500;
}

.contact-item__content a:hover {
    color: var(--verde-principal);
}

.contact-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.contact-action {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.25rem;
    background: var(--verde-suave);
    border-radius: var(--radius-xl);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--verde-oscuro);
    transition: var(--transition-normal);
}

.contact-action svg {
    width: 20px;
    height: 20px;
}

.contact-action:hover {
    background: var(--verde-claro);
    transform: translateY(-2px);
}

.contact-action--whatsapp {
    background: #25D366;
    color: white;
}

.contact-action--whatsapp:hover {
    background: #20bd5a;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 400px;
}

.contact-map__placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(145deg, var(--verde-claro) 0%, var(--verde-suave) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.contact-map__placeholder svg {
    width: 60px;
    height: 60px;
    color: var(--verde-principal);
    opacity: 0.5;
}

.contact-map__placeholder span {
    color: var(--verde-oscuro);
    font-size: 0.9375rem;
}

.contact-map__placeholder p {
    font-size: 0.8125rem;
    color: var(--gris-600);
    max-width: 250px;
    text-align: center;
}

/* ========================================
   CONTACTO PAGE — SCHEDULE SECTION
   2x2 grid
======================================== */
.schedule-section {
    padding: var(--space-3xl) 0;
}

.schedule-section__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.schedule-section__header p {
    margin-top: var(--space-sm);
    color: var(--gris-600);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.schedule-card {
    background: var(--blanco);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gris-200);
}

.schedule-card__header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--gris-200);
}

.schedule-card__icon {
    width: 40px;
    height: 40px;
    background: var(--verde-suave);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule-card__icon svg {
    width: 20px;
    height: 20px;
    color: var(--verde-principal);
}

.schedule-card__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--negro);
}

.schedule-card__items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.schedule-card__item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9375rem;
}

.schedule-card__day {
    color: var(--gris-600);
}

.schedule-card__time {
    font-weight: 500;
    color: var(--negro);
}

.schedule-card__note {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px dashed var(--gris-200);
    font-size: 0.8125rem;
    color: var(--gris-500);
}

/* ========================================
   CONTACTO PAGE — FORM SECTION
======================================== */
.form-section {
    padding: var(--space-3xl) 0;
    background: var(--verde-suave);
    border-top: 1px solid var(--verde-claro);
    border-bottom: 1px solid var(--verde-claro);
}

.form-section__inner {
    max-width: 600px;
    margin: 0 auto;
}

.form-section__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.form-section__header p {
    margin-top: var(--space-sm);
    color: var(--gris-600);
}

.contact-form--card {
    background: var(--blanco);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-submit {
    margin-top: var(--space-lg);
}

.form-submit .btn {
    width: 100%;
}

.form-note {
    margin-top: var(--space-md);
    font-size: 0.8125rem;
    color: var(--gris-500);
    text-align: center;
}

/* ========================================
   HOMEPAGE — VISIT US SECTION
======================================== */
.visit__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.visit__info h2 {
    margin-bottom: var(--space-lg);
}

.visit__hours {
    margin-bottom: var(--space-lg);
}

.visit__hours-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--negro);
    margin-bottom: var(--space-sm);
}

.visit__hours-title svg {
    width: 20px;
    height: 20px;
    color: var(--verde-principal);
}

.visit__hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gris-200);
    font-size: 0.9375rem;
}

.visit__hours-item:last-child {
    border-bottom: none;
}

.visit__hours-day {
    color: var(--gris-700);
}

.visit__hours-time {
    font-weight: 500;
    color: var(--negro);
}

.visit__address {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--blanco);
    border-radius: var(--radius-md);
    border: 1px solid var(--gris-200);
}

.visit__address svg {
    width: 24px;
    height: 24px;
    color: var(--verde-principal);
    flex-shrink: 0;
    margin-top: 2px;
}

.visit__address-title {
    font-weight: 500;
    color: var(--negro);
    margin-bottom: 2px;
}

.visit__address-detail {
    font-size: 0.9375rem;
    color: var(--gris-600);
}

.visit__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.visit__map-placeholder {
    aspect-ratio: 4/3;
    background: var(--gris-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.visit__map-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--gris-400);
}

.visit__map-placeholder span {
    color: var(--gris-500);
    font-size: 0.875rem;
}

/* ========================================
   FOOTER — EXTENDED STRUCTURE
   (footer__logo, footer__social, footer__column, etc.)
======================================== */
.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--space-md);
}

.footer__logo img {
    height: 48px;
}

.footer__logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--blanco);
}

.footer__description {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
    color: var(--gris-400);
}

.footer__social {
    display: flex;
    gap: 10px;
}

.footer__social a {
    width: 38px;
    height: 38px;
    background: var(--gris-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer__social a:hover {
    background: var(--verde-principal);
}

.footer__social svg {
    width: 18px;
    height: 18px;
    color: var(--gris-400);
}

.footer__social a:hover svg {
    color: var(--blanco);
}

.footer__column h4 {
    color: var(--blanco);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--gris-400);
}

.footer__contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--verde-principal);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer__legal {
    display: flex;
    gap: var(--space-lg);
}

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

/* ========================================
   RESPONSIVE — ADDITIONAL RULES
======================================== */
@media (max-width: 1024px) {
    /* Service full — stack vertically */
    .service-full,
    .service-full:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .service-full:nth-child(even) .service-full__image {
        order: 0;
    }

    .service-full__image-placeholder {
        aspect-ratio: 16/9;
    }

    /* Team member — stack vertically, center */
    .team-member,
    .team-member:nth-child(even) {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team-member:nth-child(even) .team-member__image {
        order: 0;
    }

    .team-member__image-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }

    .team-member__specialty {
        margin-left: auto;
        margin-right: auto;
    }

    .team-member__details {
        justify-content: center;
    }

    .team-member__actions {
        justify-content: center;
    }

    /* Values — 2 columns */
    .values__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact grid — stack */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 350px;
    }

    /* Schedule — stack */
    .schedule-grid {
        grid-template-columns: 1fr;
    }

    /* Visit — stack */
    .visit__inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    /* Page header compact on mobile */
    .page-header {
        padding-top: 100px;
        padding-bottom: var(--space-xl);
    }

    .page-header__badges {
        flex-direction: column;
        align-items: center;
    }

    /* Service full */
    .service-full {
        padding: var(--space-md);
    }

    .service-full__meta {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .service-full__actions {
        flex-direction: column;
    }

    .service-full__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .service-full__title {
        font-size: 1.375rem;
    }

    /* Team member */
    .team-member {
        padding: var(--space-lg);
    }

    .team-member__details {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }

    /* Values — single column */
    .values__grid {
        grid-template-columns: 1fr;
    }

    /* Contact actions */
    .contact-actions {
        flex-direction: column;
    }

    /* Form row — stack */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer social */
    .footer__social {
        justify-content: center;
    }

    .footer__legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-sm);
    }
}
