/* ==========================================================================
   SIM SERVICIO AL PACIENTE — ESTILOS PRINCIPALES (REFINADO & ELEGANTE)
   Cuidado y Acompañamiento en Internación y Domicilio | CABA y GBA
   ========================================================================== */

:root {
    --primary: #0d3b66;
    --primary-light: #185a88;
    --primary-dark: #07223b;
    --secondary: #2a9d8f;
    --secondary-light: #48bcae;
    --secondary-dark: #1b6c62;
    --accent: #f4a261;
    --accent-dark: #e76f51;
    --success: #25d366;
    
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-soft-blue: #f0f6fa;
    --bg-soft-teal: #f0fdf9;
    --bg-dark: #091e30;
    --bg-card: #ffffff;
    
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    
    --border-light: #e2e8f0;
    --border-teal: #ccfbf1;
    
    --shadow-sm: 0 2px 8px rgba(13, 59, 102, 0.05);
    --shadow-md: 0 8px 24px rgba(13, 59, 102, 0.08);
    --shadow-lg: 0 16px 40px rgba(13, 59, 102, 0.12);
    --shadow-xl: 0 24px 60px rgba(13, 59, 102, 0.16);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1240px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font: inherit;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Vector SVG Helper */
.icon-svg {
    display: inline-block;
    width: 1.15em;
    height: 1.15em;
    vertical-align: -0.15em;
    fill: currentColor;
    flex-shrink: 0;
}

/* Typography Helpers */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-teal { color: var(--secondary); }
.text-navy { color: var(--primary); }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(42, 157, 143, 0.1);
    color: var(--secondary-dark);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
    border: 1px solid var(--border-teal);
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
}

.section-title {
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-title.light {
    color: #ffffff;
}

.section-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.12rem);
    color: var(--text-secondary);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 38px;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.85);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.94rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(42, 157, 143, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(42, 157, 143, 0.45);
    color: #ffffff;
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #ffffff;
}

.btn-pulse {
    animation: pulseBtn 2.2s infinite;
}

