/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
    --primary-color: #012B52; /* Trust Blue from original design */
    --primary-dark: #001f3f;
    --accent-color: #16a34a; /* Conversion Green */
    --accent-hover: #15803d;
    --alert-color: #dc2626; /* Urgency Red */
    --text-main: #1e293b;
    --text-light: #f8fafc;
    --text-muted: #64748b;
    --bg-light: #fbfbfb;
    --bg-white: #ffffff;
    --bg-dark: #000d17;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 5px;
    --radius-md: 15px;
    --radius-lg: 25px;
    
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

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

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

/* ==========================================================================
   Layout & Typography Classes
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.w-100 { width: 100%; }

.grid-layout {
    display: grid;
    gap: 30px;
}
.grid-2-cols { grid-template-columns: repeat(2, 1fr); }
.grid-3-cols { grid-template-columns: repeat(3, 1fr); }
.grid-5-cols { grid-template-columns: repeat(5, 1fr); gap: 15px; }

.align-items-center { align-items: center; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

/* ==========================================================================
   Components
   ========================================================================== */
/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #33B044, #148023);
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 18px 36px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(20, 128, 35, 0.4);
    transition: all 0.3s ease;
    border-bottom: 3px solid #023509;
    gap: 10px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 128, 35, 0.5);
    background: linear-gradient(160deg, #3bdc50, #189b2b);
}

.btn-sm {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(160deg, #B11212, #8b0e0e);
    color: #fff;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border-bottom: 3px solid #5a0707;
    transition: all 0.2s ease;
    gap: 8px;
}
.btn-sm:hover {
    background: linear-gradient(160deg, #d31616, #a81111);
}

/* Pulse Animation for main CTAs */
.pulse-animation {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(51, 176, 68, 0.7); }
    50% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(51, 176, 68, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(51, 176, 68, 0); }
}

/* ==========================================================================
   Sections
   ========================================================================== */
/* Urgency Bar */
.top-urgency-bar {
    background: linear-gradient(110deg, #FC0101, #211000);
    color: #fff;
    text-align: center;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-image: url('assets/images/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0 80px;
    color: #fff;
    text-align: center;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Escurecido para melhor contraste */
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-content .headline {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.hero-content .subheadline {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #ffd700;
}
.video-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 15px;
    border: 3px solid rgba(255,255,255,0.1);
}
.sound-warning {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 30px;
    color: #fca5a5;
}

/* Problems Section */
.problems-section {
    padding: 80px 0;
    background: #f8f8f8;
}
.subtitle {
    color: #939393;
    font-size: 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 5px;
}
.title-dark {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: #000;
}
.problem-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}
.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 1, 1, 0.6);
    z-index: 1;
}
.card-content {
    position: relative;
    z-index: 2;
}
.card-content h4 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: radial-gradient(circle, #012B52 0%, #000000 100%);
    color: #fff;
}
.title-light {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: #fff;
}
.testimonial-card {
    background: linear-gradient(to bottom, #012B52, #060200);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: 0 0 37px rgba(43, 15, 0, 0.75);
    text-align: center;
}
.testimonial-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-color);
}
.testimonial-name {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.stars {
    color: #F7FF00;
    font-size: 1.2rem;
}
.testimonial-text {
    font-size: 1rem;
    color: #e2e8f0;
}

/* Transition Hook */
.transition-hook {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 0; /* Reduced padding from 120px to 60px */
}
.transition-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.transition-content {
    position: relative;
    z-index: 2;
}
.transition-content .title-light {
    font-size: 2.5rem; /* Reduced from 3rem */
    font-weight: 700;
    margin: 0;
}

/* Sales Letter */
.sales-letter-section {
    padding: 80px 0;
    background: var(--bg-light);
}
.subtitle-dark {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.title-huge {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}
.sales-copy p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
}
.sales-images img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Solutions Grid */
.solutions-section {
    padding: 80px 0;
}
.solution-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}
.solution-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 1, 1, 0.75);
    z-index: 1;
}
.solution-content {
    position: relative;
    z-index: 2;
    color: #fff;
}
.solution-content h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.solution-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #cbd5e1;
}

