/* CASULO DIGITAL FEMININO - CSS PURO */

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

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #001449;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.3;
}

p { margin-bottom: 1rem; }

strong {
    font-weight: 700;
    color: #001449;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #001449;
    font-size: 1.8rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #8095b8;
    margin: 1rem auto 0;
}

.section-subtitle {
    text-align: center;
    color: #8095b8;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* HERO */
.hero {
    background: linear-gradient(180deg, #001449 0%, #0a2570 50%, #001449 100%);
    color: #ffffff;
    padding: 3rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.logo-container { margin-bottom: 2rem; }

.logo {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.hero-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #ffffff;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

.hero-subtitle strong {
    color: #ffffff;
    font-weight: 700;
}

/* VIDEO */
.video-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-cover {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.video-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    font-size: 2rem;
    color: #001449;
    margin-left: 5px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

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

.cta-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* BOTAO CTA VERDE */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    white-space: nowrap;
}

.cta-button:hover {
    background: #1da851;
    transform: translateY(-3px);
}

.cta-button i {
    font-size: 1.3rem;
}

.disclaimer {
    font-size: 0.9rem;
    color: #8095b8;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* LIFESTYLE IMAGES */
.lifestyle {
    background: #ffffff;
    padding: 3rem 0;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lifestyle-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 20, 73, 0.1);
}

.lifestyle-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* PAIN POINTS */
.pain-points {
    background: #ffffff;
    padding: 4rem 0;
}

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

.pain-card {
    background: #F0F4F8;
    padding: 2rem;
    border-radius: 16px;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 20, 73, 0.1);
}

.pain-icon {
    width: 60px;
    height: 60px;
    background: #001449;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.pain-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.pain-card p { color: #001449; margin: 0; }

.pain-conclusion {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #001449;
    font-weight: 500;
}

/* WHAT IS */
.what-is {
    background: #F0F4F8;
    padding: 4rem 0;
}

.what-is-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.what-is-content p {
    font-size: 1.1rem;
    color: #001449;
    margin-bottom: 1.5rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 20, 73, 0.1);
    text-align: left;
}

.feature-item i {
    font-size: 1.5rem;
    color: #8095b8;
}

/* PILLARS */
.pillars {
    background: #ffffff;
    padding: 4rem 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.pillar-card {
    background: #ffffff;
    border: 1px solid rgba(128, 149, 184, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.pillar-card:hover {
    box-shadow: 0 10px 40px rgba(0, 20, 73, 0.15);
    transform: translateY(-8px);
}

.pillar-number {
    width: 50px;
    height: 50px;
    background: #001449;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pillar-card h3 {
    color: #001449;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.pillar-card p {
    color: #8095b8;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.pillar-highlight {
    color: #001449 !important;
    font-weight: 500;
}

.monetization-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.monetization-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #001449;
}

.monetization-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8095b8;
    font-size: 1.2rem;
}

/* BENEFITS */
.benefits {
    background: #001449;
    color: #ffffff;
    padding: 4rem 0;
}

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

.benefits .section-title::after {
    background: #ffffff;
}

.benefits-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 3px solid #8095b8;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.benefit-item i {
    font-size: 1.5rem;
    color: #8095b8;
}

.benefit-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

/* HOW IT WORKS */
.how-it-works {
    background: #ffffff;
    padding: 4rem 0;
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #8095b8, #001449);
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-icon {
    width: 70px;
    height: 70px;
    background: #001449;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 20, 73, 0.1);
}

.timeline-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.timeline-content {
    background: #F0F4F8;
    padding: 1.5rem;
    border-radius: 12px;
    flex: 1;
}

.timeline-content h3 {
    color: #001449;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: #001449;
    margin-bottom: 0.5rem;
}

.timeline-content .obs {
    display: block;
    font-size: 0.85rem;
    color: #8095b8;
    font-style: italic;
    margin-top: 0.5rem;
}

/* LIBRARY */
.library {
    background: #F0F4F8;
    padding: 4rem 0;
}

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

.library-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #001449;
}

.library-item:hover {
    border: 1px solid #8095b8;
}

.library-item i {
    color: #8095b8;
    font-size: 0.9rem;
}

.library-note {
    text-align: center;
    color: #8095b8;
    font-style: italic;
    max-width: 700px;
    margin: 2rem auto 0;
}

/* AUDIENCE */
.audience {
    background: #ffffff;
    padding: 4rem 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.audience-card {
    padding: 2rem;
    border-radius: 20px;
}

.audience-card h2 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

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

.audience-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(128, 149, 184, 0.1);
}

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

.audience-card li i { margin-top: 4px; }

.for-whom {
    background: rgba(0, 20, 73, 0.03);
    border: 1px solid rgba(0, 20, 73, 0.1);
}

.for-whom h2 { color: #001449; }
.for-whom li i { color: #22c55e; }

.not-for-whom {
    background: rgba(128, 149, 184, 0.1);
    border: 1px solid rgba(128, 149, 184, 0.2);
}

.not-for-whom h2 { color: #8095b8; }
.not-for-whom li i { color: #ef4444; }

.audience-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(128, 149, 184, 0.2);
    font-style: italic;
    color: #8095b8;
}

/* INVESTMENT */
.investment {
    background: #001449;
    color: #ffffff;
    padding: 4rem 0;
}

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

.investment .section-title::after {
    background: #8095b8;
}

.price-card {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
}

.price-label {
    color: #8095b8;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.original-price {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.price-divider {
    width: 80px;
    height: 2px;
    background: #8095b8;
    margin: 0 auto 1.5rem;
}

.special-label {
    color: #8095b8;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.special-price {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1;
}

.price-period {
    font-size: 1.1rem;
    color: #8095b8;
    margin-bottom: 1.5rem;
}

.price-includes {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.investment .cta-button {
    width: 100%;
    justify-content: center;
}

.investment-note {
    text-align: center;
    margin-top: 2rem;
    color: #8095b8;
    font-size: 0.95rem;
}

/* ABOUT */
.about {
    background: #ffffff;
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 20, 73, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, #ffffff 0%, rgba(255,255,255,0.8) 30%, transparent 100%);
}

.about-text h2 {
    font-size: 2rem;
    color: #001449;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #001449;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-text .highlight {
    background: #F0F4F8;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #8095b8;
    margin-top: 1.5rem;
    font-style: italic;
}

/* FAQ */
.faq {
    background: #F0F4F8;
    padding: 4rem 0;
}

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

.faq-item {
    background: #ffffff;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 20, 73, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #001449;
    text-align: left;
}

.faq-question:hover {
    background: rgba(128, 149, 184, 0.1);
}

.faq-question i {
    font-size: 0.9rem;
    color: #8095b8;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #8095b8;
    margin: 0;
}

/* FINAL CTA */
.final-cta {
    background: #001449;
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #8095b8;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.cta-message {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-message p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.cta-message .urgency {
    color: #8095b8;
    font-weight: 600;
    font-size: 1.1rem;
}

.final-cta-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.cta-final {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

/* FOOTER */
.footer {
    background: #000c2d;
    color: #8095b8;
    padding: 2rem 0;
    text-align: center;
}

.footer-logo {
    max-width: 120px;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.footer p {
    font-size: 0.85rem;
    margin: 0;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-text { text-align: center; }
    .about-text .highlight { text-align: left; }
}

@media (max-width: 768px) {
    .hero { padding: 2rem 0 3rem; }
    .logo { max-width: 150px; }
    
    .cta-button {
        width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .lifestyle-grid { grid-template-columns: 1fr; }
    .lifestyle-item img { height: 200px; }
    
    .timeline::before { left: 25px; }
    .timeline-icon { width: 50px; height: 50px; }
    .timeline-icon i { font-size: 1.2rem; }
    
    .audience-grid { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: 1fr; }
    
    .special-price { font-size: 3rem; }
    
    .play-button { width: 60px; height: 60px; }
    .play-button i { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.3rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 1.25rem; }
    
    .pain-grid { grid-template-columns: 1fr; }
    .library-grid { grid-template-columns: 1fr; }
    
    .price-card { padding: 2rem; }
    
    .cta-button {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}
