/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Primárias */
    --primary-blue: #4f46e5;
    --primary-purple: #7c3aed;
    --primary-pink: #ec4899;
    
    /* Fundos */
    --bg-dark-primary: #0f0f23;
    --bg-dark-secondary: #1a1a2e;
    --bg-dark-tertiary: #16213e;
    
    /* Neutros */
    --white: #ffffff;
    --gray-light: rgba(255, 255, 255, 0.7);
    --gray-medium: rgba(255, 255, 255, 0.6);
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 50%, var(--primary-pink) 100%);
    --gradient-hover: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 70%, var(--primary-pink) 100%);
}

body {
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    color: var(--white);
    background-color: var(--bg-dark-primary);
    line-height: 1.6;
    width: 100vw;
    max-width: 100%;
    overflow-x: hidden;
    touch-action: manipulation;
}

/* Canvas de Fundo Dinâmico */
#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
}

/* Barra de Progresso de Scroll */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

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

/* Tipografia */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    font-weight: 400;
    color: var(--gray-light);
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes blurIn {
    from {
        opacity: 0;
        filter: blur(10px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes morphing {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease-out;
}

.animate-scale {
    animation: scaleIn 0.6s ease-out;
}

.animate-blur {
    animation: blurIn 1s ease-out;
}

.delay-1 { animation-delay: 0.2s; animation-fill-mode: both; }
.delay-2 { animation-delay: 0.4s; animation-fill-mode: both; }
.delay-3 { animation-delay: 0.6s; animation-fill-mode: both; }

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Efeito Morphing para Background */
.morph-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    animation: morphing 8s ease-in-out infinite;
    filter: blur(100px);
    opacity: 0.3;
}

/* Container WhatsApp */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 40px;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    background: linear-gradient(135deg, #25d366 0%, #20ba5e 100%);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 
        0 0 0 3px rgba(37, 211, 102, 0.2),
        0 3px 8px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(37, 211, 102, 0.4),
        0 15px 35px rgba(37, 211, 102, 0.3);
    transition: background 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    opacity: 0;
    animation: whatsappEntrance 0.5s ease-out 1.5s forwards;
    position: relative;
    overflow: visible;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes whatsappEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-container.scrolling {
    transform: scale(0.85);
    opacity: 0.8;
}

.whatsapp-container.shake {
    animation: whatsappShake 0.6s ease-in-out;
}

@keyframes whatsappShake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #25d366 0%, #1ebf5f 50%, #25d366 100%);
    box-shadow: 
        0 0 0 5px rgba(37, 211, 102, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.2),
        0 10px 30px rgba(37, 211, 102, 0.5),
        0 20px 50px rgba(37, 211, 102, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    opacity: 1 !important;
    visibility: visible !important;
    transition: none;
    display: block;
    position: relative;
    z-index: 10;
}

.whatsapp-text {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float:hover svg {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: none !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) !important;
}

/* Indicador de Pulso */
.whatsapp-pulse {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    background: #ff4757;
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(255, 71, 87, 0.4);
    z-index: 10;
}

@keyframes pulseDot {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Efeito Glow */
.whatsapp-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(37, 211, 102, 0.6) 0%, rgba(37, 211, 102, 0.3) 40%, transparent 70%);
    border-radius: 50%;
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { 
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

/* Badge Dinâmico */
.whatsapp-badge {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.8);
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 10px 16px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    animation: badgeEntrance 0.5s ease-out 3s forwards;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(124, 58, 237, 0.3);
    z-index: 1001;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-badge::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #7c3aed;
}

@keyframes badgeEntrance {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px) scale(0.5);
    }
    50% {
        transform: translateX(-50%) translateY(-5px) scale(1.1);
    }
    70% {
        transform: translateX(-50%) translateY(2px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

.whatsapp-badge.hide {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px) scale(0.8);
    transition: all 0.3s ease;
}

/* Typing Indicator */
.typing-indicator {
    display: none;
    align-items: center;
    gap: 3px;
}

.typing-indicator span {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: typingDot 1.5s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    30% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.whatsapp-badge.typing .badge-text {
    display: none;
}

.whatsapp-badge.typing .typing-indicator {
    display: flex;
}

/* Animação de Sino */
.whatsapp-bell {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    z-index: 1002;
}

.whatsapp-bell svg {
    animation: bellRing 0.8s ease-in-out;
    transform-origin: top center;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70% { transform: rotate(10deg); }
    20%, 40%, 60%, 80% { transform: rotate(-10deg); }
    90% { transform: rotate(5deg); }
    95% { transform: rotate(-5deg); }
}

.whatsapp-bell.show {
    animation: bellAppear 2.5s ease-out forwards;
}

@keyframes bellAppear {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px) scale(0.5);
    }
    20% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    80% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px) scale(0.8);
    }
}