/* Offer Section */
.offer-section {
    padding: 60px 0;
}
.offer-box {
    background: linear-gradient(to bottom, #012B52, #000000);
    border-radius: var(--radius-lg);
    padding: 50px;
    text-align: center;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.offer-title {
    color: #FF3333;
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.installments-text {
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.price-big {
    color: #068011;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 10px;
}
.cash-price {
    color: #53D899;
    font-size: 1.4rem;
    text-decoration: underline;
}
.cards-img {
    margin: 0 auto;
    max-width: 300px;
}

/* Guarantee Section */
.guarantee-section {
    padding: 60px 0;
    background: #F6EFE5;
}
.guarantee-box {
    background: url('https://curcumygotas.net.br/wp-content/uploads/2023/03/desk4-scaled.jpg') center/cover;
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-md);
}
.guarantee-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.guarantee-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
}
.seal-img {
    max-width: 250px;
    margin: 0 auto;
}

/* Custom Guarantee Badge CSS */
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
    margin-top: 20px;
    color: #333;
}
.guarantee-badge i {
    font-size: 3rem;
    margin-right: 15px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.guarantee-badge .badge-text {
    text-align: left;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 700;
}
.guarantee-badge .badge-text strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Last Call */
.last-call-section {
    padding: 80px 0;
    background: radial-gradient(circle, #012B52 0%, #000000 100%);
    color: #fff;
}

/* Footer */
.site-footer {
    background: linear-gradient(to bottom, #012B52, #000000);
    color: #fff;
    padding-top: 60px;
}
.footer-widget h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #cbd5e1;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #fff;
}
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #00C01A, #00650D);
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.footer-cards {
    max-width: 200px;
}
.copyright {
    background: #000D17;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

/* ==========================================================================
   Floating WhatsApp Widget
   ========================================================================== */
#floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 40px;
    z-index: 100;
}
.wapp-icon {
    display: block;
    width: 60px;
    height: 60px;
    transition: transform 0.2s;
}
.wapp-icon:hover {
    transform: scale(1.1);
}
.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}
.msg-bubble {
    position: absolute;
    right: 80px;
    bottom: 10px;
    background: #fff;
    color: #000;
    padding: 12px 15px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}
.msg-bubble::after {
    content: '';
    position: absolute;
    right: -8px;
    bottom: 15px;
    border-width: 8px 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}
.show-widget {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .grid-5-cols { grid-template-columns: repeat(3, 1fr); }
    .title-huge { font-size: 3.5rem; }
    .transition-content .title-light { font-size: 3rem; }
}

@media (max-width: 768px) {
    .grid-2-cols, .grid-3-cols, .grid-5-cols { grid-template-columns: 1fr; }
    .hero-content .headline { font-size: 1.5rem; }
    .hero-content .subheadline { font-size: 1rem; }
    .title-dark, .title-light { font-size: 1.8rem; }
    .title-huge { font-size: 2.5rem; }
    
    .problem-card { min-height: 250px; }
    .solution-card { min-height: 300px; }
    
    .guarantee-box { padding: 30px; text-align: center; }
    .guarantee-text h2 { font-size: 1.8rem; }
    
    .footer-widget { text-align: center; margin-bottom: 30px; }
    .payment-methods-list { justify-content: center; }
}

/* Payment Methods Footer */
.payment-methods-list {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 15px;
}
.payment-methods-list i {
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}
.payment-methods-list i:hover {
    color: #fff;
}
.pix-badge {
    background: #32BCAD;
    color: #fff;
    font-weight: 900;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    height: fit-content;
}

/* ==========================================================================
   Animations & Motion
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
