/* CSS Compartilhado - Agência Illuminare */
:root {
  --primary-color: #ffa800;
  --primary-dark: #e69600;
  --secondary-color: #000000;
  --text-color: #333333;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --success-color: #25d366;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
}

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

a {
  text-decoration: none;
  color: inherit;
}

.highlight {
  color: var(--primary-color);
}

/* Header */
.header {
  background-color: #ffffff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.btn-phone {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-phone:hover {
  background-color: var(--primary-dark);
}

/* Hero Section */
.hero {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  width: 100%;
}

.hero-text {
  flex: 1;
}

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

.badge {
  background-color: rgba(255, 168, 0, 0.2);
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--primary-color);
}

.hero-title {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  color: #cccccc;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.benefit i {
  color: var(--primary-color);
  font-size: 20px;
}

.hero-form {
  flex: 0 0 400px;
}

.form-container {
  background-color: var(--white);
  color: var(--text-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-container h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--secondary-color);
  text-align: center;
}

.form-subtitle {
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
  color: #666;
}

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

.form-group input, .form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.btn-primary {
  width: 100%;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 15px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

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

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

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

/* Sections General */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.section-header p {
  font-size: 18px;
  color: #666;
}

/* Problem/Solution */
.problem-solution {
  background-color: var(--bg-light);
}

.comparison {
  display: flex;
  gap: 30px;
}

.comparison-item {
  flex: 1;
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

.problems h3 {
  color: #e74c3c;
}

.solutions h3 {
  color: var(--success-color);
}

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

.comparison-item li {
  margin-bottom: 15px;
  font-size: 16px;
  position: relative;
  padding-left: 30px;
}

.problems li::before {
  content: '\f00d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #e74c3c;
}

.solutions li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--success-color);
}

/* Benefits Grid */
.benefits-grid, .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card, .service-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s;
  border: 1px solid #eee;
}

.benefit-card:hover, .service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.benefit-icon, .service-card i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.benefit-card h3, .service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.benefit-card p, .service-card p {
  color: #666;
  font-size: 15px;
}

/* Coverage Area */
.coverage {
  background-color: var(--secondary-color);
  color: var(--white);
}

.coverage-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.coverage-text {
  flex: 1;
}

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

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

.cities-list {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.city-group h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 18px;
}

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

.city-group li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.city-group li::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.coverage-cta {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 10px;
}

.coverage-cta p {
  margin-bottom: 15px;
  font-size: 16px;
}

/* 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;
}

.btn-secondary {
  display: inline-block;
  background-color: var(--success-color);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-secondary:hover {
  background-color: #20b859;
}

.coverage-image {
  flex: 1;
}

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

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

.testimonial-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
}

.stars {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
  color: #555;
}

.author-info h4 {
  color: var(--secondary-color);
  font-size: 16px;
}

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

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

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--secondary-color);
  transition: background-color 0.3s;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: var(--white);
}

.faq-answer p {
  padding: 0 20px 20px;
  color: #666;
}

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

.faq-question i {
  transition: transform 0.3s;
  color: var(--primary-color);
}

/* Final CTA */
.final-cta {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  text-align: center;
}

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

.cta-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-text p {
  font-size: 20px;
  margin-bottom: 30px;
  color: rgba(0,0,0,0.8);
}

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

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

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

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

.btn-whatsapp {
  background-color: var(--success-color);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s;
}

.btn-whatsapp:hover {
  background-color: #20b859;
}

.btn-phone-cta {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s;
}

.btn-phone-cta:hover {
  background-color: #333;
}

.btn-form-cta {
  background-color: var(--white);
  color: var(--secondary-color);
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s;
}

.btn-form-cta:hover {
  background-color: #f0f0f0;
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: #ccc;
  padding: 60px 0 20px;
}

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

.footer-section h3 {
  margin-bottom: 20px;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-section p {
  margin-bottom: 10px;
}

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

.footer-section li {
  margin-bottom: 10px;
}

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

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  transition: background 0.3s;
}

.social-links a:hover {
  background: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
}

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

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

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-form {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .hero-image {
    display: none;
  }
  
  .comparison {
    flex-direction: column;
  }
  
  .coverage-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .cta-text h2 {
    font-size: 32px;
  }
  
  .cities-list {
    flex-direction: column;
    gap: 20px;
  }
  
  .cta-actions {
    flex-direction: column;
  }
  
  .cta-actions a, .cta-actions button {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   INTERLINKS — adicione ao final do style.css
   Sobrescreve as classes genéricas .grid/.card/.links-list
   apenas dentro do bloco data-seo="interlink"
   ============================================ */

section[data-seo="interlink"] {
    padding: 0;
    margin-top: 32px;
}

section[data-seo="interlink"] .card {
    background: #fffdf8;
    border: 1px solid #e8dfc8;
    border-color: #e8dfc8; /* sobrescreve #e0e0e0 do .card genérico */
    border-radius: 14px;
    padding: 24px 28px;
    box-shadow: 0 4px 18px rgba(210, 172, 103, 0.10);
}

/* Traço dourado decorativo no topo */
section[data-seo="interlink"] .card::before {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, #f47f1a, #cd6b17);
    border-radius: 2px;
    margin-bottom: 14px;
}

/* Título da seção */
section[data-seo="interlink"] h2 {
    font-size: 15px;
    font-weight: 600;
    color: #cd6b17;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Ícone de localização inline via SVG encoded */
section[data-seo="interlink"] h2::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d2ac67' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Lista de links */
ul.links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
}

ul.links-list li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #a07830;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease, gap 0.2s ease;
}

/* Bolinha dourada antes de cada link */
ul.links-list li a::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #f47f1a;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

ul.links-list li a:hover {
    color: #cd6b17;
    gap: 10px;
}

ul.links-list li a:hover::before {
    transform: scale(1.4);
}

/* ============================================
   INTERLINKS v2 — adicione ao final do style.css
   Layout em grid 3 colunas, largura total do conteúdo
   ============================================ */

section[data-seo="interlink"] {
    width: 100%;
    margin-top: 40px;
}

/* Remove visual do .card e .grid genéricos dentro do interlink */
section[data-seo="interlink"] .card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

/* Cabeçalho com linhas laterais e label centralizado */
.interlink-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.interlink-header-line {
    flex: 1;
    height: 1px;
    background: #e8dfc8;
}

.interlink-header-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #cd6b17;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    white-space: nowrap;
}

.interlink-header-label svg {
    flex-shrink: 0;
}

/* Grid 3 colunas */
.interlink-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

/* Cards de link */
.interlink-grid a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fffdf8;
    border: 1px solid #e8dfc8;
    border-radius: 8px;
    padding: 11px 14px;
    color: #cd6b17;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.3;
    transition: all 0.2s ease;
}

.interlink-grid a svg {
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.interlink-grid a:hover {
    background: #fff8ec;
    border-color: #f47f1a;
    color: #5a4010;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(210, 172, 103, 0.18);
}

.interlink-grid a:hover svg {
    opacity: 1;
}