@keyframes pulseBtn {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   TOP BAR & HEADER (COMPACT & 1 LINE FIX)
   ========================================================================== */

.top-bar {
    background: #08243e;
    color: #ffffff;
    font-size: 0.82rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #4ade80;
    flex-shrink: 0;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.4); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

.top-bar-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.top-bar-right a {
    color: rgba(255, 255, 255, 0.95);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.top-bar-right a:hover {
    color: #48bcae;
}

/* Header & Navbar */
.site-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
}

.brand-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo img {
    height: 48px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    min-width: 0;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 6px 2px;
    position: relative;
    white-space: nowrap;
    display: inline-block;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-cta .btn {
    padding: 10px 18px;
    font-size: 0.88rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: var(--primary);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding: 50px 0 70px;
    background: linear-gradient(135deg, #f0f6fa 0%, #e8f4f8 50%, #f4faf8 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.18;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.hero-title span {
    color: var(--secondary);
    position: relative;
}

.hero-lead {
    font-size: clamp(1.02rem, 1.8vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.hero-trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    padding-top: 22px;
    border-top: 1px solid rgba(13, 59, 102, 0.1);
}

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

.trust-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.trust-text {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid #ffffff;
}

.hero-image-wrapper img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.floating-card-urgent {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: #ffffff;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--secondary);
    max-width: 270px;
}

.floating-card-urgent .card-icon {
    width: 40px;
    height: 40px;
    background: rgba(42, 157, 143, 0.12);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card-urgent h4 {
    font-size: 0.86rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2px;
}

.floating-card-urgent p {
    font-size: 0.76rem;
    color: var(--text-muted);
}

/* Urgent Ribbon */
.urgent-banner {
    background: #092c4c;
    color: #ffffff;
    padding: 20px 0;
}

.urgent-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.urgent-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.urgent-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(42, 157, 143, 0.2);
    color: var(--secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.urgent-text h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 3px;
}

.urgent-text p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   PERSONALIZÁ EL PLAN DE CUIDADO (REFINADO & ATRACTIVO)
   ========================================================================== */
.plan-consult {
    padding: 72px 0;
    background: #fff;
}
.plan-consult-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: stretch;
}
.plan-consult-visual img {
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
.plan-consult-caption {
    margin-top: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
}
.plan-consult-form {
    background: var(--bg-soft-blue);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
}
.plan-consult-lead {
    color: var(--text-secondary);
    margin: 0 0 24px;
    max-width: 46ch;
}
.plan-fields {
    display: grid;
    gap: 16px;
    margin-bottom: 22px;
}
.plan-field span {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}
.plan-field select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    background: #fff;
    font-weight: 600;
    color: var(--text-primary);
}
.plan-field select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.15);
}
.plan-summary {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 18px;
    border: 1px solid var(--border-teal);
}
.plan-summary > p {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary-dark);
    margin-bottom: 10px;
}
.plan-summary .btn {
    margin-top: 16px;
    width: 100%;
}
@media (max-width: 900px) {
    .plan-consult-grid {
        grid-template-columns: 1fr;
    }
    .plan-consult-visual img {
        max-height: 280px;
    }
}

.plan-builder-section {
    padding: 76px 0;
    background: #ffffff;
}

.plan-builder-card {
    background: #ffffff;
    border: 1.5px solid var(--border-teal);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 12px 36px rgba(13, 59, 102, 0.07);
    max-width: 980px;
    margin: 0 auto;
}

.builder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.builder-step-box {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 18px;
    transition: var(--transition);
}

.builder-step-box:focus-within,
.builder-step-box:hover {
    border-color: var(--secondary);
    background: var(--bg-soft-teal);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.step-num-badge {
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.76rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-header h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
}

.custom-select-wrap {
    position: relative;
}

.custom-select-wrap select {
    width: 100%;
    padding: 10px 14px;
    background: #ffffff;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

.custom-select-wrap select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.15);
}

.builder-result-panel {
    background: linear-gradient(135deg, #f0fdf9 0%, #f0f6fa 100%);
    border-radius: var(--radius-md);
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    border: 1px solid var(--border-teal);
}

.result-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.pill-tag {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.result-info h4 {
    font-size: 0.94rem;
    font-weight: 800;
    color: var(--primary);
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-section {
    padding: 84px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(42, 157, 143, 0.4);
}

.service-card-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

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

.service-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(13, 59, 102, 0.92);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.service-badge.teal {
    background: rgba(42, 157, 143, 0.95);
}

.service-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-body h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-card-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-card-body p.card-for {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.92rem;
    line-height: 1.35;
}

.service-features-list {
    margin-bottom: 20px;
    margin-top: auto;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.84rem;
    color: var(--text-secondary);
    margin-bottom: 7px;
}

.service-features-list li .icon-svg {
    color: var(--secondary);
    margin-top: 3px;
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.service-card-footer a {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--secondary-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card-footer a:hover {
    color: var(--primary);
}

/* ==========================================================================
   CUIDAMOS AL CUIDADOR (CON FOTO DE ADULTO MAYOR)
   ========================================================================== */
.caregiver-section {
    padding: 84px 0;
    background: linear-gradient(135deg, #092642 0%, #0d3b66 60%, #104875 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.caregiver-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}

.caregiver-content h2 {
    font-size: clamp(1.85rem, 3.4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.22;
    margin-bottom: 18px;
}

.caregiver-content p {
    font-size: 1.02rem;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 26px;
}

.relief-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.relief-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.relief-item h4 {
    font-size: 0.94rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary-light);
}

.relief-item p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0;
    line-height: 1.45;
}

.caregiver-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(255, 255, 255, 0.18);
}

.caregiver-image-wrapper img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

/* ==========================================================================
   BILINGUAL CARE
   ========================================================================== */
.bilingual-section {
    padding: 76px 0;
    background: #ffffff;
}

.bilingual-card {
    background: linear-gradient(135deg, #f0f6fa 0%, #e6f3f8 100%);
    border-radius: var(--radius-lg);
    border: 2px solid #bce1ec;
    padding: 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: center;
}

.bilingual-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.bilingual-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.language-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.lang-pill {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-sm);
}

.lang-code {
    background: rgba(42, 157, 143, 0.15);
    color: var(--secondary-dark);
    font-size: 0.68rem;
    padding: 2px 6px;
    border-radius: 4px;
}

.bilingual-visual img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    height: 270px;
    width: 100%;
    object-fit: cover;
}

/* ==========================================================================
   PROCESS, HOSPITALS, TESTIMONIALS, FAQ
   ========================================================================== */
.process-section {
    padding: 84px 0;
    background: var(--bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.process-step {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(42, 157, 143, 0.3);
}

.process-step h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.sanatorios-section {
    padding: 76px 0;
    background: #ffffff;
}

.sanatorios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    margin-top: 32px;
}

.sanatorio-item {
    background: var(--bg-light);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--primary);
    transition: var(--transition);
}

.sanatorio-item:hover {
    background: #ffffff;
    border-color: var(--secondary);
    box-shadow: var(--shadow-sm);
    transform: translateX(3px);
}

.sanatorio-item .icon-svg {
    color: var(--secondary);
}

.testimonials-section {
    padding: 84px 0;
    background: var(--bg-soft-blue);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-author {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(13, 59, 102, 0.1);
    color: var(--primary);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
}

.author-info h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary);
}

.author-info p {
    font-size: 0.76rem;
    color: var(--text-muted);
}

/* FAQ */
.faq-section {
    padding: 84px 0;
    background: #ffffff;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    background: #ffffff;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--secondary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 18px 22px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--secondary);
    transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 22px 20px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Contact */
.contact-section {
    padding: 84px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.contact-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.channel-item:hover {
    background: #ffffff;
    border-color: var(--secondary);
    transform: translateX(3px);
    box-shadow: var(--shadow-sm);
}

.channel-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(42, 157, 143, 0.12);
    color: var(--secondary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.channel-icon.wp {
    background: rgba(37, 211, 102, 0.15);
    color: #20ba5a;
}

.channel-icon.ig {
    background: rgba(225, 48, 108, 0.12);
    color: #e1306c;
}

.channel-icon.fb {
    background: rgba(24, 119, 242, 0.12);
    color: #1877f2;
}

.channel-info h4 {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2px;
}

.channel-info p {
    font-size: 0.84rem;
    color: var(--text-muted);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group label {
    display: block;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.15);
}

/* SEO Silo */
.seo-silo-section {
    padding: 50px 0;
    background: #ffffff;
    border-top: 1px solid var(--border-light);
}

.seo-silo-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.seo-silo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.seo-silo-link {
    font-size: 0.84rem;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.seo-silo-link:hover {
    color: var(--secondary-dark);
    background: var(--bg-soft-teal);
    transform: translateX(3px);
}

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1.1fr;
    gap: 36px;
    margin-bottom: 44px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: #ffffff;
    position: relative;
    padding-bottom: 6px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--secondary);
}

.footer-brand p {
    font-size: 0.86rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 18px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.86rem;
    color: #94a3b8;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-contact-info p {
    font-size: 0.86rem;
    color: #94a3b8;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact-info p .icon-svg {
    color: var(--secondary-light);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
}

.footer-credit {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.74rem;
    font-weight: 400;
    color: #64748b;
}

.footer-credit a {
    color: #94a3b8;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: var(--secondary-light);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    right: max(20px, env(safe-area-inset-right, 0px));
    bottom: max(20px, calc(20px + env(safe-area-inset-bottom, 0px)));
    z-index: 1500;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
    color: #ffffff;
}

.whatsapp-float-icon {
    width: 30px;
    height: 30px;
}

/* Toast */
.toast-notice {
    position: fixed;
    bottom: 86px;
    right: 20px;
    background: var(--primary);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    display: none;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    border-left: 4px solid var(--secondary);
}

.toast-notice.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1100px) {
    .navbar {
        height: 64px;
    }
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
        border-top: 1px solid var(--border-light);
        gap: 14px;
        white-space: normal;
        z-index: 1001;
        overflow-y: auto;
        max-height: calc(100vh - 64px);
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-cta {
        display: none;
    }
}

@media (max-width: 1080px) {
    .nav-menu {
        gap: 12px;
    }
    .nav-link {
        font-size: 0.82rem;
    }
    .hero-grid, .caregiver-grid, .bilingual-card, .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .builder-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 5px 0;
    }
    .top-bar-inner {
        justify-content: space-between;
        font-size: 0.76rem;
    }
    .top-bar-desc {
        display: none;
    }
    .navbar {
        height: 64px;
    }
    .brand-logo img {
        height: 42px;
    }
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
        border-top: 1px solid var(--border-light);
        gap: 14px;
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-link {
        font-size: 0.95rem;
        padding: 6px 0;
    }
    .nav-cta {
        display: none;
    }
    .hero {
        padding: 32px 0 48px;
    }
    .floating-card-urgent {
        position: static;
        margin-top: 14px;
        max-width: 100%;
    }
    .services-grid, .relief-points, .footer-grid {
        grid-template-columns: 1fr;
    }
    .plan-builder-card {
        padding: 20px 16px;
    }
    .whatsapp-float {
        right: max(16px, env(safe-area-inset-right, 0px));
        bottom: max(20px, calc(20px + env(safe-area-inset-bottom, 0px)));
        width: 52px;
        height: 52px;
    }
    .whatsapp-float-icon {
        width: 26px;
        height: 26px;
    }
    .tab-bar {
        grid-template-columns: 1fr;
    }
    .tab-panel-grid,
    .inner-hero-grid,
    .services-grid.four {
        grid-template-columns: 1fr;
    }
    .cost-table-wrap {
        overflow-x: auto;
    }
    .has-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        padding: 0 0 0 12px;
        border: 0;
    }
    .has-dropdown.open .dropdown-menu {
        display: block;
    }
}

/* Dropdown nav */
.has-dropdown {
    position: relative;
}
.nav-dropdown-btn {
    background: none;
    border: 0;
    cursor: pointer;
    font: inherit;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: var(--transition);
    z-index: 20;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.dropdown-menu a:hover {
    background: var(--bg-soft-teal);
    color: var(--primary);
}

/* Care tabs */
.services-map-section {
    padding: 64px 0 20px;
    background: var(--bg-light);
}
.services-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.services-map-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    display: block;
    box-shadow: var(--shadow-sm);
}
.services-map-card.primary {
    border-color: var(--secondary);
    background: linear-gradient(180deg, #f0fdf9 0%, #fff 48%);
}
.services-map-kicker {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary-dark);
    margin-bottom: 8px;
}
.services-map-card h3 {
    color: var(--primary);
    font-size: 1.35rem;
    margin-bottom: 10px;
}
.services-map-card > p {
    color: var(--text-secondary);
    margin-bottom: 14px;
}
.services-map-link {
    display: inline-block;
    margin-top: 8px;
    font-weight: 800;
    color: var(--secondary-dark);
}
.price-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.price-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
}
.price-card.featured {
    background: #fff;
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}
.price-card h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.price-card .price-value {
    font-size: 2rem;
}
.price-card .btn {
    width: 100%;
    margin-top: auto;
}
.price-where {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 14px;
}
.section-footnote {
    text-align: center;
    margin-top: 22px;
    font-size: 0.88rem;
    color: var(--text-muted);
}
.section-footnote a {
    color: var(--secondary-dark);
    font-weight: 700;
}
.service-card .check-list {
    margin-bottom: 12px;
}
.service-card .check-list li {
    font-size: 0.86rem;
    padding: 3px 0 3px 24px;
}
@media (max-width: 900px) {
    .services-map,
    .price-cards {
        grid-template-columns: 1fr;
    }
}

.care-tabs-section {
    padding: 36px 0 48px;
    background: #fff;
}
.care-tabs-section .section-title,
.care-tabs-section .section-subtitle,
.other-boxes-section .section-title {
    text-align: center;
}
.tab-panel-grid .flyer-card img {
    height: auto;
    max-height: 420px;
    object-fit: contain;
}
.other-boxes-section {
    padding: 12px 0 48px;
    background: var(--bg-light);
}
.other-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 720px;
    margin: 24px auto 0;
}
.other-box {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 18px 14px;
    text-align: center;
    font-weight: 800;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}
.landing-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 18px;
    scroll-margin-top: 90px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.landing-block h3 {
    color: var(--primary);
    margin-bottom: 8px;
}
.landing-block img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: var(--radius-md);
}
.landing-empty {
    padding: 48px 0;
    background: #fff;
    min-height: 140px;
    scroll-margin-top: 90px;
}
#cuidamos,
#otros-servicios,
#contacto {
    scroll-margin-top: 90px;
}
@media (max-width: 768px) {
    .landing-block {
        grid-template-columns: 1fr;
    }
}
.contact-slim .section-title {
    width: 100%;
    margin-bottom: 8px;
}
.contact-slim .container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.tab-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 0 auto 28px;
    max-width: 820px;
    background: var(--bg-soft-blue);
    padding: 8px;
    border-radius: var(--radius-lg);
}
.tab-btn {
    border: 0;
    background: transparent;
    padding: 14px 12px;
    border-radius: var(--radius-md);
    font-weight: 800;
    color: var(--primary);
    cursor: pointer;
}
.tab-btn.active {
    background: var(--primary);
    color: #fff;
}
.tab-panel {
    display: none;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}
