:root {
    --primary-color: #022C43;   /* Azul Petróleo Escuro (Deep Petrol) */
    --secondary-color: #05445E; /* Azul Petróleo Médio */
    --accent-color: #FFB74D;    /* Laranja Pastel */
    --accent-hover: #FF9F43;    /* Laranja um pouco mais escuro para hover */
    --bg-color: #F5F5F5;        /* Off-white background */
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #E0E0E0;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --container-width: 1100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 120px; /* Apenas header fixo (120px) - barra de urgência removida */
}

/* Barra de Urgência - Cronômetro Natal */
/* COMENTADO: Regras CSS da barra de urgência ocultas
.urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #dc3545;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.urgency-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 20px;
}

.urgency-text {
    font-size: 0.95rem !important;
    white-space: nowrap;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 0px;
    font-family: var(--font-heading);
    margin-left: 20px;
}

@media (max-width: 768px) {
    .countdown-timer {
        margin-left: 0px;
    }
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.countdown-value {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.2;
}

.countdown-label {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-separator {
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.8;
    margin: 0 2px;
}

/* Responsividade para barra de urgência */
@media (max-width: 768px) {
    body {
        padding-top: 115px; /* Mais espaço em mobile */
    }
    
    .urgency-bar {
        height: auto;
        min-height: 60px;
        padding: 5px 0;
    }
    
    .urgency-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .urgency-text {
        font-size: 0.85rem !important;
    }
    
    .countdown-value {
        font-size: 1.1rem;
    }
    
    .countdown-label {
        font-size: 0.65rem;
    }
    
    .countdown-separator {
        font-size: 1rem;
    }
}
*/

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

p{
    margin-bottom: 15px;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background: linear-gradient(to bottom, #FFB74D, #ff9f43);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 183, 77, 0.4);
    border: 1px solid rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background: linear-gradient(to bottom, #ff9f43, #e67e22);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 183, 77, 0.6);
}

.btn-large {
    font-size: 1.2rem;
    padding: 20px 50px;
    width: 100%;
    max-width: 500px;
}

/* Pulse Animation for CTA */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 183, 77, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 183, 77, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 183, 77, 0); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Helper Classes */
.text-blue { color: var(--secondary-color); }
.section-white { background-color: var(--white); padding: 40px 0; }
.section-gray { background-color: var(--bg-color); padding: 40px 0; }
.section-header { text-align: center; margin-bottom: 0px; max-width: 800px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: 1.8rem; color: var(--primary-color); margin-bottom: 15px; }
.section-header p { font-size: 1.1rem; color: var(--text-light); }
.highlight-text { color: #c85108; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; margin-bottom: 10px; display: block;}
.highlight-text-bg { background: #c85108; color: var(--white); text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; margin-bottom: 10px; display: block;}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, #011018, #052d42, #000f1a);
    height: 120px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0; /* Barra de urgência removida */
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    height: 80px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

.navbar.scrolled .logo img {
    height: 50px;
}

.nav-cta {
    background-color: var(--accent-color);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 183, 77, 0.4);
}

.nav-cta:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 183, 77, 0.6);
}

/* Hero Section */
.hero {
    background: linear-gradient(45deg, #021925, #0a5b84, #001f2f);
    background-size: 200% 200%;
    animation: gradientBG 15s ease infinite;
    color: var(--white);
    padding: 40px 0 40px; /* Extra padding bottom for shape divider */
    position: relative;
    overflow: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero-text {
    width: 100%;
    max-width: 800px; /* Limita largura para melhor legibilidade */
    margin: 0 auto; /* Centraliza o conteúdo */
    text-align: center; /* Centraliza o texto */
}

.badge {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid rgba(255, 183, 77, 0.3);
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero .highlight {
    color: var(--accent-color);
}

.hero-benefits {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza a lista */
}

.hero-benefits li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza o conteúdo de cada item */
    gap: 10px;
    font-size: 1rem;
    opacity: 0.9;
}

.hero-benefits li i {
    color: var(--accent-color);
}

.guarantee-text {
    margin-top: 15px;
    font-size: 0.85rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.hero-media {
    width: 100%;
    max-width: 800px;
    position: relative;
    display: block; /* Vídeo ativado */
    margin: 0 auto; /* Centraliza o vídeo */
}

.video-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 4px solid rgba(255,255,255,0.1);
    margin: 30px auto;
    max-width: 800px;
    width: 100%;
}

/* Vídeo dentro do hero-text */
.hero-text .video-wrapper {
    margin: 30px auto;
    max-width: 800px;
}

/* YouTube Video Responsive Container */
.youtube-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 (9/16 = 0.5625) */
    height: 0;
    overflow: hidden;
}

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

/* Overlay para ocultar nome do vídeo e link "Assista no YouTube" */
.youtube-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Ajuste para o vídeo no hero */
.hero-text .youtube-container::after {
    background: linear-gradient(to top, rgba(2, 44, 67, 0.9) 0%, rgba(2, 44, 67, 0.5) 50%, transparent 100%);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 2;
    animation: pulse 2s infinite;
}

/* Shape Divider */
.custom-shape-divider-bottom-1689904545 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1689904545 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    display:none
}

