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

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

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

/* Hero Section com Banner */
.hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

.logo-area h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.logos-parceiros {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.logo-parceiro {
    height: 100px;
    filter: brightness(0) invert(1); /* Deixa branco em fundo azul */
    opacity: 0.9;
    transition: all 0.3s ease;
}

.logo-parceiro:hover {
    opacity: 1;
    transform: scale(1.1);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Botões */
.btn-primary {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #28a745;
    margin: 10px 5px;
}

.btn-primary:hover {
    background: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #007bff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    border: 2px solid #007bff;
    transition: all 0.3s ease;
    margin: 10px 5px;
}

.btn-secondary:hover {
    background: #007bff;
    color: white;
}

/* Planos com Logos */
.plano-header {
    padding: 20px;
    border-radius: 15px 15px 0 0;
    text-align: center;
}

.plano-logo {
    height: 80px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1); /* Deixa branco em fundo colorido */
}

.plano-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.planos {
    padding: 80px 0;
    background: #f8f9fa;
}

.planos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.plano-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.plano-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.plano-card.destaque {
    border: 3px solid #ffc107;
    transform: scale(1.05);
}

.plano-card.destaque::before {
    content: '★ MAIS POPULAR';
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ffc107;
    color: #333;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    z-index: 2;
}

.preco {
    font-size: 2.5rem;
    font-weight: bold;
    color: #28a745;
    margin: 25px 0;
    text-align: center;
}

.preco span {
    font-size: 1.1rem;
    color: #666;
}

.plano-card ul {
    list-style: none;
    margin: 20px 0 30px;
    padding: 0 20px;
}

.plano-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.05rem;
}

/* Diferenciais com Ícones */
.diferenciais {
    padding: 80px 0;
    background: white;
}

.diferenciais h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.diferencial-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.diferencial-item:hover {
    transform: translateY(-5px);
}

.icone-diferencial {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.diferencial-item h3 {
    color: #007bff;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Formulário */
.formulario {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.formulario h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.formulario p {
    text-align: center;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
    border-color: #28a745;
    outline: none;
    background: white;
}

form textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: #28a745;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* Depoimentos */
.depoimentos {
    padding: 80px 0;
    background: #f8f9fa;
}

.depoimentos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.depoimento-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-style: italic;
    position: relative;
}

.depoimento-card::before {
    content: """;
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: 10px;
    color: #007bff;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.depoimento-card strong {
    display: block;
    margin-top: 20px;
    text-align: right;
    font-style: normal;
    color: #007bff;
}

/* CTA */
.cta {
    padding: 100px 0;
    background: #333;
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ccc;
}

.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-whatsapp i {
    margin-right: 10px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #222;
    color: #ccc;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-info h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.redes-sociais {
    margin-top: 20px;
}

.redes-sociais a {
    color: #ccc;
    font-size: 1.5rem;
    margin-right: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.redes-sociais a:hover {
    color: #007bff;
}

.footer-contact h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    width: 20px;
}

hr {
    border: none;
    border-top: 1px solid #444;
    margin: 30px 0;
}

.copyright {
    text-align: center;
    margin-bottom: 10px;
}

.domain {
    text-align: center;
    color: #007bff;
    font-weight: bold;
}

/* WhatsApp Fixo */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    color: white;
    font-size: 2rem;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsivo */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .logo-area h1 {
        font-size: 2rem;
    }
    
    .logos-parceiros {
        gap: 20px;
    }
    
    .logo-parceiro {
        height: 35px;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .planos-grid,
    .diferenciais-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }
    
    .plano-card.destaque {
        transform: scale(1);
    }
    
    .plano-card.destaque::before {
        top: -10px;
        right: 15px;
        font-size: 0.8rem;
    }
}