/* RESET E CONFIGURAÇÕES GERAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a73e8;
    --primary-dark: #0d47a1;
    --secondary: #ff6b00;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --emergency: #e53935;
    --success: #4CAF50;
    --warning: #ff9800;
    --dark: #1a237e;
    --light: #f5f7fa;
    --text: #333;
    --gray: #666;
    --light-gray: #f0f0f0;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.15);
    --radius: 10px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TIPOGRAFIA */
h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { margin-bottom: 1rem; }

.highlight {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
    opacity: 0.3;
    z-index: -1;
}

/* BOTÕES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    text-align: center;
    gap: 10px;
}

.btn-whatsapp-large {
    background: var(--whatsapp);
    color: var(--white);
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.btn-whatsapp-large:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-phone-large {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.btn-phone-large:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-price {
    background: var(--secondary);
    color: var(--white);
    width: 100%;
    margin-top: 1rem;
}

.btn-price:hover {
    background: #e65c00;
    transform: translateY(-2px);
}

.btn-area, .btn-faq, .btn-cta-whatsapp, .btn-cta-phone {
    padding: 1rem 2rem;
    font-weight: 600;
}

.btn-cta-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    font-size: 1.1rem;
}

.btn-cta-phone {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
}

.btn-submit {
    background: var(--secondary);
    color: var(--white);
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* BOTÕES FLUTUANTES */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-btn, .phone-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: var(--transition);
    font-size: 1.5rem;
}

.whatsapp-btn {
    background: var(--whatsapp);
    color: var(--white);
}

.phone-btn {
    background: var(--primary);
    color: var(--white);
}

.whatsapp-btn:hover, .phone-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

.pulse {
    animation: pulse 2s infinite;
}

@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); }
}

/* HEADER */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo h1 {
    margin: 0;
    color: var(--primary);
    font-size: 1.5rem;
}

.tagline {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
}

.cta-nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 5px;
}

.header-contact {
    display: flex;
    align-items: center;
}

.header-phone {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* BANNER DE EMERGÊNCIA */
.emergency-banner {
    background: linear-gradient(90deg, var(--emergency), #ff5252);
    color: var(--white);
    padding: 1rem 0;
    text-align: center;
}

.emergency-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.emergency-btn {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
    border: 2px solid var(--white);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.emergency-btn:hover {
    background: var(--white);
    color: var(--emergency);
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
}

.feature i {
    color: var(--whatsapp);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 1.5rem 0;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-cta-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

/* FORMULÁRIO HERO */
.hero-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.form-container h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-container > p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 1rem;
    justify-content: center;
}

/* SEÇÕES */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* WHY US */
.why-us {
    background: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

/* PRICING */
.pricing {
    background: var(--white);
}

.price-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    background: var(--light);
    padding: 2rem;
    border-radius: var(--radius);
}

.competitor-price, .our-price {
    text-align: center;
}

.vs {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gray);
}

.price-badge {
    padding: 2rem;
    border-radius: var(--radius);
    margin: 1.5rem 0;
    position: relative;
}

.price-badge.bad {
    background: #ffebee;
    color: var(--emergency);
}

.price-badge.good {
    background: #e8f5e9;
    color: var(--success);
}

.price-badge .price {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
}

.price-badge .label {
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
}

.discount {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.price-features {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.price-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features .fa-check-circle {
    color: var(--success);
}

.price-features .fa-times-circle {
    color: var(--emergency);
}

/* AREAS */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.area-group {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid #e0e7ff;
}

.area-group.highlight-area {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: var(--white);
    border: none;
}

.area-group h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.area-group ul {
    list-style: none;
}

.area-group li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.area-group li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
}

.highlight-area li::before {
    color: var(--white);
}

.areas-cta {
    text-align: center;
    background: #e8f4ff;
    padding: 2rem;
    border-radius: var(--radius);
    margin-top: 2rem;
}

/* PROCESS */
.process {
    background: var(--light);
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.step-number {
    background: var(--primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 2rem auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--light);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

/* TESTIMONIALS */
.testimonials {
    background: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--light);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.client {
    display: flex;
    flex-direction: column;
}

.client strong {
    color: var(--dark);
}

/* CTA FINAL */
.cta-final {
    background: linear-gradient(135deg, var(--dark), #0a0f3d);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    opacity: 0.9;
}

/* FOOTER */
.main-footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
}

.areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .price-comparison {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .vs {
        display: none;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-phone {
        display: none;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn, .phone-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
}