/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #003366;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, backdrop-filter 0.3s ease; /* Adicionado transição */
}

.header.scrolled { /* Nova classe para background com scroll */
    background: rgba(222, 97, 16, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
}

.header-contact {
    display: flex;
    gap: 15px;
}

.phone-btn, .whatsapp-btn {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-btn {
    background: #0096C7;
}

.whatsapp-btn {
    background: #25D366;
}

.phone-btn:hover, .whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #DE6110 0%, #FF8E53 100%);
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight {
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #E0F7FF;
    margin-bottom: 30px;
    line-height: 1.5;
}

.urgency-banner {
    background: linear-gradient(45deg, #FF4444, #FF6B6B);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: pulse 2s infinite;
    box-shadow: 0 5px 20px rgba(255, 68, 68, 0.3);
    width: 100%;
    justify-content: flex-start;
}

.urgency-banner i.fas { /* Adicione ou modifique esta regra */
    font-size: 1.8rem; /* Ajuste este valor conforme o desejado, por exemplo, 1.2rem, 1.8rem, etc. */
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #FF6B35, #FF8E53);
    color: white;
    padding: 20px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(222, 97, 16, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    justify-content: flex-start;
}

.cta-button i.fas {
    font-size: 1.6rem; /* Ajuste aqui */
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.guarantee {
    margin-top: 20px;
    color: #E0F7FF;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.hero-image {
    position: relative;
    text-align: center;
}

.floating-badge {
    position: absolute;
    top: 5px;
    right: -12px;
    background: linear-gradient(45deg, #DE6110, #FF8E53);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.3);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Efeitos visuais para imagem do produto */
.product-wrapper {
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}

.product-wrapper.float {
    animation: float 4s ease-in-out infinite;
}

.product-image {
    max-width: 100%;
    height: auto;
    animation: pulseGlow 5s infinite;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.4));
    border-radius: 20px;
    background: transparent;
}

.product-badge {
    position: absolute;
    bottom: 5px;
    left: 10px;
    width: 120px;
    opacity: 0.85;
    animation: inherit; /* Herda a animação do pai (.product-wrapper) */
}

.product-badge img {
    width: 100%;
    height: auto;
    display: block;
}

.product-reflection {
    content: "";
    display: block;
    width: 80%;
    height: 10px;
    margin: 10px auto 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
}

/* Animações */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 rgba(0, 229, 255, 0.4); }
    50% { box-shadow: 0 0 25px rgba(0, 229, 255, 0.6); }
    100% { box-shadow: 0 0 0 rgba(0, 229, 255, 0.4); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: #F8F9FA;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #DE6110;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.problem-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #FF4444;
}

.problem-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FF4444, #FF6B6B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.problem-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #003366;
}

.problem-item p {
    color: #666;
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: 50px 0;
    background: white;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #F8F9FA;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #E3F2FD;
    transform: translateX(10px);
}

.benefit-item i {
    color: #DE6110;
    font-size: 1.5rem;
    margin-top: 2px;
}

.before-after-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-caption {
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    color: #003366;
    font-size: 1.1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #E3F2FD 0%, #F8F9FA 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #DE6110;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FFD27F, #0096C7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #003366;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Scarcity Section */
.scarcity-section {
    padding: 80px 0;
    background: linear-gradient(45deg, #FF4444, #FF6B6B);
    color: white;
    text-align: center;
}

.scarcity-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.scarcity-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.timer-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    min-width: 100px;
    backdrop-filter: blur(10px);
}

.timer-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
}

.timer-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.timer-text {
    font-size: 1.1rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #003366;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button.cta-secundaria {
    background: #00BFFF; /* Azul claro */
    color: #fff;
    font-weight: bold;
    padding: 10px 24px;
    border-radius: 30px;
    display: flex;
    width: 100%; /* Ajuste para não ter width: 100% por padrão */
    max-width: 100%; /* Garante que não ultrapasse o contêiner */
    box-shadow: 0 0 12px rgba(0, 191, 255, 0.5);
    justify-content: flex-start;
}

.cta-button.cta-secundaria i.fas {
    font-size: 1.6rem; /* Ajuste aqui */
}

.cta-button.no-click {
    cursor: default;
    pointer-events: none;
}

.price-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    position: relative;
    backdrop-filter: blur(10px);
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 10px;
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.discount-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(45deg, #DE6110, #FF8E53);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
}

.main-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, #FF6B35, #FF8E53);
    color: white;
    padding: 25px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.main-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.6);
}

.payment-info {
    margin-bottom: 30px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.badge i {
    color: #00E5FF;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #F8F9FA;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #666;
}

.testimonial-author strong {
    color: #003366;
    font-weight: 600;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #003366;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.footer-info p, .footer-legal p {
    margin-bottom: 10px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-legal h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .timer-item {
        min-width: 80px;
        padding: 15px;
    }
    
    .timer-number {
        font-size: 2rem;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 10px;
        align-items: center; /* Adicionado para centralizar */
    }
    .header-contact .phone-btn,
    .header-contact .whatsapp-btn {
        width: 100%; /* ou max-content se preferir que ocupe apenas o conteúdo */
        text-align: center; /* Garante que o texto dentro do botão também centralize */
        justify-content: center; /* Se o botão for flexbox, centraliza o conteúdo interno */
    }
}
    
    .security-badges {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        max-width: fit-content; 
        margin: 0 auto;
    }

    .hero-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; /* ALTERADO: Isso centralizará os botões em coluna */
        padding-top: 80px;
    }

    .cta-button.cta-secundaria {
        width: 100%; /* Retorna para 100% em telas menores, se for o desejado */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .main-cta-button {
        padding: 20px 30px;
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (min-width: 769px) {
    .product-image {
        margin-top: 50px;
    }
    .floating-badge {
        top: 40px; /* distância do topo */
        right: 0px; /* ajuste horizontal se necessário */
    }
}