.tab-panel.active {
    display: block;
}
.tab-panel[hidden] {
    display: none !important;
}
.tab-panel-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}
.tab-panel-grid img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
.price-kicker {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--secondary-dark);
    margin-bottom: 6px;
}
.price-value {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 6px;
}
.price-note {
    color: var(--text-muted);
    margin-bottom: 18px;
}
.check-list {
    margin: 0 0 22px;
}
.check-list li {
    position: relative;
    padding: 6px 0 6px 28px;
    color: var(--text-secondary);
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 800;
}
.card-for {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 10px;
    line-height: 1.35;
}
.services-map-card .card-for,
.price-card .card-for {
    margin-bottom: 12px;
}
.services-grid.four {
    grid-template-columns: 1fr 1fr;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}
.card-price {
    font-weight: 800;
    color: var(--primary);
    margin: 8px 0 12px;
}
.inner-hero-empty .btn {
    margin: 8px 6px 0;
}
.service-card-footer-link {
    color: var(--secondary-dark);
    font-weight: 700;
    margin-top: auto;
}
.contact-cta-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}
.fine-print {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.card-kicker {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary-dark);
    margin-bottom: 6px;
}

/* Inner pages */
.inner-hero {
    padding: 56px 0 40px;
    background: linear-gradient(135deg, #f0f6fa 0%, #f4faf8 100%);
}
.inner-hero h1 {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    color: var(--primary);
    line-height: 1.2;
    margin: 12px 0 16px;
}
.inner-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
}
.inner-hero-grid img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
.inner-hero-empty {
    text-align: center;
    padding: 90px 0;
}
.inner-body {
    padding: 48px 0 80px;
    background: #fff;
}
.inner-body h2 {
    color: var(--primary);
    margin: 8px 0 18px;
}
.mini-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}
.mini-badges span {
    background: var(--bg-soft-teal);
    color: var(--secondary-dark);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: var(--radius-full);
}
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.pillar-grid article {
    background: var(--bg-soft-blue);
    border-radius: var(--radius-md);
    padding: 18px;
}
.pillar-grid h3 {
    color: var(--primary);
    margin-bottom: 6px;
}
.lang-line {
    font-weight: 700;
    color: var(--primary);
    margin: 8px 0 16px;
}
.cost-table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0 20px;
    background: #fff;
}
.cost-table th,
.cost-table td {
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
}
.cost-table th {
    background: var(--primary);
    color: #fff;
}
.cost-table tr:hover td {
    background: var(--bg-soft-teal);
}

