/* ==========================================================================
   VERDE & VIDA PAISAGISMO - SISTEMA DE DESIGN & ESTILOS PREMIUM
   ========================================================================== */

:root {
    --primary: #0a2e19;
    --primary-light: #164828;
    --primary-accent: #1e5631;
    --accent-gold: #d4af37;
    --accent-gold-hover: #b5952f;
    --text-dark: #111827;
    --text-muted: #4b5563;
    --text-light: #9ca3af;
    --bg-light: #f4f7f5;
    --bg-white: #ffffff;
    --bg-dark: #071e11;
    --border-color: #e5e7eb;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(10, 46, 25, 0.15);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 42px; /* Espaço para a barra de urgência */
}

h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
}

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

.section-padding {
    padding: 100px 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.text-white { color: var(--bg-white) !important; }
.color-gold { color: var(--accent-gold) !important; }
.text-center { text-align: center; }

.section-header {
    margin-bottom: 50px;
}

.sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-accent);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 650px;
    margin: 0 auto;
}

/* Header & Navbar */
header {
    position: fixed;
    top: 42px; /* Abaixo da barra de urgência */
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--accent-gold);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--bg-white);
    letter-spacing: 0.5px;
}

.logo-text span {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

header.scrolled .logo-text {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

header.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--accent-gold) !important;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-header {
    background: var(--accent-gold);
    color: var(--primary);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

.btn-header:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

header.scrolled .mobile-toggle {
    color: var(--primary);
}

/* Botões Globais */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent-gold);
    color: var(--primary);
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.45);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--bg-white);
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-gold), #fff, var(--accent-gold));
    border-radius: var(--radius-sm);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.btn-glow:hover::after {
    opacity: 0.6;
}

.btn-block {
    width: 100%;
}

/* Hero Section */
#hero {
    position: relative;
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1585320806297-9794b3e4ce88?q=80&w=1920') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 46, 25, 0.92) 0%, rgba(7, 30, 17, 0.8) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
}

.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 56px;
    color: var(--bg-white);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-content h1 span {
    color: var(--accent-gold);
    position: relative;
}

.hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 680px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    width: fit-content;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 26px;
    font-weight: 800;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
}

/* Simulador de Orçamento */
.simulador-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.simulador-group {
    margin-bottom: 35px;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.step-num {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--accent-gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
}

.service-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.option-card {
    background: var(--bg-light);
    border: 2px solid transparent;
    padding: 24px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.option-card i {
    font-size: 32px;
    color: var(--primary-accent);
    margin-bottom: 12px;
    transition: var(--transition);
}

.option-card h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 6px;
}

.option-card p {
    font-size: 12px;
    color: var(--text-muted);
}

.option-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
}

.option-card.active {
    background: var(--bg-white);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.option-card.active i {
    color: var(--accent-gold);
}

.area-slider-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-md);
}

.slider-display {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin-bottom: 15px;
}

.slider-display span {
    color: var(--accent-gold);
}

input[type="range"] {
    width: 100%;
    height: 8px;
    background: #ddd;
    border-radius: 4px;
    outline: none;
    accent-color: var(--accent-gold);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.simulador-result {
    background: var(--primary);
    color: white;
    padding: 30px 40px;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.result-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: block;
}

.result-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-gold);
}

.simulador-result small {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    margin-top: 4px;
}

/* Sobre & Diferenciais */
.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lead-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-accent);
    margin-bottom: 15px;
}

.features-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold-hover);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-muted);
}

.sobre-image-container {
    position: relative;
}

.image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--bg-white);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--border-color);
}

.floating-badge i {
    font-size: 32px;
    color: var(--accent-gold);
}

.floating-badge strong {
    display: block;
    font-size: 18px;
    color: var(--primary);
}

.floating-badge span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Comparador Antes e Depois */
.before-after-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.ba-slider {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.ba-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    top: 20px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.label-after {
    right: 20px;
    background: var(--primary);
    color: var(--accent-gold);
}

.label-before {
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
}

.image-before {
    width: 50%;
    overflow: hidden;
    z-index: 2;
}

.ba-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 4;
    cursor: ew-resize;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--accent-gold);
    z-index: 3;
    transform: translateX(-50%);
    pointer-events: none;
}

.ba-handle i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

/* Cards de Serviços */
.grid-3-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card-servico {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.card-servico:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-servico:hover .card-image img {
    transform: scale(1.08);
}

.card-body {
    padding: 30px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--accent-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-top: -55px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(10, 46, 25, 0.2);
}

.card-body h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 12px;
}

