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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: #1a1a1a;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-image {
    height: 40px; /* Altura da logo no header */
    width: auto; /* Manter proporção */
    max-width: 200px; /* Largura máxima */
    object-fit: contain; /* Manter proporção sem distorcer */
    transition: all 0.3s ease; /* Transição suave */
}

.logo-image:hover {
    transform: scale(1.05); /* Pequeno zoom no hover */
}

/* Fallback para caso a imagem não carregue */
.logo i {
    margin-right: 10px;
    color: #25D366;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.highlight {
    color: #25D366;
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.benefits-quick {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.benefit-item i {
    color: #25D366;
}

.cta-buttons {
    margin-top: 2rem;
}
/*Whatsapp teste*/
.whatsapp-button{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 9px 9px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}
.btn-whatsapp, .btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}

.btn-whatsapp-large {
    font-size: 1.2rem;
    padding: 18px 35px;
}

.btn-whatsapp:hover, .btn-whatsapp-large:hover {
    background: #20b358;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

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

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

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.pricing-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Carousel Container */
.pricing-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 60px; /* Espaço para os botões */
}

/* Garantir overflow hidden em todos os tamanhos */
.pricing-carousel * {
    box-sizing: border-box;
}

.pricing-grid {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
    align-items: stretch;
    width: max-content; /* Força o container a ter largura do conteúdo */
}

.price-card {
    flex: 0 0 300px; /* Largura fixa para cada card */
    max-width: 300px;
    min-height: 100%; /* Garante altura uniforme */
}

.price-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price-card.popular {
    border-color: #25D366;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #25D366;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.addon-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.price-card.addon {
    border-color: #ff6b35;
    background: linear-gradient(145deg, #fff, #fff5f2);
}

.price-card.legacy {
    opacity: 0.8;
    border-color: #dee2e6;
    background: #f8f9fa;
}

.price-card.legacy:hover {
    opacity: 1;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.2rem;
    color: #666;
}

.amount {
    font-size: 3rem;
    font-weight: bold;
    color: #25D366;
    margin: 0 5px;
}

.plus {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b35;
    margin-right: 5px;
}

.period {
    font-size: 1rem;
    color: #666;
}

.period-total {
    font-size: 1rem;
    color: #666;
}

.monthly-price {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
    margin-top: -0.5rem;
    font-style: italic;
}

.savings {
    background: #e8f5e8;
    color: #25D366;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    text-align: left;
}

.features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list i {
    color: #25D366;
    font-size: 0.9rem;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #25D366;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.carousel-btn:hover {
    background: #20b358;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Botões sempre ativos para loop infinito */
.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 10px;
}

.carousel-btn-next {
    right: 10px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-indicator.active {
    background: #25D366;
    transform: scale(1.2);
}

.carousel-indicator:hover {
    background: #25D366;
    opacity: 0.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #25D366, #20b358);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.guarantee {
    margin-top: 1rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-logo-image {
    height: 35px; /* Altura da logo no footer (um pouco menor) */
    width: auto; /* Manter proporção */
    max-width: 180px; /* Largura máxima */
    object-fit: contain; /* Manter proporção sem distorcer */
    transition: all 0.3s ease; /* Transição suave */
    filter: brightness(1.1); /* Deixar um pouco mais clara no footer escuro */
}

.footer-logo-image:hover {
    transform: scale(1.05); /* Pequeno zoom no hover */
    filter: brightness(1.2); /* Mais brilho no hover */
}

/* Fallback para caso a imagem não carregue */
.footer-logo i {
    margin-right: 10px;
    color: #25D366;
}

.social-links a {
    color: #25D366;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 1.5rem;
    color: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-quick {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .features h2, .pricing h2, .cta-content h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* MOBILE CAROUSEL - FORÇAR UM CARD POR VEZ */
    .pricing-carousel {
        padding: 0 50px;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }
    
    .pricing-grid {
        gap: 0;
        width: calc(6 * 100vw); /* 6 cards x largura da tela */
    }
    
    .price-card {
        flex: 0 0 calc(100vw - 100px) !important; /* Força largura específica */
        max-width: calc(100vw - 100px) !important;
        min-width: calc(100vw - 100px) !important;
        width: calc(100vw - 100px) !important;
        margin: 0 !important;
    }
    
    .price-card.popular {
        transform: none !important;
        scale: 1 !important;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        z-index: 100;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn-whatsapp, .btn-whatsapp-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Logo responsiva para mobile */
    .logo-image {
        height: 35px; /* Menor no mobile */
        max-width: 150px;
    }
    
    .footer-logo-image {
        height: 30px; /* Menor no footer mobile */
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .feature-card, .price-card {
        padding: 1.5rem;
    }
    
    .pricing, .features, .cta-section {
        padding: 60px 0;
    }
    
    /* Logo ainda menor para telas muito pequenas */
    .logo-image {
        height: 30px;
        max-width: 120px;
    }
    
    .footer-logo-image {
        height: 25px;
        max-width: 100px;
    }
    
    /* MOBILE PEQUENO - UM CARD POR VEZ */
    .pricing-carousel {
        padding: 0 40px;
        max-width: 100vw;
        width: 100%;
    }
    
    .pricing-grid {
        gap: 0;
        width: calc(6 * 100vw); /* 6 cards x largura da tela */
    }
    
    .price-card {
        flex: 0 0 calc(100vw - 80px) !important; /* Mobile pequeno */
        max-width: calc(100vw - 80px) !important;
        min-width: calc(100vw - 80px) !important;
        width: calc(100vw - 80px) !important;
        margin: 0 !important;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* FORÇA MOBILE CAROUSEL - Para todos os dispositivos móveis */
@media screen and (max-width: 768px) {
    .pricing-section {
        overflow-x: hidden;
    }
    
    .pricing-carousel {
        overflow-x: hidden !important;
        width: 100vw !important;
        position: relative !important;
    }
    
    .pricing-grid {
        overflow: visible !important;
        width: auto !important;
    }
    
    .price-card {
        display: block !important;
        position: relative !important;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

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

/* Notification System - Prova Social */
.notification-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    pointer-events: none;
}

.social-notification {
    background: linear-gradient(135deg, #25D366, #20b358);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    margin-bottom: 10px;
    max-width: 300px;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-notification:hover {
    transform: translateX(-100%) scale(1.02);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.social-notification.show {
    animation: slideInNotification 0.5s ease forwards;
}

.social-notification.hide {
    animation: slideOutNotification 0.5s ease forwards;
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.notification-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.notification-name {
    font-weight: bold;
    color: #fff;
}

.notification-action {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
}

.notification-time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    margin-top: 2px;
}

/* Animações das notificações */
@keyframes slideInNotification {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutNotification {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

/* Efeito de pulso para chamar atenção */
@keyframes notificationPulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
}

.social-notification.pulse {
    animation: notificationPulse 2s ease-in-out infinite;
}

/* Responsive para mobile */
@media (max-width: 768px) {
    .notification-container {
        left: 10px;
        right: 10px;
        top: 15px;
    }
    
    .social-notification {
        max-width: calc(100vw - 20px);
        font-size: 0.85rem;
        padding: 10px 14px;
    }
    
    .notification-icon {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
}