@media (max-width: 1080px) {
    .services-grid.four,
    .pillar-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .tab-bar,
    .tab-panel-grid,
    .inner-hero-grid,
    .services-grid.four,
    .pillar-grid {
        grid-template-columns: 1fr;
    }
    .tab-panel-grid img,
    .inner-hero-grid img {
        height: 240px;
    }
    .has-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        padding: 0 0 0 12px;
        border: 0;
    }
    .has-dropdown.open .dropdown-menu {
        display: block;
    }
}

/* Flyer gallery (home corto) */
.flyers-hero {
    padding: 18px 0 12px;
    background: #fff;
}
.flyers-seo-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}
.flyers-carousel {
    position: relative;
}
.flyers-track {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}
.flyer-card {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    cursor: zoom-in;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.flyer-card img {
    width: 100%;
    height: auto;
    display: block;
}
.flyers-arrow {
    display: none;
}
.flyers-dots {
    display: none;
}
.flyers-cta {
    display: flex;
    justify-content: center;
    margin: 22px 0 8px;
}
.contact-slim {
    padding: 8px 0 36px;
}
.contact-slim .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 28px;
    text-align: center;
}
.contact-slim a {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
}
.contact-slim a:hover {
    color: var(--secondary-dark);
}
.flyer-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(8, 24, 40, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.flyer-lightbox[hidden] {
    display: none;
}
.flyer-lightbox img {
    max-width: min(1100px, 96vw);
    max-height: 92vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}
.flyer-lightbox-close {
    position: absolute;
    top: 12px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}
@media (max-width: 900px) {
    .flyers-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 0;
        scrollbar-width: none;
    }
    .flyers-track::-webkit-scrollbar {
        display: none;
    }
    .flyer-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
        box-shadow: none;
    }
    .flyers-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 42%;
        z-index: 2;
        width: 40px;
        height: 40px;
        border: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.94);
        color: var(--primary);
        font-size: 1.6rem;
        box-shadow: var(--shadow-sm);
        cursor: pointer;
    }
    .flyers-arrow.prev { left: 6px; }
    .flyers-arrow.next { right: 6px; }
    .flyers-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 12px;
    }
    .flyers-dots button {
        width: 8px;
        height: 8px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: #c5d4e0;
        cursor: pointer;
    }
    .flyers-dots button.is-active {
        background: var(--primary);
        width: 22px;
        border-radius: 8px;
    }
    .other-boxes {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   CAMPO 1 — Cuidamos tu familiar (look flyers SIM)
   ========================================================================== */
.campo1 {
    background: #f4f8fb;
}
.campo1-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(42, 157, 143, 0.12) 0 8px, transparent 9px),
        radial-gradient(circle at 18% 28%, rgba(13, 59, 102, 0.08) 0 5px, transparent 6px),
        linear-gradient(135deg, #ffffff 0%, #eef6fb 55%, #e4f4f2 100%);
    padding: 36px 0 0;
}
.campo1-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: end;
}
.campo1-hero-copy {
    padding: 12px 0 48px;
}
.campo1-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 18px;
}
.campo1-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7ee0d4;
    box-shadow: 0 0 0 4px rgba(126, 224, 212, 0.25);
}
.campo1-hero h1 {
    font-size: clamp(2.2rem, 4.6vw, 3.4rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.campo1-heart-line {
    display: block;
    width: 120px;
    height: 10px;
    margin: 0 0 14px;
    background:
        radial-gradient(circle at 50% 50%, var(--secondary) 0 3px, transparent 4px),
        linear-gradient(var(--secondary), var(--secondary));
    background-repeat: no-repeat;
    background-position: center, 0 4px;
    background-size: 10px 10px, 100% 2px;
}
.campo1-hero-copy .campo1-kicker {
    color: var(--secondary);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.campo1-lead {
    font-size: 1.08rem;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 36ch;
    margin-bottom: 18px;
}
.campo1-banner {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.45;
    padding: 14px 18px;
    border-radius: 10px;
    max-width: 42ch;
    margin-bottom: 20px;
}
.campo1-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}
.campo1-trust span {
    background: #fff;
    color: var(--primary);
    border: 1.5px solid #b7e4de;
    border-radius: var(--radius-full);
    padding: 8px 14px;
    font-size: 0.82rem;
    font-weight: 700;
}
.campo1-hero-photo {
    position: relative;
    padding: 0 0 36px;
    border: 0;
    background: none;
    cursor: zoom-in;
    width: 100%;
}
.campo1-hero-photo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 540px;
    object-fit: contain;
    object-position: center top;
    border-radius: 22px;
    box-shadow: var(--shadow-xl);
    background: #fff;
}
.campo1-body {
    padding: 28px 0 48px;
}
.campo1-prices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: -28px;
    position: relative;
    z-index: 2;
}
.campo1-price {
    background: #fff;
    border: 1.5px solid #b9dce8;
    border-radius: 16px;
    padding: 22px 20px 20px;
    box-shadow: var(--shadow-md);
}
.campo1-price.is-featured {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-6px);
}
.campo1-price-label {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--secondary-dark);
    margin-bottom: 8px;
}
.campo1-price.is-featured .campo1-price-label {
    color: #7ee0d4;
}
.campo1-price-value {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
}
.campo1-price.is-featured .campo1-price-value {
    color: #fff;
}
.campo1-price-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}
.campo1-price.is-featured .campo1-price-note {
    color: rgba(255, 255, 255, 0.82);
}
.campo1-promos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}
.campo1-promo {
    display: grid;
    grid-template-columns: 148px 1fr;
    gap: 0;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}