.bell-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bell-waves span {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 0;
    animation: waveRipple 1.5s ease-out infinite;
}

.bell-waves span:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes waveRipple {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, var(--primary-blue) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, var(--primary-purple) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, var(--primary-pink) 0%, transparent 50%);
    opacity: 0.1;
    filter: blur(100px);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 2rem;
}

.hero-title {
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid;
    border-image: var(--gradient-primary) 1;
    padding: 16px 34px;
}

.cta-button.large {
    padding: 22px 44px;
    font-size: 1.2rem;
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

.cta-icon {
    width: 24px;
    height: 24px;
}

.cta-wrapper {
    margin-bottom: 3rem;
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.urgency {
    color: var(--primary-pink);
    font-weight: 600;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.badge {
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-text {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

/* Sections */
section {
    padding: 60px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Section */
.benefits {
    background-color: var(--bg-dark-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-icon.gradient-bg {
    background: var(--gradient-primary);
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

/* Features Section */
.features {
    background-color: var(--bg-dark-primary);
    position: relative;
    overflow: hidden;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 100%;
    display: flex;
    align-items: center;
}

.features-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.align-left {
    text-align: left;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-check {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
}

/* Social Proof Section */
.social-proof {
    background-color: var(--bg-dark-secondary);
}

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

.stat-card {
    text-align: center;
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 10px;
}

.stat-label {
    color: var(--gray-medium);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.stars {
    color: var(--primary-pink);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-purple);
}

/* Pricing Section */
.pricing {
    background-color: var(--bg-dark-primary);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border: 2px solid var(--primary-purple);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price {
    margin: 1.5rem 0;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
}

.period {
    color: var(--gray-medium);
}

.discount {
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--gray-light);
}

/* FAQ Section */
.faq {
    background-color: var(--bg-dark-secondary);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-purple);
}

.faq-question {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-answer {
    color: var(--gray-light);
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--bg-dark-tertiary) 0%, var(--bg-dark-secondary) 100%);
    padding: 60px 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--primary-purple) 0%, transparent 70%);
    opacity: 0.1;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.countdown-wrapper {
    margin-bottom: 3rem;
}

.countdown-label {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-unit {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.guarantee {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

/* Footer */
.footer {
    background-color: var(--bg-dark-primary);
    padding: 30px 0;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.footer-text {
    color: var(--gray-medium);
    font-size: 0.9rem;
}


/* CSS específico para Samsung e browsers problemáticos */
html {
    width: 100vw;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

* {
    -webkit-tap-highlight-color: transparent;
}

/* Media queries específicas para telas Samsung comuns */
@media (max-width: 414px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .whatsapp-container {
        right: 15px;
        bottom: 20px;
        transform: scale(0.9);
    }
}

@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }
    
    .whatsapp-container {
        right: 12px;
        bottom: 15px;
        transform: scale(0.85);
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .whatsapp-container {
        right: 10px;
        bottom: 15px;
        transform: scale(0.8);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    #background-canvas {
        opacity: 0.3;
    }
    
    .whatsapp-container {
        bottom: 30px;
        right: 40px;
    }
    
    .whatsapp-float {
        width: 54px;
        height: 54px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
    
    .whatsapp-pulse {
        width: 16px;
        height: 16px;
        top: -4px;
        right: -4px;
        border: 2px solid white;
    }
    
    .whatsapp-badge {
        top: -45px;
        font-size: 0.75rem;
        padding: 8px 12px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .trust-badges {
        gap: 1.5rem;
    }
    
    .features-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-image {
        order: -1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    .cta-button {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-container {
        bottom: 30px;
        right: 40px;
    }
}