/* =============================================
   ALETHEIA — Premium Landing Page
   Palette: Burgundy #5C1A33, Rose #C4887B,
   Peach #E8C4B0, Gold #C9A050, Cream #FDF6F0,
   Dark #2D0A1A
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Raleway:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.landing-page-aletheia {
    font-family: 'Raleway', sans-serif;
    color: #3A1F2B;
    background: #FDF6F0;
    line-height: 1.7;
    overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.3;
}

/* Gold divider reusable */
.gold-divider {
    display: flex;
    justify-content: center;
    margin: 24px 0 28px;
}
.gold-divider.left { justify-content: flex-start; }
.gold-divider span {
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C9A050, transparent);
    position: relative;
}
.gold-divider span::after {
    content: '◆';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    color: #C9A050;
    background: inherit;
}
.gold-divider.light span { background: linear-gradient(90deg, transparent, rgba(201,160,80,0.6), transparent); }
.gold-divider.light span::after { color: rgba(201,160,80,0.7); }

/* =============================================
   HEADER
   ============================================= */
.aletheia-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
}

.aletheia-header.scrolled {
    background: rgba(45, 10, 26, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.aletheia-header .logo-img { height: 45px; transition: height 0.3s; filter: invert(0.8) sepia(1) hue-rotate(300deg) saturate(5) brightness(0.6); }
.aletheia-header.scrolled .logo-img { height: 38px; }

.aletheia-header .desktop-nav { display: flex; align-items: center; gap: 30px; }
.aletheia-header .desktop-nav ul { list-style: none; display: flex; gap: 24px; }
.aletheia-header .desktop-nav a {
    color: #5C1A33;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}
.aletheia-header .desktop-nav li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C9A050;
    transition: width 0.3s;
}
.aletheia-header .desktop-nav li a:hover::after { width: 100%; }
.aletheia-header .desktop-nav a:hover { color: #C4887B; text-shadow: none; }

.aletheia-header .btn-header {
    background: linear-gradient(135deg, #C9A050, #D4AF61);
    color: #2D0A1A;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(201, 160, 80, 0.3);
}

.aletheia-header .btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 160, 80, 0.5);
}

.aletheia-header .mobile-menu-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.aletheia-header .mobile-menu-btn .bar { width: 28px; height: 2px; background: #5C1A33; transition: 0.3s; border-radius: 2px; }

.mobile-nav-overlay {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(45, 10, 26, 0.97); z-index: 2000;
    flex-direction: column; align-items: center; justify-content: center;
}
.mobile-nav-overlay.active { display: flex; }
.close-mobile-nav { position: absolute; top: 20px; right: 24px; color: #fff; font-size: 36px; cursor: pointer; }
.mobile-nav-links { list-style: none; text-align: center; }
.mobile-nav-links li { margin: 18px 0; }
.mobile-nav-links a {
    color: #fff; text-decoration: none; font-size: 1.2rem;
    font-family: 'Cormorant Garamond', serif; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase;
}
.btn-mobile-cta {
    display: inline-block; margin-top: 20px;
    background: linear-gradient(135deg, #C9A050, #D4AF61) !important;
    color: #2D0A1A !important; padding: 14px 32px; border-radius: 30px;
    font-weight: 700 !important; font-size: 0.85rem !important;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('imagenes/fondo1-aletheia.jpg') center center / cover no-repeat;
    padding: 120px 24px 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(253,246,240,0.3) 0%, rgba(253,246,240,0.05) 40%, rgba(253,246,240,0.4) 100%);
}

/* Floating particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,160,80,0.4), transparent);
    animation: particleFloat 8s ease-in-out infinite;
}
.p1 { width: 6px; height: 6px; top: 20%; left: 15%; animation-delay: 0s; }
.p2 { width: 4px; height: 4px; top: 60%; left: 80%; animation-delay: 1.5s; }
.p3 { width: 8px; height: 8px; top: 40%; left: 60%; animation-delay: 3s; }
.p4 { width: 5px; height: 5px; top: 75%; left: 25%; animation-delay: 4.5s; }
.p5 { width: 3px; height: 3px; top: 30%; left: 90%; animation-delay: 2s; }
.p6 { width: 7px; height: 7px; top: 85%; left: 50%; animation-delay: 5s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-40px) scale(1.5); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(92, 26, 51, 0.1);
    animation: heroFadeIn 1.2s ease-out;
}

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

.hero-logo {
    width: 240px;
    margin-bottom: 16px;
    filter: drop-shadow(0 8px 30px rgba(92,26,51,0.15));
    animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 8px 30px rgba(92,26,51,0.15)); }
    50% { filter: drop-shadow(0 8px 40px rgba(201,160,80,0.25)); }
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}
.hero-divider .line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C9A050);
}
.hero-divider .line:last-child { background: linear-gradient(90deg, #C9A050, transparent); }
.hero-divider .diamond { color: #C9A050; font-size: 8px; }

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: #5C1A33;
    margin-bottom: 28px;
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow: none;
}

.hero-text {
    font-size: 1.15rem;
    color: #4A2535;
    margin-bottom: 16px;
    font-weight: 400;
    line-height: 1.9;
    text-shadow: none;
}

.hero-description {
    font-size: 1.05rem;
    color: #5C1A33;
    margin-bottom: 40px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-shadow: none;
}

/* CTA Button with glow */
.btn-cta {
    display: inline-block;
    position: relative;
    background: linear-gradient(135deg, #5C1A33, #7A2845);
    color: #fff;
    padding: 18px 48px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s;
    box-shadow: 0 8px 30px rgba(92, 26, 51, 0.35);
    overflow: hidden;
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: rotate(30deg);
    animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
    0% { left: -60%; }
    50% { left: 60%; }
    100% { left: -60%; }
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(92, 26, 51, 0.5);
}

.hero-micro {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #7B5060;
    font-style: italic;
    letter-spacing: 0.3px;
    text-shadow: none;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid rgba(92,26,51,0.3);
    border-radius: 12px;
    position: relative;
}
.hero-scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: #C9A050;
    border-radius: 3px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0.3; }
}

/* =============================================
   IMAGE BANNERS (parallax strips)
   ============================================= */
.image-banner-section {
    position: relative;
    height: 300px;
    background: url('imagenes/fondo1-aletheia.jpg') center center / cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-banner-section .banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(92,26,51,0.6), rgba(45,10,26,0.7));
}

.image-banner-section .banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.banner-logo {
    width: 100px;
    margin-bottom: 16px;
    filter: brightness(10);
    opacity: 0.9;
}

.banner-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: #E8C4B0;
    letter-spacing: 2px;
}

.banner-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-style: italic;
    color: #fff;
    letter-spacing: 1px;
    opacity: 0.9;
    max-width: 600px;
}