.campo1-promo.is-night {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.campo1-promo-photo {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: none;
    cursor: zoom-in;
}
.campo1-promo-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
    max-height: 240px;
    object-fit: cover;
    object-position: 88% 50%;
}
.campo1-promo > div {
    padding: 20px 18px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.campo1-promo h2 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    margin: 4px 0 8px;
    letter-spacing: -0.02em;
}
.campo1-promo p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.45;
    margin-bottom: 14px;
}
.campo1-promo .campo1-kicker {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary);
    margin: 0;
}
.campo1-promo.is-night h2,
.campo1-promo.is-night p {
    color: #fff;
}
.campo1-promo.is-night .campo1-kicker {
    color: #7ee0d4;
}
.campo1-promo .btn {
    align-self: flex-start;
}
.campo1-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}
.campo1-chips span {
    background: var(--secondary);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 10px 14px;
    border-radius: 8px;
}
.campo1-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 22px;
}
.campo1-shot {
    display: block;
    width: 100%;
    padding: 10px;
    border: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: var(--shadow-sm);
    height: 280px;
}
.campo1-shot img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
}

@media (max-width: 980px) {
    .campo1-hero-grid,
    .campo1-prices,
    .campo1-promos,
    .campo1-gallery {
        grid-template-columns: 1fr;
    }
    .campo1-hero-photo img {
        max-height: 420px;
        border-radius: 16px;
    }
    .campo1-prices {
        margin-top: 18px;
    }
    .campo1-price.is-featured {
        transform: none;
    }
    .campo1-promo {
        grid-template-columns: 120px 1fr;
    }
    .campo1-promo-photo img {
        min-height: 180px;
        max-height: 200px;
    }
    .campo1-shot {
        height: 240px;
    }
}

