/* =============================================
   MENTE SANA BY DR - MODERN STYLES
   ============================================= */

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

:root {
    /* Colors - Professional & Calming Palette */
    --primary: #2B5B6E;
    --secondary: #5FA8BA;
    --accent: #E8845C;
    --success: #25D366;
    --text-dark: #1A1A1A;
    --text-medium: #4A5568;
    --text-light: #718096;
    --bg-cream: #FFF8F3;
    --bg-blue: #EBF5F7;
    --bg-peach: #FFF0EB;
    --white: #FFFFFF;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(43, 91, 110, 0.08);
    --shadow-md: 0 4px 16px rgba(43, 91, 110, 0.12);
    --shadow-lg: 0 8px 32px rgba(43, 91, 110, 0.16);
    
    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-dark);
}

/* === HEADER === */
.header {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-blue) 100%);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(95, 168, 186, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.by-dr {
    font-weight: 400;
    font-style: italic;
}

.nav-desktop {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-desktop a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-desktop a:hover {
    color: var(--primary);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--success), #20BA5A);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-top: 1px solid rgba(95, 168, 186, 0.1);
}

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

.nav-mobile a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-mobile a:hover {
    background: var(--bg-blue);
    color: var(--primary);
}

/* === INTRO DESTACADO === */
.intro-destacado {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 50%, var(--bg-blue) 100%);
    padding: 4rem 1.5rem;
    text-align: center;
    border-bottom: 3px solid rgba(232, 132, 92, 0.2);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-headline {
    font-size: 2.25rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-text {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.7;
    font-weight: 400;
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, #EBF5F7 0%, #FFF8F3 50%, #FFF0EB 100%);
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(95, 168, 186, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(95, 168, 186, 0.15), rgba(232, 132, 92, 0.15));
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(95, 168, 186, 0.2);
}

.hero-content h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-medium);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--success), #20BA5A);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--success), #20BA5A);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--primary);
    padding: 1.25rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid rgba(95, 168, 186, 0.3);
    box-shadow: var(--shadow-sm);
}

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

.instagram-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.instagram-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.instagram-link svg {
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}



.hero-image {
    animation: fadeInRight 0.8s ease-out 0.2s both;
    position: relative;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-frame {
    position: relative;
    text-align: center;
}

.image-frame img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 12px 48px rgba(43, 91, 110, 0.25);
    border: 6px solid var(--white);
    display: block;
    margin: 0 auto 2rem;
}

.doctor-card {
    background: linear-gradient(135deg, var(--white), var(--bg-blue));
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 3px solid rgba(95, 168, 186, 0.2);
    position: relative;
}

.doctor-card::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
}

.doctor-card h3 {
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.doctor-card p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.experience-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(232, 132, 92, 0.15), rgba(255, 177, 153, 0.15));
    color: var(--accent);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(232, 132, 92, 0.25);
}

/* === SECTIONS === */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.section-label {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

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

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 3rem;
}

/* === ABOUT SECTION === */
.about-section {
    background: var(--bg-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.about-text .lead-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, var(--bg-blue), var(--white));
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
    margin-top: 2rem;
}

.highlight-box h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.highlight-box p {
    margin: 0;
    line-height: 1.8;
}

.qualifications-card {
    background: linear-gradient(135deg, var(--white), var(--bg-blue));
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.qualification-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.qualification-item .icon {
    color: var(--accent);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.qualification-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.qualification-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* === SERVICES SECTION === */
.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-cream);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(95, 168, 186, 0.3);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--bg-blue), var(--white));
    border: 2px solid var(--secondary);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.service-price {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-serif);
}

.period {
    color: var(--text-light);
    font-size: 1rem;
    margin-left: 0.5rem;
}

.service-price-group {
    margin-bottom: 1.5rem;
}

.service-price-alt {
    margin-top: 0.75rem;
    opacity: 0.85;
}

.price-small {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-serif);
}