.image-banner-section.banner-2 {
    height: 250px;
}

/* =============================================
   SECTION BG IMAGES (decorative)
   ============================================= */
.section-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    opacity: 0.06;
    pointer-events: none;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.4), transparent);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.4), transparent);
}

.what-is-bg-lotus {
    position: absolute;
    bottom: -100px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: url('imagenes/logo-aletheia.png') center / contain no-repeat;
    opacity: 0.03;
    pointer-events: none;
    transform: rotate(-15deg);
}

.transformation-bg-lotus {
    position: absolute;
    top: -50px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: url('imagenes/logo-aletheia.png') center / contain no-repeat;
    opacity: 0.03;
    pointer-events: none;
    transform: rotate(10deg);
}

.integral-bg-image {
    position: absolute;
    inset: 0;
    background: url('imagenes/fondo1-aletheia.jpg') center / cover no-repeat;
    opacity: 0.04;
    pointer-events: none;
}

/* =============================================
   SECTION ORNAMENTS
   ============================================= */
.section-ornament {
    text-align: center;
    font-size: 1rem;
    color: #C9A050;
    padding: 20px 0 0;
    letter-spacing: 8px;
    opacity: 0.5;
}

/* =============================================
   VIDEO SECTION (OVERLAPPING HERO)
   ============================================= */