/* ==========================================================================
   CAMPO 2 — Otros servicios
   ========================================================================== */
.campo2 {
    padding: 28px 0 56px;
    background: #fff;
}
.campo2 .section-title {
    text-align: center;
    margin-bottom: 8px;
}
.campo2-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 8px 0 28px;
}
.campo2-nav a {
    background: var(--primary);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 10px 16px;
    border-radius: var(--radius-full);
}
.campo2-nav a:hover {
    background: var(--secondary);
    color: #fff;
}
.campo2-block {
    display: grid;
    grid-template-columns: minmax(0, 280px) 1fr;
    gap: 22px;
    align-items: center;
    background: var(--bg-soft-blue);
    border-radius: 20px;
    padding: 18px;
    margin-bottom: 16px;
    scroll-margin-top: 96px;
}
.campo2-block.is-silver {
    background: linear-gradient(135deg, #f4f7fb 0%, #e8eef6 100%);
}
.campo2-block h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    margin: 4px 0 8px;
}
.campo2-block > div > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
}
.campo2-block > div > p.campo2-kicker {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary-dark);
    margin: 0;
}
.campo2-block > div > p.campo2-price {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    margin: 0 0 8px;
}
.campo2-flyer {
    display: block;
    width: 100%;
    height: 240px;
    padding: 8px;
    border: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: var(--shadow-sm);
}
.campo2-flyer img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
}
.campo2-flyers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.campo2-flyers .campo2-flyer {
    height: 220px;
}
.campo2-extras {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 22px;
}
.campo2-shot {
    display: block;
    width: 100%;
    height: 220px;
    padding: 8px;
    border: 0;
    background: var(--bg-soft-blue);
    border-radius: 16px;
    overflow: hidden;
    cursor: zoom-in;
}
.campo2-shot img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
}

