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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

.highlight {
    color: #de750c;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #de750c, #d38d47);
    border-radius: 2px;
}

.whatsapp-button {
  position: fixed;        /* Fixo na tela, não segue o fluxo normal */
  bottom: 20px;           /* 20px da base da viewport */
  right: 20px;            /* 20px da borda direita */
  background-color: #25D366;
  color: #fff;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 1.5em;
  text-align: center;
  z-index: 9999;          /* Acima de tudo, inclusive do logo */
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-whatsapp, .btn-phone-cta, .btn-form-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #de750c, #b95f06);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #de750c;
    border: 2px solid #de750c;
}

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

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-phone-cta {
    background: #2196F3;
    color: white;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.btn-phone-cta:hover {
    background: #1976D2;
    transform: translateY(-2px);
}

.btn-form-cta {
    background: #FF9800;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.btn-form-cta:hover {
    background: #F57C00;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo h1 {
    color: #de750c;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-phone {
    background: #de750c;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-phone:hover {
    background: #b95f06;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('hero-image.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge {
    background: #de750c;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: #333;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-benefits {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #de750c;
    font-weight: 500;
}

.benefit i {
    font-size: 20px;
}

/* Form Container */
.form-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.form-container h3 {
    color: #333;
    margin-bottom: 8px;
    font-size: 24px;
}

.form-subtitle {
    color: #666;
    margin-bottom: 25px;
    font-size: 14px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #de750c;
}

.form-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 12px;
    margin-top: 15px;
    justify-content: center;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Problem/Solution */
.problem-solution {
    padding: 80px 0;
    background: white;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-item {
    padding: 30px;
    border-radius: 15px;
    text-align: left;
}

.problems {
    background: #ffebee;
    border-left: 4px solid #f44336;
}

.solutions {
    background: #e8f5e8;
    border-left: 4px solid #de750c;
}

.comparison-item h3 {
    margin-bottom: 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.problems h3 {
    color: #f44336;
}

.solutions h3 {
    color: #de750c;
}

.comparison-item ul {
    list-style: none;
}

.comparison-item li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.problems li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: bold;
}

.solutions li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #de750c;
    font-weight: bold;
}

/* Benefits */
.benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #de750c, #d38d47);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 32px;
    color: white;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 20px;
}

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

/* Services */
.services {
    padding: 80px 0;
    background: white;
}

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

.service-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    background: white;
    border-color: #de750c;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.1);
}

.service-card i {
    font-size: 40px;
    color: #de750c;
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
    color: #333;
}

.service-card p {
    color: #666;
    font-size: 14px;
}

/* Coverage */
.coverage {
    padding: 80px 0;
    background: #f8f9fa;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.coverage-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.coverage-text > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.cities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.city-group h4 {
    color: #de750c;
    margin-bottom: 10px;
}

.city-group ul {
    list-style: none;
}

.city-group li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 15px;
}

.city-group li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #de750c;
    font-weight: bold;
}

.coverage-cta {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.coverage-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 60px;
    color: #de750c;
    font-family: serif;
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.stars i {
    color: #FFD700;
    font-size: 16px;
}

.testimonial-content p {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    color: #333;
    margin-bottom: 2px;
}

.author-info span {
    color: #de750c;
    font-size: 14px;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    color: #333;
    font-size: 18px;
}

.faq-question i {
    color: #de750c;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #de750c, #b95f06);
    color: white;
    text-align: center;
}

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

.cta-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.urgency-banner {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.guarantees {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #de750c;
}

.footer-section p,
.footer-section li {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #de750c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background: #b95f06;
}

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

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #de750c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-benefits {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .coverage-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cities-list {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .guarantees {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .cta-text h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .benefits-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.section-header,
.benefit-card,
.service-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

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

* Grid e Card (usados em vários modelos) */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}
.card h2, .card h3 { color: #333; margin-bottom: 8px; }
.card .meta { color: #666; font-size: .95rem; }

/* Breadcrumb (caso o modelo exiba) */
.breadcrumb { 
  display: flex; gap: 10px; flex-wrap: wrap; 
  font-size: .95rem; color: #666; margin: 10px 0 18px; 
}
.breadcrumb a { color: #666; text-decoration: none; }
.breadcrumb a:hover { color: #004d33; }
.breadcrumb .sep { opacity: .5; }

/* Links relacionados (interlink inteligente) */
section[data-seo="interlink"] { padding: 8px 0 0; }
section[data-seo="interlink"] .card {
  border-color: #bfe7cf;
  background: #f6fffa;
}
section[data-seo="interlink"] h2 {
  font-size: 1.15rem;
  color: #004d33;
  margin-bottom: 8px;
}
ul.links-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid; gap: 8px;
}
ul.links-list li a {
  text-decoration: underline;
  color: #004d33;
}
ul.links-list li a:hover {
  color: #02402b;
  text-decoration: none;
}

/* Botão genérico (.btn) para harmonizar com seus .btn-* */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 20px; border-radius: 10px; border: none;
  background: linear-gradient(135deg, #004d33, #02402b);
  color: #fff; font-weight: 600; font-size: 16px; text-decoration: none;
  box-shadow: 0 4px 15px rgba(76,175,80,0.22);
  transition: transform .15s ease, box-shadow .3s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(76,175,80,0.32); }
.btn:active { transform: translateY(0); }
.btn.outline {
  background: transparent; color: #004d33; border: 2px solid #004d33;
}
.btn.outline:hover { background: #004d33; color: #fff; }

/* Listas com “check” (para benefícios/serviços) */
ul.check { list-style: none; padding: 0; margin: 0; }
ul.check li { position: relative; padding-left: 26px; margin: 6px 0; }
ul.check li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: #004d33; font-weight: 700;
}

/* Tabelas leves (quando existir comparativo/preço) */
table { width: 100%; border-collapse: collapse; font-size: .98rem; }
th, td { padding: 10px 12px; border-bottom: 1px solid #e0e0e0; }
thead th { text-align: left; color: #333; }
tr:hover td { background: #f8f9fa; }

/* Bloco “Aviso/Nota” */
.notice {
  display: flex; gap: 12px; align-items: flex-start;
  background: #f1f5f4; border: 1px dashed #cfe7da;
  padding: 12px 14px; border-radius: 12px;
  color: #333;
}

/* Botão flutuante de WhatsApp (opcional) */
.whats-float {
  position: fixed; right: 16px; bottom: 16px; z-index: 99;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: #25D366; color: #fff; border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
}
.whats-float:hover { background: #128C7E; text-decoration: none; }

/* Responsivo básico para cards/grids */
@media (max-width: 768px){
  .grid { gap: 16px; }
  .card { border-radius: 14px; padding: 16px; }
}
