:root {
    /* Color Palette */
    --primary-blue: #0A2640; /* Dark Navy for header/buttons */
    --accent-blue: #043873; /* Rich Blue */
    --primary-teal: #0d9488; /* Vivid Logo Teal */
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    
    /* Pillar Colors */
    --pillar1-color: #0d9488;
    --pillar1-bg: #e6f7f5;
    --pillar2-color: #5b4db0;
    --pillar2-bg: #eeecf9;
    --pillar3-color: #e09d26;
    --pillar3-bg: #fdf5e8;
    --pillar4-color: #e84c7d;
    --pillar4-bg: #fdecf2;

    /* Layout */
    --container-max: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.03);
    --shadow-medium: 0 15px 40px rgba(0,0,0,0.06);
    --shadow-strong: 0 20px 50px rgba(10,38,64,0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.bg-light {
    background-color: var(--bg-light);
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

/* Header */
.site-header {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 105px;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    height: 100px;
    max-height: 100px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.logo-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-blue);
    line-height: 1.15;
}

.logo-subtitle {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    display: block;
}

.main-nav ul {
    display: flex;
    gap: 16px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-blue);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--primary-teal);
    background: rgba(18, 130, 119, 0.06);
}

/* Dropdown Menu styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    padding: 10px 0;
    min-width: 240px;
    display: flex;
    flex-direction: column !important;
    gap: 2px !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 1000;
    border: 1px solid #e2e8f0;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 10px 18px;
    font-size: 0.9rem;
    width: 100%;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 0;
    font-weight: 500;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.dropdown-menu a:hover, .dropdown-menu a.active {
    background: #f1f8f7;
    color: var(--primary-teal) !important;
    padding-left: 22px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-trigger i {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.contact-btn {
    background-color: var(--primary-teal);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: background-color 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-btn:hover {
    background-color: #0e6c62;
    transform: translateY(-1px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-toggle {
    display: none;
    background: #f1f8f7;
    color: var(--primary-teal);
    border: 1px solid rgba(18, 130, 119, 0.25);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: var(--primary-teal);
    color: #ffffff;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: var(--bg-light);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    color: var(--primary-blue);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-content h1 span {
    color: var(--primary-teal);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 95%;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin: 32px 0;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10,38,64,0.15);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
}

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

.hero-coverage {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-coverage i {
    color: var(--primary-teal);
}

.hero-carousel {
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-strong);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,38,64,0.1) 0%, rgba(10,38,64,0.3) 100%);
}

/* Nosotros / About Section */
.about-section {
    padding: 100px 0;
}

.about-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    text-align: left;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-pillar-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.3s;
}

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

.about-pillar-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.about-pillar-card.p1 .about-pillar-icon { background: var(--pillar1-bg); color: var(--pillar1-color); }
.about-pillar-card.p2 .about-pillar-icon { background: var(--pillar2-bg); color: var(--pillar2-color); }
.about-pillar-card.p3 .about-pillar-icon { background: var(--pillar3-bg); color: var(--pillar3-color); }
.about-pillar-card.p4 .about-pillar-icon { background: var(--pillar4-bg); color: var(--pillar4-color); }

.about-pillar-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
}

/* Services Detail & Procedures Section */
.services-detail-section {
    padding: 100px 0;
}

.procedures-container {
    margin-top: 50px;
}

.procedures-title {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 40px;
    font-weight: 700;
}

.procedures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.procedure-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 35px 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.procedure-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--pillar2-bg);
}