.video-section {
    position: relative;
    z-index: 10;
    margin-top: -100px;
    padding: 0 0 80px;
    background: transparent;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 80px; /* Adjust to sit behind the video nicely */
    left: 0;
    width: 100%;
    height: 160px; /* The height of the ribbon */
    background: #5C1A33; /* Burgundy color */
    z-index: -1;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(92, 26, 51, 0.15);
    border: 4px solid #fff;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* =============================================
   IDENTIFICATION SECTION
   ============================================= */
.identification-section {
    padding: 80px 0 100px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.identification-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, #C9A050, transparent);
}

.section-eyebrow {
    font-size: 2.6rem;
    color: #5C1A33;
    text-align: center;
    margin-bottom: 4px;
}

.section-lead {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: #C4887B;
    margin-bottom: 8px;
}

.section-body {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 44px;
    font-size: 1rem;
    color: #5A3A48;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 850px;
    margin: 0 auto 48px;
}

.pain-point {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #FDF6F0, #F9EDE5);
    border-radius: 16px;
    border: 1px solid rgba(196, 136, 123, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.pain-point:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(92, 26, 51, 0.08);
    border-color: rgba(201, 160, 80, 0.3);
}

.pain-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    color: #C4887B;
}
.pain-icon svg { width: 100%; height: 100%; }

.pain-point p { font-size: 0.95rem; color: #3A1F2B; font-weight: 500; }

.closing-line {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: #5C1A33;
    font-weight: 500;
}

/* =============================================
   INSIGHT SECTION
   ============================================= */
.insight-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #5C1A33, #3D0F22, #2D0A1A);
    position: relative;
    overflow: hidden;
}

.insight-bg-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(201,160,80,0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(196,136,123,0.06) 0%, transparent 50%);
}

.insight-card {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 50px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    text-align: center;
}

.insight-card-glow {
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(201,160,80,0.2), transparent, rgba(196,136,123,0.15));
    z-index: -1;
    filter: blur(20px);
    opacity: 0.5;
}

.insight-title {
    font-size: 2.4rem;
    color: #E8C4B0;
    margin-bottom: 16px;
}

.insight-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.insight-image-wrapper {
    flex: 0 0 40%;
}

.insight-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    object-fit: cover;
}

.insight-lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto 8px;
    line-height: 1.8;
}

.insight-body {
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
}

.personas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 32px;
}

.persona-tag {
    background: rgba(201, 160, 80, 0.1);
    color: #E8C4B0;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 500;
    border: 1px solid rgba(201, 160, 80, 0.2);
    transition: all 0.4s;
    cursor: default;
}

.persona-tag:hover {
    background: rgba(201, 160, 80, 0.2);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(201, 160, 80, 0.15);
    border-color: rgba(201, 160, 80, 0.4);
}

.insight-closing {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(232, 196, 176, 0.85);
    line-height: 1.6;
}

/* =============================================
   WHAT IS SECTION
   ============================================= */
.what-is-section {
    padding: 100px 0;
    background: #FDF6F0;
    position: relative;
    overflow: hidden;
}

.what-is-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.what-is-left {
    flex: 0 0 40%;
    position: relative;
    padding-top: 20px;
}

.big-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 10rem;
    color: rgba(201, 160, 80, 0.12);
    position: absolute;
    top: -50px;
    left: -10px;
    line-height: 1;
    pointer-events: none;
}

.what-is-title {
    font-size: 2.8rem;
    color: #5C1A33;
    margin-bottom: 24px;
    position: relative;
}

.what-is-title em {
    color: #C4887B;
    font-style: italic;
}

.what-is-meaning {
    font-size: 1.05rem;
    color: #5A3A48;
    line-height: 2;
}

.what-is-right { flex: 1; }

.what-is-card {
    background: #fff;
    padding: 36px 40px;
    border-radius: 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(196, 136, 123, 0.12);
    box-shadow: 0 10px 40px rgba(92, 26, 51, 0.06);
    position: relative;
    overflow: hidden;
}

.what-is-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #C9A050, #C4887B);
    border-radius: 4px 0 0 4px;
}

.what-is-card h3 {
    font-size: 1.1rem;
    color: #5C1A33;
    margin-bottom: 20px;
    font-weight: 500;
}

.what-is-card ul { list-style: none; padding: 0; }

.what-is-card li {
    padding: 10px 0;
    color: #3A1F2B;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(196, 136, 123, 0.08);
}

.what-is-card li:last-child { border-bottom: none; }