.custom-shape-divider-bottom-1689904545 .shape-fill {
    fill: var(--white); /* Updated to match section-white */
}

/* Pain Points Grid */
.pain-points-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.pain-card {
    background-color: var(--white);
    padding: 20px;
    text-align: center;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    flex: 0 1 320px; /* Approximately 3 per line on desktop */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pain-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Removed .pain-card i styles as we now use images */

.pain-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.pain-card p {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px;
}

.pain-card p strong {
    font-weight: 800;
    font-size: 1.15rem;
}

.pain-card .pain-answer {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 8px;
    margin-bottom: 0;
    line-height: 1.4;
}

.pain-points-cta {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(5, 68, 94, 0.05), rgba(2, 44, 67, 0.1));
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

/* Split Content (Solution) */
.split-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.split-content > div {
    flex: 1;
}

.image-content img {
    border-radius: 15px;
    box-shadow: 20px 20px 0px rgba(2, 44, 67, 0.1);
}

.check-list {
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.check-list li i {
    color: #27ae60;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Regra para centralizar o último item se ele estiver sozinho em uma linha de 3 colunas (Desktop) */
@media (min-width: 1080px) {
    .product-card:nth-child(3n+1):last-child {
        grid-column-start: 2;
    }
}

/* Regra para centralizar o último item se ele estiver sozinho em uma linha de 2 colunas (Tablet) */
@media (min-width: 700px) and (max-width: 1079px) {
    .product-card:nth-child(odd):last-child {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 360px;
        width: 100%;
    }
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.product-img {
    height: 200px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.product-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.tag {
    display: inline-block;
    background-color: rgba(5, 68, 94, 0.1);
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    align-self: flex-start;
}

.strategy-box {
    background-color: #e3f2fd;
    border: 2px dashed var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.strategy-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Proof Grid */
.proof-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.proof-item {
    flex: 0 1 calc(50% - 20px);
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.proof-item img {
    width: 100%;
    display: block;
}

.price-reference {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.price-reference h3 {
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

.price-reference .proof-item {
    display: inline-block;
    flex: none;
}

.price-reference .proof-item img {
    max-width: 100%;
}

.price-reference p {
    font-size: 0.9rem;
    margin-top: 15px;
    color: #666;
}

.price-reference a {
    color: #05445E;
    text-decoration: underline;
}

/* Modules Grid */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.module-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.module-card .module-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #c85108;
    line-height: 1;
    margin-bottom: 15px;
    display: block;
}

.module-card .module-title {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.module-card .module-description {
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Modules Grid - Tablet */
@media (max-width: 1024px) and (min-width: 901px) {
    .modules-grid {
        gap: 25px;
    }

    .module-card {
        padding: 30px;
    }
}

/* FAQ Accordion */
.accordion.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion.faq-accordion .accordion-item {
    background-color: #f8f9fa;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
    overflow: hidden;
}

.accordion.faq-accordion .accordion-header {
    width: 100%;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s;
    font-size: inherit;
}

.accordion.faq-accordion .accordion-header:hover {
    background-color: #f9f9f9;
}

.accordion.faq-accordion .accordion-header span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    flex: 1;
    font-family: var(--font-heading);
}

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

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

.accordion.faq-accordion .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--white);
    padding: 0 30px;
}

.accordion.faq-accordion .accordion-content p {
    padding: 20px 0;
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
}

/* Instructors Grid */
.instructor-section {
    background-color: var(--primary-color);
    padding: 80px 0;
    color: var(--white);
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.instructor-card {
    text-align: left;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.inst-img-full {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.inst-img-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.inst-content {
    padding: 0;
}

.inst-content h3 {
    font-size: 1.8rem;
    margin: 20px 20px 10px;
    color: var(--white);
    text-align: center;
}

.inst-skills {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inst-skills li {
    display: flex;
    align-items: flex-start;
    padding: 15px 20px;
    color: #eee;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Instructor Intro Block (Persuasivo) */
.instructor-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px 40px 20px;
}

.instructor-intro h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.instructor-intro p {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.instructor-intro p strong {
    color: var(--accent-color);
}

.instructor-separator {
    width: 100px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 40px auto;
    border: none;
}

/* Zebrado da tabela */
.inst-skills li:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

.inst-skills li:nth-child(even) {
    background-color: transparent;
}

.inst-skills li i {
    color: #00bcd4;
    margin-right: 15px;
    margin-top: 4px;
    flex-shrink: 0;
}

.inst-skills li:last-child {
    border-bottom: none;
}

/* Bonus Highlight Section - Clube de Vantagens */
.section-bonus-dark {
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 50%, #000000 100%);
    padding: 80px 0;
    color: var(--white);
}

.section-bonus-dark .section-header {
    margin-bottom: 50px;
}

.section-bonus-dark .section-header h2 {
    color: var(--white);
}

.bonus-gold-title {
    background: linear-gradient(180deg, #f3d94e 0%, #ffb300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.bonus-highlight-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.bonus-highlight-content img {
    max-width: 80%;
    height: auto;
    margin: 0 auto 40px;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.bonus-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.bonus-pillar {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.bonus-pillar:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.bonus-pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 215, 0, 0.4);
}

.bonus-pillar-icon i {
    font-size: 2.5rem;
    color: #FFD700;
}

.bonus-pillar-title {
    color: #FFD700;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.bonus-pillar-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.bonus-warning {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 25px;
    margin-top: 40px;
    text-align: center;
}

.bonus-warning p {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-warning strong {
    color: #FFD700;
    font-weight: 800;
}

/* Bonuses */
.bonus-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.bonus-item {
    display: flex;
    gap: 20px;
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.bonus-item-featured {
    flex-direction: column;
    align-items: flex-start;
}

.bonus-item-featured .bonus-icon {
    align-self: flex-start;
}

.bonus-image {
    width: 100%;
    margin-top: 15px;
}

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

.bonus-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 183, 77, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-hover);
    flex-shrink: 0;
}

.bonus-text h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

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

/* Offer Section Re-styled */
.offer-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--primary-color) 0%, #001824 100%);
}

.offer-wrapper {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    max-width: 850px;
    margin: 0 auto;
}

.offer-block {
    padding: 30px;
    text-align: center;
}

.offer-block.anchoring {
    background: linear-gradient(to bottom, #ffffff, #f3f3f3);
    padding: 40px 20px 20px 20px;
    border-bottom: none;
}

.offer-block.anchoring h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 800;
}

.offer-block.anchoring p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    font-weight: 600;
}

.price-list-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.price-list-items {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #666;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    border-bottom: 1px dotted #eee;
    padding-bottom: 4px;
}

.price-original {
    text-decoration: line-through;
    font-size: 0.85rem;
    color: #999;
    margin-right: 5px;
}

.price-free {
    color: #27ae60;
    font-weight: bold;
}

.subtotal-courses {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #555;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.pricing-system-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.total-final-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.total-label {
    color: #e74c3c;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.total-value-crossed {
    font-weight: 800;
    color: #e74c3c;
    text-decoration: line-through;
    font-size: 2rem;
    line-height: 1;
}

.offer-block.bridge {
    background: #022C43;
    color: white;
}

.offer-block.bridge h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin: 0;
    font-weight: 600;
}

.offer-block.price-area {
    padding: 1px 20px 40px 20px;
    background: linear-gradient(to bottom, #f3f3f3, #ffffff);
}

.old-price-lg {
    font-size: 1.8rem;
    color: red;
    margin-bottom: 5px;
}

.price-installments {
    margin: 15px 0;
}

.price-installments p:first-child {
    font-size: 1.5rem;
    color: #022C43;
    font-weight: 600;
    margin-bottom: 0;
}

.price-installments p:last-child {
    font-size: 4rem;
    line-height: 1;
    font-weight: 800;
    color: #059725;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
    letter-spacing: -2px;
    font-family: 'Montserrat';
}

.price-context {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.price-cash {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    background: rgba(39, 174, 96, 0.1);
    display: inline-block;
    padding: 5px 20px;
    border-radius: 50px;
}

.offer-block.urgency {
    background: #fff5f5; /* Fundo avermelhado muito suave */
    padding: 30px;
    border-top: 2px solid #ffcdd2;
    border-bottom: 2px solid #ffcdd2;
    text-align: center;
}

.urgency-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    margin-bottom: 0px;
    text-align: center;
}

.fire-icon-container {
    background: #c0392b;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(192, 57, 43, 0.5);
    animation: pulse-red 2s infinite;
}

.fire-icon {
    color: #f1c40f; /* Amarelo fogo */
    font-size: 25px;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(192, 57, 43, 0); }
    100% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0); }
}

.urgency-text {
    font-size: 1rem;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 5px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-title {
    color: #c0392b;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    display: inline-block;
    font-family: "Montserrat";
}

.scarcity-box {
    background: #c0392b;
    color: white;
    padding: 15px 30px;
    border-radius: 50px; /* Bem arredondado para diferenciar de botão quadrado */
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.3);
    border: 2px solid #e74c3c;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
}

/* Efeito de brilho passando na caixa de escassez */
.scarcity-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.offer-block.cta-area {
    background: #fff;
}

.btn-offer {
    font-size: 1.5rem;
    padding: 25px 40px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.5);
    text-transform: uppercase;
    background: linear-gradient(to bottom, #2ecc71, #27ae60);
    color: white !important; /* Forçar texto branco para contraste no verde */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    border: 1px solid #27ae60;
}

.btn-offer:hover {
    background: linear-gradient(to bottom, #27ae60, #219150);
    box-shadow: 0 15px 30px rgba(46, 204, 113, 0.6);
}

.payment-methods {
    margin-top: 20px;
    font-size: 2rem;
    color: #ccc;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.offer-block.roi-area {
    padding: 50px 30px;
    background: #e1f5fe;
    border-top: 5px solid #0288d1;
}

.roi-area h3 {
    color: #01579b;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.roi-text {
    color: #0277bd;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 20px;
}

.roi-image-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    display: inline-block;
    border: 5px solid white;
}

.offer-block.guarantee-area {
    padding: 50px 30px;
    background: #fff;
    position: relative;
}

.guarantee-icon-lg {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: #022C43;
    font-size: 3.5rem;
}

.guarantee-area h3.guarantee-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.highlight-zero {
    background-color: var(--accent-color);
    color: #042130;
    padding: 0 15px;
    border-radius: 5px;
    display: inline-block;
    transform: skew(-10deg);
    font-weight: bold;
}

.bonus-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.guarantee-seal {
    margin-top: 30px;
}

.guarantee-seal img {
    max-width: 200px;
    margin: 0 auto;
    display: block;
}

.guarantee-cta-button {
    text-align: center;
    margin-top: 30px;
}

.guarantee-cta {
    font-weight: 700;
    color: #05445E;
    font-size: 1.1rem;
    margin-top: 20px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 10px;
    display: inline-block;
}

/* Guarantee Box (Outside Offer) */
.guarantee-box {
    background-color: #f0f8ff;
    border: 2px dashed var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 50px auto 0;
}

.guarantee-icon {
    font-size: 50px;
    color: var(--primary-color);
}

.guarantee-text-content h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.guarantee-text-content p {
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: #011a28; /* Darker than primary */
    color: #aaaaaa;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

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

.social-links a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

/* Responsive Media Queries */
@media (max-width: 900px) {
    .hero-content {
        gap: 30px; /* Espaçamento reduzido em mobile */
    }

    .hero-text {
        display: flex; /* Mantém o container para centralização */
        flex-direction: column;
        align-items: center;
        max-width: 100%; /* Remove limitação de largura em mobile */
        margin: 0 auto;
        width: 100%;
    }

    .hero-text .video-wrapper {
        max-width: 100%;
        margin: 20px auto;
    }

    .hero-text .cta-group { 
        margin-top: 10px !important; /* Override inline style */
        width: 100%;
    }

    .pain-card {
        flex: 0 1 100%;
        max-width: 450px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-benefits li {
        justify-content: center;
    }

    .cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .split-content {
        flex-direction: column;
    }

    /* Modules Grid Responsive */
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .module-card {
        padding: 25px;
    }

    .module-card .module-number {
        font-size: 2.5rem;
    }

    .module-card .module-title {
        font-size: 1.1rem;
    }
    
    .image-content img {
        box-shadow: none;
    }

    .bonus-list {
        grid-template-columns: 1fr;
    }

    /* Bonus Section Responsive */
    .bonus-gold-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

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

    .bonus-pillar {
        padding: 25px 20px;
    }

    .bonus-pillar-icon {
        width: 70px;
        height: 70px;
    }

    .bonus-pillar-icon i {
        font-size: 2rem;
    }

    .bonus-pillar-title {
        font-size: 1.2rem;
    }

    .bonus-pillar-desc {
        font-size: 0.95rem;
    }

    .bonus-warning p {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0; /* Barra de urgência removida */
    }
    
    .navbar.scrolled {
        height: 60px;
    }
    
    .nav-cta {
        font-size: 0.8rem;
        padding: 8px 18px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    margin-top: 0;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}