.service-description {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.service-package {
    background: rgba(95, 168, 186, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    position: relative;
}

.popular-small {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.package-validity {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}


.service-note {
    background: rgba(232, 132, 92, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-style: italic;
}

.btn-service {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 1.25rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-service:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* === PROCESS SECTION === */
.process-section {
    background: var(--bg-blue);
    padding: 3rem;
    border-radius: 16px;
    margin-top: 4rem;
}

.process-section h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

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

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

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), #FF9A7A);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.process-step h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* === INFO GRID === */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.info-card .small {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* === BENEFITS SECTION === */
.benefits-section {
    background: var(--bg-cream);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.stars {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial p {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.author {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* === FAQ SECTION === */
.faq-section {
    background: var(--bg-blue);
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.faq-cta {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: var(--shadow-md);
}

.faq-cta h3 {
    margin-bottom: 1rem;
}

.faq-cta p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

/* === FINAL CTA === */
.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 5rem 1.5rem;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    color: var(--primary);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.cta-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* === FOOTER === */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.disclaimer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.disclaimer strong {
    color: var(--white);
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-container,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .intro-headline {
        font-size: 1.75rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .header-content {
        padding: 1rem 1.5rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .header-cta {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .intro-destacado {
        padding: 3rem 1rem;
    }
    
    .intro-headline {
        font-size: 1.5rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero-content h2 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .image-frame img {
        width: 220px;
        height: 220px;
    }
    
    .section-container {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
}

/* ============================================
   TERMS AND CONDITIONS PAGE STYLES
   ============================================ */

.terms-hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 50%, var(--bg-blue) 100%);
    text-align: center;
}

.terms-label {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.terms-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.terms-date {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.terms-notice {
    padding: 2rem 0;
    background: var(--white);
}

.notice-box {
    background: linear-gradient(135deg, rgba(232, 132, 92, 0.1) 0%, rgba(232, 132, 92, 0.05) 100%);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.notice-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice-content h3 {
    margin-bottom: 0.5rem;
    color: var(--accent);
    font-size: 1.25rem;
}

.notice-content p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
}

.terms-content {
    padding: 3rem 0;
    background: var(--white);
}

.term-section {
    margin-bottom: 3rem;
}

.term-section h2 {
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(43, 91, 110, 0.1);
}

.term-section h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.term-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.term-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.term-section li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.term-section strong {
    color: var(--primary);
    font-weight: 600;
}

.warning-box {
    background: linear-gradient(135deg, rgba(232, 132, 92, 0.15) 0%, rgba(232, 132, 92, 0.08) 100%);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.warning-box strong {
    display: block;
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.warning-box p {
    margin: 0;
}

.example-box {
    background: var(--bg-blue);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--secondary);
}

.example-box strong {
    color: var(--secondary);
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.policy-card {
    background: var(--white);
    border: 2px solid rgba(43, 91, 110, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition);
}

.policy-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.policy-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.policy-card h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.policy-card p {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.policy-card ul {
    margin-left: 1.5rem;
}

.policy-card li {
    font-size: 0.95rem;
    line-height: 1.6;
}

.package-info {
    background: linear-gradient(135deg, var(--bg-blue) 0%, rgba(235, 245, 247, 0.5) 100%);
    border-left: 4px solid var(--primary);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.package-info h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.package-info ul {
    margin-left: 1.5rem;
}

.package-info li {
    margin-bottom: 0.75rem;
}

.package-note {
    font-style: italic;
    color: var(--text-medium);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(43, 91, 110, 0.1);
}

.commitments-list {
    list-style: none;
    margin-left: 0;
}

.commitments-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.commitments-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.disclaimer-text {
    background: var(--bg-cream);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-style: italic;
}

.terms-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--bg-blue) 0%, var(--bg-cream) 100%);
    border-radius: 16px;
}

.terms-cta .cta-primary {
    margin-bottom: 1.5rem;
}

.terms-cta p {
    margin: 0;
    color: var(--text-medium);
}

.terms-cta a:not(.cta-primary) {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.terms-cta a:not(.cta-primary):hover {
    color: var(--secondary);
}

/* Responsive for Terms Page */
@media (max-width: 768px) {
    .terms-hero {
        padding: 4rem 0 2rem;
    }
    
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-subtitle {
        font-size: 1.1rem;
    }
    
    .notice-box {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-grid {
        grid-template-columns: 1fr;
    }
    
    .term-section h2 {
        font-size: 1.5rem;
    }
    
    .terms-cta {
        padding: 2rem 1.5rem;
    }
}