.li-icon { color: #C9A050; font-size: 0.7rem; flex-shrink: 0; }

.what-is-closing {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: #5C1A33;
    line-height: 1.6;
}

.what-is-closing strong { color: #5C1A33; }

/* =============================================
   DIFERENCIAL SECTION
   ============================================= */
.diferencial-section {
    padding: 100px 0;
    background: #5C1A33;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.diferencial-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(201,160,80,0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(196,136,123,0.08) 0%, transparent 40%);
}

.diferencial-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.diferencial-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 28px;
    color: #C9A050;
    opacity: 0.5;
}
.diferencial-icon svg { width: 100%; height: 100%; }

.diferencial-lead {
    font-size: 1.05rem;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.9;
}

.diferencial-highlight {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: #E8C4B0;
    margin-bottom: 24px;
    line-height: 1.4;
    font-weight: 400;
}

.diferencial-body {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.9;
}

.diferencial-body strong { color: #E8C4B0; }

/* =============================================
   INTEGRAL SECTION
   ============================================= */
.integral-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #FDF6F0 100%);
    position: relative;
    overflow: hidden;
}

.integral-title {
    font-size: 2.4rem;
    color: #5C1A33;
    text-align: center;
    margin-bottom: 8px;
}

.integral-subtitle {
    text-align: center;
    font-size: 0.92rem;
    color: #C4887B;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

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

.integral-card {
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(196, 136, 123, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.integral-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,160,80,0.05), rgba(196,136,123,0.05));
    opacity: 0;
    transition: opacity 0.5s;
}

.integral-card:hover .integral-card-bg { opacity: 1; }

.integral-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(92, 26, 51, 0.12);
    border-color: rgba(201, 160, 80, 0.25);
}

.integral-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #C9A050;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 0px;
    transition: color 0.4s;
}

.integral-card:hover .integral-number { color: #C4887B; opacity: 1; }

.integral-icon-wrap {
    width: 44px;
    height: 44px;
    margin: 4px auto 10px;
    color: #C4887B;
    transition: color 0.4s, transform 0.4s;
}
.integral-icon-wrap svg { width: 100%; height: 100%; }
.integral-card:hover .integral-icon-wrap { color: #C9A050; transform: scale(1.1); }

.integral-card h3 {
    font-size: 1.4rem;
    color: #5C1A33;
    margin-bottom: 4px;
    font-weight: 600;
}

.integral-card p {
    font-size: 1rem;
    color: #6B4A56;
    margin: 0;
    line-height: 1.4;
}

/* =============================================
   TRANSFORMATION SECTION
   ============================================= */
.transformation-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.transformation-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.transformation-left {
    flex: 0 0 38%;
    position: sticky;
    top: 120px;
}

.transformation-title {
    font-size: 2.4rem;
    color: #5C1A33;
    line-height: 1.3;
    margin-bottom: 16px;
}

.transformation-right { flex: 1; }

.transformation-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 4px;
    border-radius: 16px;
    transition: all 0.4s;
    border: 1px solid transparent;
}

.transformation-item:hover {
    background: linear-gradient(135deg, #FDF6F0, #F9EDE5);
    border-color: rgba(201, 160, 80, 0.15);
    transform: translateX(8px);
}

.t-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #C9A050;
    font-weight: 300;
    opacity: 0.5;
    flex-shrink: 0;
    min-width: 36px;
    transition: opacity 0.3s;
}

.transformation-item:hover .t-number { opacity: 1; }

.transformation-item p {
    font-size: 1.02rem;
    color: #3A1F2B;
}

/* =============================================
   FACILITADORA SECTION
   ============================================= */
.facilitadora-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F9EDE5, #FDF6F0);
    position: relative;
    overflow: hidden;
}

.facilitadora-bg-shape {
    position: absolute;
    width: 600px; height: 600px;
    top: -200px; right: -200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,160,80,0.06) 0%, transparent 70%);
}

.facilitadora-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.facilitadora-image-wrapper {
    flex-shrink: 0;
    width: 360px;
    position: relative;
}

.facilitadora-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(92, 26, 51, 0.15);
}

.facilitadora-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201,160,80,0.2);
    border-radius: 24px;
    pointer-events: none;
}

.facilitadora-photo {
    width: 100%;
    display: block;
    transition: transform 0.6s;
}

.facilitadora-frame:hover .facilitadora-photo {
    transform: scale(1.03);
}