.proc-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.proc-icon {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-sm);
    background: var(--pillar2-bg);
    color: var(--pillar2-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.procedure-card h4 {
    font-size: 1.15rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.proc-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.proc-details {
    padding-left: 0;
    margin-bottom: 20px;
    list-style: none;
}

.proc-details li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}

.proc-details li::before {
    content: "•";
    color: var(--pillar2-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.proc-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pillar2-color);
    background: var(--pillar2-bg);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    margin-top: auto;
}

.procedures-cta {
    margin-top: 50px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.procedures-cta p {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 15px;
}

/* Plans Section */
.plans-section {
    padding: 100px 0;
}

.plans-include-box {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    margin-bottom: 50px;
    border-left: 5px solid var(--pillar1-color);
}

.plans-include-box h4 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

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

.include-item {
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.include-item i {
    color: var(--pillar1-color);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.plan-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.plan-header {
    background: var(--pillar1-bg);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.plan-card h3 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    font-weight: 700;
    max-width: 70%;
}

.plan-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pillar1-color);
    background: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    white-space: nowrap;
}

.plan-meta {
    padding: 15px 30px;
    background: #fafafa;
    border-bottom: 1px solid rgba(0,0,0,0.02);
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.meta-leader i, .meta-modality i {
    color: var(--pillar1-color);
    margin-right: 5px;
}

.plan-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-body h5 {
    font-size: 0.95rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.plan-body ul {
    list-style: none;
    margin-bottom: 20px;
}

.plan-body li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.plan-body li i {
    color: var(--pillar1-color);
    font-size: 0.8rem;
    margin-top: 4px;
}

.plan-footer-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px dashed #eee;
}

.plans-custom-cta {
    margin-top: 60px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.plans-custom-cta h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.plans-custom-cta p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Accompaniment Section */
.accompaniment-section {
    padding: 100px 0;
}

.acc-info-summary {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.acc-info-summary span {
    background: var(--pillar3-bg);
    color: var(--pillar3-color);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.acc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.acc-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.acc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--pillar3-bg);
}

.acc-card-header {
    background: var(--pillar3-bg);
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.02);
}

.acc-card-header h3 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 8px;
}

.acc-caption {
    font-size: 0.85rem;
    color: var(--pillar3-color);
    font-style: italic;
    font-weight: 500;
}

.acc-card-body {
    padding: 30px;
    flex-grow: 1;
}

.acc-card-body h5 {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin: 20px 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.acc-card-body h5:first-of-type {
    margin-top: 0;
}

.check-list, .bullet-list, .benefit-list {
    list-style: none;
}

.check-list li, .bullet-list li, .benefit-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.check-list li::before {
    content: "✓";
    color: var(--pillar1-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.bullet-list li::before {
    content: "•";
    color: var(--pillar3-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.benefit-list li {
    padding-left: 24px;
}

.benefit-list li::before {
    content: "💙";
    position: absolute;
    left: 0;
    font-size: 0.85rem;
}

.acc-btn {
    background-color: var(--pillar3-color);
    color: var(--white);
    margin: 0 30px 30px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.acc-btn:hover {
    background-color: #d13b69;
    color: var(--white);
    transform: translateY(-2px);
}

/* How It Works Diagram */
.how-it-works-diagram {
    max-width: 900px;
    margin: 50px auto 0;
}

.flow-diagram-img {
    border: 1px solid rgba(0,0,0,0.05);
}

/* FAQ Accordion Section */
.faq-section {
    padding: 100px 0;
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
    transition: border-color 0.2s;
}

.accordion-item:hover {
    border-color: rgba(10,38,64,0.1);
}

.accordion-header {
    width: 100%;
    padding: 22px 30px;
    text-align: left;
    background: var(--white);
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-blue);
    transition: color 0.2s;
}

.accordion-header i {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.accordion-header:hover {
    color: var(--primary-teal);
}

.accordion-item.active .accordion-header {
    color: var(--primary-teal);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    color: var(--primary-teal);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fafafa;
}

.accordion-body p {
    padding: 20px 30px 25px;
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Policies Section */
.policies-section {
    padding: 100px 0;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.policy-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.02);
}

.policy-card h4 {
    font-size: 1.15rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 12px;
}

.policy-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.policy-card ul {
    list-style: none;
}

.policy-card li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    line-height: 1.6;
}

.policy-card li::before {
    content: "•";
    color: var(--primary-teal);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Commitment Section */
.commitment-section {
    padding: 100px 0;
}

.commitment-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.02);
}

.commitment-list {
    list-style: none;
}

.commitment-list li {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.commitment-list li:last-child {
    margin-bottom: 0;
}

.chk-icon {
    color: var(--primary-teal);
    font-size: 1.1rem;
    margin-top: 2px;
}

/* Web Form Contact */
.web-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.form-group input, .form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: border-color 0.2s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-teal);
    outline: none;
}

/* Form Success Box Styles */
.form-success-box {
    text-align: center;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    animation: formFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.success-icon {
    font-size: 4.5rem;
    color: var(--primary-teal);
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 10px rgba(20, 184, 166, 0.2));
}

.form-success-box h3 {
    color: var(--primary-blue);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.form-success-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 auto 10px;
    max-width: 320px;
}

@keyframes formFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(15px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
}
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
    position: relative;
}
.step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
}
.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}
.step-icon {
    font-size: 30px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}
.step h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}
.step-line {
    flex: 1;
    height: 2px;
    background: #e0e0e0;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

/* Coverage & CTA */
.coverage-cta {
    padding: 100px 0;
}
.coverage-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.coverage-map {
    background: white;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.coverage-list li {
    margin-bottom: 15px;
    color: var(--text-muted);
}
.coverage-list i {
    color: var(--primary-blue);
    width: 25px;
}
.cta-box {
    background: var(--primary-blue);
    color: white;
    padding: 50px;
    border-radius: var(--radius-md);
}

/* Footer Social Icons */
.footer-social {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}
.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(18, 130, 119, 0.08); /* Light teal tint */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    font-size: 1.1rem;
    transition: all 0.2s ease;
}
.social-icon:hover {
    background: var(--primary-teal);
    color: white !important;
    transform: translateY(-3px);
}

/* Footer */
.site-footer {
    background: var(--pillar1-bg); /* Light Teal */
    color: #334155;
    padding: 70px 0 30px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}
.footer-links h4, .footer-contact h4 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.15rem;
    font-weight: 700;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #334155;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}
.footer-links a:hover {
    color: var(--primary-teal);
    transform: translateX(4px);
}
.footer-contact p {
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    color: #334155;
    font-weight: 500;
}
.footer-contact i {
    color: var(--primary-teal);
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(10, 38, 64, 0.1);
    padding-top: 25px;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Footer override */
.logo-container img {
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: var(--primary-teal);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--pillar1-bg);
    color: var(--pillar1-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonial-card:nth-child(2) .profile-avatar { background: var(--pillar2-bg); color: var(--pillar2-color); }
.testimonial-card:nth-child(3) .profile-avatar { background: var(--pillar3-bg); color: var(--pillar3-color); }
.testimonial-card:nth-child(4) .profile-avatar { background: var(--pillar4-bg); color: var(--pillar4-color); }

.profile-info h4 {
    font-size: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.profile-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive styles */
@media (max-width: 992px) {
    .hero-inner, .about-inner, .coverage-inner, .footer-inner {
        grid-template-columns: 1fr;
    }
    .procedures-grid, .plans-grid, .policies-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .acc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-pillars {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .site-header {
        position: sticky;
        top: 0;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        padding: 16px 20px;
        border-top: 1px solid #e2e8f0;
        border-bottom: 3px solid var(--primary-teal);
        z-index: 999;
    }

    .main-nav.mobile-active {
        display: block !important;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        width: 100%;
        justify-content: space-between;
        padding: 12px 14px;
        font-size: 1rem;
        border-radius: 8px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f8fafc;
        border-radius: 10px;
        padding: 6px 10px;
        margin-top: 4px;
        display: flex !important;
    }

    .procedures-grid, .plans-grid, .policies-grid, .acc-grid, .about-pillars {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2.4rem;
    }
    .steps-container {
        flex-direction: column;
        gap: 30px;
    }
    .step-line {
        display: none;
    }
    .acc-info-summary {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .include-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .logo-subtitle {
        display: none;
    }
    .logo-brand {
        font-size: 1.15rem;
    }
    .contact-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

/* Custom Additions for App3 Updates */
.hero-subtext {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 500;
    line-height: 1.5;
}

.hero-check-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.badge-item {
    background: #eef9f8;
    color: var(--primary-teal);
    border: 1px solid rgba(18, 130, 119, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: transform 0.2s ease, background 0.2s ease;
}

.badge-item:hover {
    transform: translateY(-2px);
    background: #e2f4f2;
}

.badge-item i {
    color: #10b981;
    font-size: 1.05rem;
}

/* Why Us 6-Column Grid Section */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.why-us-card {
    text-align: center;
    padding: 10px 18px;
    border-right: 1px solid #e1e8ed;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-us-card:last-child {
    border-right: none;
}

.why-us-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    background: #ffffff;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.why-us-card:hover .why-us-icon {
    transform: translateY(-4px);
    background-color: #eef9f8;
}

.why-us-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1.3;
}

.why-us-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .why-us-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 0;
    }
    .why-us-card:nth-child(3n) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 0;
    }
    .why-us-card {
        border-right: none;
        border-bottom: 1px solid #f0f3f5;
        padding-bottom: 20px;
    }
    .why-us-card:last-child {
        border-bottom: none;
    }
}

/* Pillars 4-Column Grid (¿Cómo podemos ayudarte?) */
.services-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-col {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-col:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.service-col h3 {
    text-align: center;
    font-size: 1.08rem;
    font-weight: 700;
    border-bottom: 1px solid #f0f3f5;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 10px 15px;
    box-sizing: border-box;
    line-height: 1.25;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    min-height: 65px;
    display: flex;
    align-items: center;
}

.service-list {
    list-style: none;
    flex-grow: 1;
}

.service-list li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: #2c3e50;
    align-items: center;
}

@media (max-width: 1100px) {
    .services-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-columns {
        grid-template-columns: 1fr;
    }
    .dermo-services-list {
        grid-template-columns: 1fr !important;
        grid-auto-flow: row !important;
    }
}

/* ==========================================================================
   Así Comienza el Cuidado Timeline Styles
   ========================================================================== */
.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 12px;
}

.step-number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary-blue, #0A2640);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 4px 10px rgba(10, 38, 64, 0.2);
    flex-shrink: 0;
}

.step-icon {
    font-size: 1.8rem;
    color: var(--primary-teal, #128277);
    margin-bottom: 14px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue, #0A2640);
    margin-bottom: 10px;
    line-height: 1.3;
}

.step p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.55;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.step-line {
    flex: 0 0 50px;
    height: 2px;
    background: #cbd5e1;
    margin-top: 18px;
    position: relative;
    z-index: 1;
}

/* Floating Hero Experience Badge */
.hero-carousel-wrapper {
    position: relative;
}

.hero-exp-badge {
    position: absolute;
    top: -20px;
    left: -30px;
    z-index: 20;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00bac6 0%, #128277 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 186, 198, 0.35);
    border: 3px solid #ffffff;
    padding: 8px;
}

.hero-exp-badge .badge-number {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.hero-exp-badge .badge-label {
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.15;
    margin-top: 2px;
}

@media (max-width: 992px) {
    .hero-exp-badge {
        top: -15px;
        left: 10px;
        width: 95px;
        height: 95px;
    }
    .hero-exp-badge .badge-number {
        font-size: 1.7rem;
    }
    .hero-exp-badge .badge-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }
    .step-line {
        display: none;
    }
    .step {
        background: #f8fafc;
        padding: 24px;
        border-radius: 16px;
        border: 1px solid #e2e8f0;
    }
}

/* ==========================================================================
   Nuestro Compromiso Section Styles
   ========================================================================== */
.commitment-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    max-width: 1000px;
    margin: 30px auto 0;
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.commitment-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.02rem;
    font-weight: 600;
    color: #2c3e50;
    background: #f8fafc;
    padding: 16px 22px;
    border-radius: 14px;
    border-left: 5px solid var(--primary-teal, #128277);
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.commitment-list li:hover {
    transform: translateX(4px);
    background-color: #f1f8f7;
}

.chk-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(18, 130, 119, 0.12);
    color: var(--primary-teal, #128277);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* ==========================================================================
   Preguntas Frecuentes (FAQ) Accordion Styles
   ========================================================================== */
.faq-accordion {
    max-width: 920px;
    margin: 35px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover, .faq-item.active {
    border-color: var(--primary-teal, #128277);
    box-shadow: 0 8px 25px rgba(18, 130, 119, 0.08);
}

.faq-question {
    padding: 20px 26px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    gap: 16px;
    background: #ffffff;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--primary-blue, #0A2640);
    line-height: 1.4;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--primary-teal, #128277);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary-teal, #128277);
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
    background: #f8fafc;
}

.faq-answer p {
    padding: 16px 26px 22px 26px;
    margin: 0;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    border-top: 1px dashed #cbd5e1;
}






