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

:root {
    /* Cores institucionais da Câmara dos Deputados */
    --primary-green: #009b3a;
    --primary-blue: #005eb8;
    --dark-blue: #003d7a;
    --light-green: #00c853;
    --text-dark: #1a1a2e;
    --text-gray: #555;
    --text-light: #f5f5f5;
    --bg-light: #fff9e6;
    --bg-cream: #f5f1e8;
    --accent-red: #ff6b6b;
    --border-gold: rgba(0, 155, 58, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
    overflow-x: hidden;
    padding-top: 90px;
}

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

/* COUNTDOWN FIXO */
.countdown-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    color: white;
    padding: 16px 20px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.countdown-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.countdown-timer {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.countdown-number {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    font-size: 11px;
    opacity: 0.9;
    text-transform: uppercase;
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 50, 100, 0.85) 0%, rgba(0, 80, 40, 0.85) 100%),
                linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('camara-dos-deputados-orgao-fotografia.jpg') center/cover no-repeat;
    background-blend-mode: overlay, darken, normal;
    border-bottom: 3px solid var(--primary-green);
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
    display: none;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 7vw, 64px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero h1 .highlight {
    color: var(--light-green);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(20px, 4vw, 32px);
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
    font-family: 'Lora', serif;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: white;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* CTA BUTTON */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: white;
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 94, 184, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 94, 184, 0.4);
}

/* SECTIONS */
section {
    padding: 80px 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    border-radius: 2px;
}

/* PROBLEM SECTION */
.problem-section {
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out 0.3s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.problem-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    text-align: center;
}

.danger-box {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), rgba(0, 94, 184, 0.08));
    border-left: 5px solid var(--accent-red);
    padding: 35px;
    margin: 40px 0;
    border-radius: 8px;
    position: relative;
}

.danger-box::before {
    content: '⚠';
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 32px;
    background: white;
    padding: 0 10px;
}

.danger-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--accent-red);
    margin-bottom: 15px;
    margin-top: 10px;
}

.danger-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

/* MENTOR SECTION */
.mentor-section {
    background: white;
    border-top: 3px solid var(--primary-green);
    border-bottom: 3px solid var(--primary-blue);
}

.mentor-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.mentor-photo {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 94, 184, 0.2);
    border: 4px solid var(--primary-green);
}

.mentor-name {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.mentor-credential {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 25px;
    background: rgba(0, 155, 58, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s ease;
}

.mentor-credential:hover {
    background: rgba(0, 155, 58, 0.1);
    transform: translateX(10px);
}

.credential-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mentor-credential h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.mentor-credential p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

/* FEATURES SECTION */
.features-section {
    background: linear-gradient(135deg, rgba(0, 94, 184, 0.05), rgba(0, 155, 58, 0.02));
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-green);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 94, 184, 0.15);
    border-top-color: var(--primary-blue);
}

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.feature-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 20px;
}

/* EVENT INFO */
.event-info {
    background: linear-gradient(135deg, #001a3d, var(--dark-blue));
    color: white;
    text-align: center;
}

.event-info .section-title {
    color: white;
}

.event-info .section-title::after {
    background: var(--primary-green);
}

.event-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.detail-item h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.detail-item p {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.event-description {
    max-width: 700px;
    margin: 50px auto 0;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

/* PRICING SECTION */
.pricing-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
    align-items: stretch;
}

.event-details-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--primary-blue);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.event-details-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-align: center;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    flex: 1;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.detail-row strong {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-row p {
    font-size: 26px;
    color: var(--text-gray);
    margin: 0;
    font-weight: 500;
}

.price-container {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--primary-green);
    display: flex;
    flex-direction: column;
}

.original-price {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 12px;
}

.final-price {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.price-note {
    font-size: 15px;
    color: #666;
    margin-bottom: 35px;
}

.benefits-list {
    text-align: left;
    list-style: none;
    margin-bottom: 35px;
}

.benefits-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 17px;
    color: #555;
    border-bottom: 1px solid #eee;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 20px;
}

.warning-notice {
    background: white;
    border: 2px solid var(--accent-red);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.warning-notice p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--accent-red);
    margin: 0;
}

/* FAQ */
.faq-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-gold);
    padding-bottom: 20px;
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-answer {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    display: none;
}

.faq-answer.active {
    display: block;
    animation: slideDown 0.4s ease-out;
}

.faq-toggle {
    font-size: 28px;
    transition: transform 0.3s ease;
    color: var(--primary-blue);
}

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

/* CTA FINAL */
.cta-final {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: white;
}

.cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    margin-bottom: 30px;
}

.cta-final > p:first-of-type {
    font-size: 20px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-note {
    margin-top: 30px;
    opacity: 0.9;
    font-size: 14px;
}

/* FOOTER */
footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 20px;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
}

footer a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--light-green);
    text-decoration: underline;
}

footer p {
    margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }

    .countdown-timer {
        gap: 10px;
    }

    .countdown-number {
        font-size: 20px;
    }

    .hero {
        padding: 50px 20px;
    }

    .mentor-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 35px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .final-price {
        font-size: 56px;
    }

    .event-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-button {
        padding: 18px 40px;
        font-size: 14px;
    }
}