.facilitadora-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #5C1A33, #7A2845);
    color: #E8C4B0;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(92, 26, 51, 0.25);
}

.facilitadora-text { flex: 1; }

.facilitadora-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #C4887B;
    font-weight: 600;
}

.facilitadora-name {
    font-size: 2.8rem;
    color: #5C1A33;
    margin-bottom: 4px;
    margin-top: 4px;
}

.facilitadora-text p {
    margin-bottom: 16px;
    color: #5A3A48;
    font-size: 0.98rem;
    line-height: 1.9;
}

.facilitadora-closing {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem !important;
    font-style: italic;
    color: #5C1A33 !important;
    font-weight: 500;
    margin-top: 8px;
}

/* =============================================
   INFO SECTION
   ============================================= */
.info-section {
    padding: 100px 0;
    background: #fff;
}

.info-title {
    font-size: 2.4rem;
    color: #5C1A33;
    text-align: center;
    margin-bottom: 4px;
}

.info-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: #C4887B;
    letter-spacing: 1px;
    margin-bottom: 50px;
}

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

.info-card {
    text-align: center;
    padding: 40px 20px 36px;
    background: linear-gradient(135deg, #FDF6F0, #F9EDE5);
    border-radius: 20px;
    border: 1px solid rgba(196, 136, 123, 0.1);
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.info-card-shine {
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(201,160,80,0.08), transparent);
    transform: rotate(30deg);
    transition: left 0.6s;
}

.info-card:hover .info-card-shine { left: 60%; }

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(92, 26, 51, 0.1);
    border-color: rgba(201, 160, 80, 0.25);
}

.info-icon {
    display: block;
    width: 44px;
    height: 44px;
    margin: 0 auto 16px;
    color: #C9A050;
}
.info-icon svg { width: 100%; height: 100%; }

.info-card h3 {
    font-size: 1.3rem;
    color: #5C1A33;
    margin-bottom: 10px;
}

.info-highlight {
    font-size: 1rem;
    color: #5C1A33;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-detail {
    font-size: 0.82rem;
    color: #6B4A56;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FDF6F0, #F5E6DA);
}

.faq-title {
    font-size: 2.2rem;
    color: #5C1A33;
    text-align: center;
    margin-bottom: 40px;
}

.faq-list { max-width: 700px; margin: 0 auto; }

.faq-item {
    margin-bottom: 12px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(196, 136, 123, 0.1);
    transition: all 0.3s;
}

.faq-item:hover { border-color: rgba(201, 160, 80, 0.2); }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 22px 28px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #5C1A33;
    text-align: left;
    transition: color 0.3s;
}

.faq-question:hover { color: #C9A050; }

.faq-icon {
    font-size: 1.4rem;
    color: #C9A050;
    transition: transform 0.4s;
    font-weight: 300;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 0.93rem;
    color: #5A3A48;
    line-height: 1.8;
}

/* =============================================
   CTA FINAL SECTION
   ============================================= */
.cta-final-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #5C1A33, #2D0A1A);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-particles { position: absolute; inset: 0; pointer-events: none; }
.cta-p {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,160,80,0.3), transparent);
    animation: particleFloat 10s ease-in-out infinite;
}
.cta-p.p1 { width: 8px; height: 8px; top: 30%; left: 10%; animation-delay: 0s; }
.cta-p.p2 { width: 5px; height: 5px; top: 60%; left: 85%; animation-delay: 2s; }
.cta-p.p3 { width: 6px; height: 6px; top: 20%; left: 70%; animation-delay: 4s; }
.cta-p.p4 { width: 4px; height: 4px; top: 80%; left: 30%; animation-delay: 6s; }

.cta-final-content { position: relative; z-index: 1; }

.cta-ornament {
    color: #C9A050;
    font-size: 0.8rem;
    letter-spacing: 12px;
    margin-bottom: 28px;
    opacity: 0.5;
}

.cta-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-style: italic;
    color: #E8C4B0;
    margin-bottom: 16px;
}

.cta-body {
    font-size: 1.05rem;
    opacity: 0.8;
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.9;
}

