/* CSS COMPLETO COM CORREÇÃO DO PULSO E AJUSTES DE ESPAÇAMENTO */

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Open Sans', sans-serif; color: #333; overflow-x: hidden; width: 100%; }
.container { max-width: 1200px; margin: auto; padding: 0 30px; }

/* HEADER */
.header { background: #000; padding: 15px 0; border-bottom: 3px solid #00c853; position: sticky; top: 0; z-index: 1000; height: 80px; display: flex; align-items: center; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo img { height: 50px; }
.nav-links a { color: #fff; text-decoration: none; font-family: 'Montserrat'; font-weight: 700; margin-left: 20px; font-size: 0.9rem; text-transform: uppercase; }
.btn-nav { background: #00c853; padding: 10px 18px; border-radius: 5px; }

/* HERO */
.hero { position: relative; padding: 120px 0; color: #fff; text-align: center; background-size: cover; background-position: center; min-height: 500px; display: flex; align-items: center; }
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.65); }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 800px; margin: 0 auto; }
h1 { font-family: 'Montserrat'; font-size: 3.2rem; font-weight: 800; margin-bottom: 20px; line-height: 1.1; }
.hero-subtitle { font-size: 1.3rem; margin-bottom: 40px; }
.hero-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn { min-width: 260px; padding: 20px; border-radius: 10px; text-decoration: none; font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.btn-green { background: #00c853; color: #fff; }
.btn-red { background: #ff0000; color: #fff; }

/* FEATURES */
.section-features { background: #fff; padding: 50px 0; border-bottom: 1px solid #eee; text-align: center; }
.features-grid { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.feature-item { flex: 1; min-width: 280px; }
.feature-item strong { font-family: 'Montserrat'; font-size: 1.2rem; color: #00c853; display: block; margin-bottom: 10px; }
.feature-item p { color: #666; font-size: 1rem; }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25d366; width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 40px; color: #fff; z-index: 1000; text-decoration: none; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }

/* ANIMAÇÃO PULSANTE SUAVE */
.pulse-animation { animation: pulse-ws 2s infinite; }
@keyframes pulse-ws { 
    0% { transform: scale(1); } 
    50% { transform: scale(1.05); }
    100% { transform: scale(1); } 
}

/* MOBILE */
@media (max-width: 900px) {
    .menu-toggle { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
    .bar { width: 30px; height: 4px; background: #fff; border-radius: 2px; }
    .nav-links { display: none; width: 100%; position: absolute; top: 80px; left: 0; background: #000; flex-direction: column; padding: 30px 0; border-bottom: 4px solid #00c853; }
    .nav-links.active { display: flex; }
    .nav-links a { margin: 15px 0; font-size: 1.2rem; display: block; }
    h1 { font-size: 2.2rem; }
    .btn { width: 100%; max-width: 300px; margin: 0 auto; }
    .hero-buttons { gap: 15px; }
    .features-grid { gap: 20px; }
    .feature-item { min-width: 100%; }
    .container { padding: 0 20px; }
}

/* FOOTER SIMPLES */
.footer { background: #000; color: #fff; padding: 40px 0; text-align: center; font-size: 0.9rem; }

/* DROPDOWN MENU */
.dropdown { position: relative; display: inline-block; }
.dropdown .dropdown-toggle { cursor: pointer; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background-color: #000; min-width: 220px; box-shadow: 0 8px 16px rgba(0,0,0,0.2); z-index: 1000; border-radius: 5px; overflow: hidden; }
.dropdown-menu a { color: #fff; padding: 12px 16px; text-decoration: none; display: block; text-align: left; font-size: 0.9rem; text-transform: none; margin: 0; }
.dropdown-menu a:hover { background-color: #25d366; color: #000; }
.dropdown:hover .dropdown-menu, .dropdown.active .dropdown-menu { display: block; }

@media (max-width: 900px) {
    .dropdown { display: block; width: 100%; }
    .dropdown-menu { position: static; background-color: #222; box-shadow: none; padding-left: 20px; }
    .dropdown-menu a { padding: 10px 16px; }
}

/* ============================================
   BOTÃO DE DESTAQUE COM PULSO (CORRIGIDO)
   ============================================ */
.btn-destaque,
a.btn-destaque {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #00c853 !important;
    color: #fff !important;
    padding: 15px 30px !important;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: 0.3s;
    min-width: auto !important;
    width: auto !important;
    animation: pulse-ws 2s infinite;
}

.btn-destaque:hover {
    background-color: #00a843 !important;
    transform: scale(1.02);
}