@media (max-width: 980px) {
    .campo2-block {
        grid-template-columns: 1fr;
    }
    .campo2-flyer,
    .campo2-flyers .campo2-flyer {
        height: 260px;
    }
    .campo2-extras {
        grid-template-columns: 1fr 1fr;
    }
    .campo2-shot {
        height: 200px;
    }
}

/* ==========================================================================
   5 CAMPOS — galería de piezas en orden
   ========================================================================== */
.campo-section {
    padding: 36px 0 44px;
    background: #fff;
    scroll-margin-top: 90px;
}
#inicio {
    padding-top: 16px;
}
.campo-section.is-alt {
    background: var(--bg-light);
}
.campo-title {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    margin: 0 0 8px;
}
.campo-sub {
    text-align: center;
    color: var(--secondary-dark);
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 0 22px;
}
.campo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
}
.campo-grid .flyer-card {
    scroll-margin-top: 96px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.campo-grid .flyer-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: unset;
    background: none;
}
.campo-grid.is-pairs {
    grid-template-columns: 1fr;
}
.campo-cta {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}
.campo-contact-line {
    text-align: center;
    margin-top: 8px;
}
.campo-contact-line a {
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 899px) {
    .campo-section {
        padding: 20px 0 28px;
    }
    .campo-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media (min-width: 900px) {
    .campo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .campo-grid.is-pairs {
        grid-template-columns: 1fr 1fr;
    }
    .campo-grid.is-top3 {
        grid-template-columns: repeat(3, 1fr);
    }
}