.btn-cta-final {
    display: inline-block;
    position: relative;
    background: linear-gradient(135deg, #C9A050, #D4AF61);
    color: #2D0A1A;
    padding: 20px 56px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: all 0.4s;
    box-shadow: 0 8px 30px rgba(201, 160, 80, 0.3);
    overflow: hidden;
}

.btn-cta-final:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 50px rgba(201, 160, 80, 0.5);
}

.btn-cta-final .btn-glow {
    animation-duration: 4s;
}

.cta-micro {
    margin-top: 24px;
    font-size: 0.85rem;
    opacity: 0.6;
    font-style: italic;
}

/* =============================================
   FOOTER
   ============================================= */
.aletheia-footer {
    background: #1A0810;
    color: #E8C4B0;
    padding: 50px 0 0;
}

.aletheia-footer .footer-content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.aletheia-footer .footer-logo { height: 50px; opacity: 0.8; transition: opacity 0.3s; }
.aletheia-footer .footer-logo:hover { opacity: 1; }

.aletheia-footer .social-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 12px;
}

.aletheia-footer .social-icons-row { display: flex; gap: 16px; }

.aletheia-footer .social-icon {
    color: #E8C4B0;
    opacity: 0.6;
    transition: all 0.3s;
}

.aletheia-footer .social-icon:hover { opacity: 1; transform: translateY(-3px); }

.aletheia-footer .footer-contact-section p {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 4px;
}

.aletheia-footer .footer-copyright {
    border-top: 1px solid rgba(232, 196, 176, 0.08);
    padding: 16px 24px;
    text-align: center;
    font-size: 0.78rem;
    opacity: 0.4;
}

.developer-credit { margin-top: 4px; }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.float-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

.float-whatsapp:hover { transform: scale(1.1); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .integral-grid, .info-grid { grid-template-columns: repeat(2, 1fr); }
    .what-is-layout, .transformation-layout, .insight-layout { flex-direction: column; gap: 40px; }
    .what-is-left { flex: initial; }
    .transformation-left { position: static; }
}

@media (max-width: 768px) {
    .aletheia-header .desktop-nav { display: none; }
    .aletheia-header .mobile-menu-btn { display: flex; }

    .hero-logo { width: 180px; }
    .hero-subtitle { font-size: 1.4rem; }
    .hero-text { font-size: 1rem; }
    .hero-text br, .hero-description br { display: none; }

    .section-eyebrow, .insight-title, .what-is-title, .integral-title, .transformation-title, .info-title, .faq-title {
        font-size: 1.8rem;
    }

    .pain-points-grid { grid-template-columns: 1fr; }

    .insight-card { padding: 40px 24px; }

    .what-is-layout, .transformation-layout { flex-direction: column; gap: 36px; }
    .big-quote { font-size: 6rem; top: -30px; }

    .facilitadora-layout {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .facilitadora-image-wrapper { width: 280px; margin: 0 auto; }
    .gold-divider.left { justify-content: center; }
    .facilitadora-label { display: block; }

    .aletheia-footer .footer-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cta-lead { font-size: 1.8rem; }
    .diferencial-highlight { font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .hero-section { padding: 100px 16px 60px; }
    .hero-logo { width: 150px; }

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

    .section-eyebrow, .insight-title, .what-is-title, .integral-title, .transformation-title, .info-title {
        font-size: 1.5rem;
    }

    .what-is-card { padding: 24px 20px; }
    .what-is-title { font-size: 3.2rem; line-height: 1.1; }

    .integral-card { padding: 16px 12px; }
    .integral-card h3 { font-size: 1.4rem; margin-bottom: 4px; font-weight: 600; }
    .integral-card p { font-size: 1rem; line-height: 1.3; margin: 0; }
    .integral-number { 
        font-size: 2.2rem; 
        color: #C9A050; 
        font-weight: 600; 
        opacity: 0.9; 
        margin-bottom: 0px; 
    }
    .integral-icon-wrap {
        width: 38px;
        height: 38px;
        margin: 4px auto 8px;
    }

    .btn-cta { padding: 16px 36px; font-size: 0.82rem; }
    .btn-cta-final { padding: 18px 40px; font-size: 0.82rem; }

    .facilitadora-image-wrapper { width: 240px; }
    .facilitadora-badge { font-size: 0.72rem; padding: 8px 18px; }

    .cta-lead { font-size: 1.5rem; }
}