.card-body p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.card-list {
    list-style: none;
    margin-bottom: 25px;
    margin-top: auto;
}

.card-list li {
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-list i {
    color: var(--accent-gold);
}

.btn-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}

.btn-card-link:hover {
    color: var(--accent-gold);
}

/* Portfólio & Galeria */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: var(--accent-gold);
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 280px;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(10, 46, 25, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 18px;
    color: var(--accent-gold);
}

.gallery-overlay p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

/* Depoimentos */
.testimonial-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.stars {
    margin-bottom: 15px;
    font-size: 16px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 25px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

.client-info h4 {
    font-size: 15px;
    color: var(--primary);
}

.client-info span {
    font-size: 12px;
    color: var(--text-light);
}

/* FAQ Accordion */
.faq-accordion {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
    background: #fafafa;
}

.faq-answer p {
    padding: 15px 0 20px;
    color: var(--text-muted);
    font-size: 14px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Form de Contato */
.align-center { align-items: center; }

.contact-info-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info-item i {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-info-item strong {
    display: block;
    font-size: 14px;
    color: white;
}

.contact-info-item a, .contact-info-item span {
    font-size: 14px;
    color: #a1a1a1;
}

.form-container {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

input, select, textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

select option {
    background: var(--bg-dark);
    color: white;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.12);
}

/* Modal de Sucesso */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.modal-icon {
    font-size: 50px;
    color: #16a34a;
    margin-bottom: 15px;
}

.modal-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 10px;
}

.modal-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Footer */
.footer-dark {
    background: #04120a;
    color: white;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
    list-style: none;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #a1a1a1;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: #6b7280;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

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

.wa-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

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

/* Animações Reveal Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade Mobile */
@media (max-width: 992px) {
    .grid-2-cols {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .simulador-result {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--primary);
        padding: 80px 30px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
    }

    .mobile-toggle {
        display: block;
    }

    .btn-header {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .stat-divider {
        display: none;
    }
}

/* ==========================================================================
   BARRA DE URGÊNCIA (TOPO)
   ========================================================================== */
.urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: linear-gradient(90deg, #e53e3e, #dd6b20, #e53e3e);
    background-size: 200% 100%;
    animation: urgencyGradient 3s ease infinite;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes urgencyGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.urgency-bar p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.urgency-bar .fa-fire {
    animation: fireFlicker 0.6s ease infinite alternate;
}

@keyframes fireFlicker {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.urgency-cta {
    display: inline-block;
    background: #fff;
    color: #e53e3e;
    padding: 4px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 800;
    font-size: 12px;
    margin-left: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.urgency-cta:hover {
    background: #fef2f2;
    transform: scale(1.05);
}

.urgency-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.urgency-close:hover {
    opacity: 1;
}

/* Ajustar header para não ficar atrás da barra */

/* ==========================================================================
   POPUP PROMOCIONAL
   ========================================================================== */
.promo-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 100000;
    justify-content: center;
    align-items: center;
}

.promo-overlay.active {
    display: flex;
}

.promo-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

@keyframes popIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.promo-close {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    font-size: 26px;
    color: #999;
    cursor: pointer;
    transition: var(--transition);
}

.promo-close:hover {
    color: #333;
}

.promo-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), #f6e27a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
    color: var(--primary);
    animation: bounceIcon 1s ease infinite;
}

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

.promo-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 8px;
}

.promo-destaque {
    font-size: 28px;
    font-weight: 800;
    color: #e53e3e;
    margin-bottom: 10px;
    line-height: 1.2;
}

.promo-card > p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
}

.promo-timer {
    background: #fef2f2;
    border: 2px dashed #e53e3e;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #e53e3e;
}

.promo-timer strong {
    font-size: 20px;
    font-family: monospace;
}

.promo-btn {
    font-size: 16px;
    padding: 16px 30px;
    margin-bottom: 10px;
}

.promo-card small {
    color: var(--text-light);
    font-size: 12px;
}

/* ==========================================================================
   RESPONSIVE - URGENCY BAR & PROMO
   ========================================================================== */
@media (max-width: 768px) {
    .urgency-bar {
        font-size: 11px;
        padding: 8px 40px 8px 10px;
    }

    .urgency-cta {
        font-size: 10px;
        padding: 3px 10px;
    }

    #navbar {
        top: 55px !important;
    }

    .promo-card {
        padding: 30px 20px;
    }

    .promo-destaque {
        font-size: 22px;
    }
}