@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary-color: #FFC400; /* Amarelo ouro */
  --primary-hover: #E5B000;
  --secondary-color: #071322; /* Azul marinho escuro */
  --secondary-light: #0E223B;
  --secondary-dark: #030A12;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --text-light: #FFFFFF;
  --text-light-muted: #94A3B8;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --border-color: #E2E8F0;
  --success-color: #22C55E;
  
  --shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
  --shadow-premium: 0 20px 40px -10px rgba(7, 19, 34, 0.12);
  --shadow-card-hover: 0 30px 60px -15px rgba(7, 19, 34, 0.2);
  
  --font-sans: 'Outfit', 'Inter', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.bg-dark { background-color: var(--secondary-color); color: var(--text-light); }
.bg-light { background-color: var(--bg-light); }

.section-padding {
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .section-padding {
    padding: 7rem 0;
  }
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 0.75rem auto 0 auto;
  border-radius: 2px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.section-header.dark h2 {
  color: var(--text-light);
}
.section-header.dark p {
  color: var(--text-light-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -5px rgba(255, 196, 0, 0.4);
}

.btn-outline-white {
  background-color: transparent;
  border-color: var(--text-light);
  color: var(--text-light);
}
.btn-outline-white:hover {
  background-color: var(--text-light);
  color: var(--secondary-color);
  transform: translateY(-3px);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
}
.btn-secondary:hover {
  background-color: var(--secondary-light);
  transform: translateY(-3px);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(7, 19, 34, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 196, 0, 0.15);
  transition: background-color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background-color: rgba(7, 19, 34, 0.98);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  gap: 1rem;
  transition: height 0.35s ease;
}

.header.scrolled .header-container {
  height: 68px;
}

/* Mantendo o logo AGF intocado */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-light);
  line-height: 1.1;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

.logo-text span {
  color: var(--primary-color);
  font-size: 0.68rem;
  font-weight: 700;
  display: block;
  letter-spacing: 2px;
  margin-top: 2px;
  text-transform: uppercase;
}

/* Menu de Navegação Animado */
.nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  white-space: nowrap;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0.25rem;
  position: relative;
  white-space: nowrap;
  transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
  display: inline-block;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
  transform: translateY(-1px);
  text-shadow: 0 0 10px rgba(255, 196, 0, 0.5);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #FFC400, #FFE57F, #FFC400);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255, 196, 0, 0.8);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  opacity: 0;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

/* Destaque para Reservar Online */
.nav-link-highlight {
  background: rgba(255, 196, 0, 0.12);
  border: 1.5px solid rgba(255, 196, 0, 0.45);
  color: var(--primary-color) !important;
  padding: 0.45rem 1rem !important;
  border-radius: 20px;
  font-weight: 800 !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  animation: pulse-glow 3s infinite ease-in-out;
}

.nav-link-highlight:hover {
  background: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  box-shadow: 0 0 20px rgba(255, 196, 0, 0.7);
  transform: translateY(-2px) scale(1.05) !important;
  text-shadow: none !important;
}

.nav-link-highlight::after {
  display: none !important;
}

/* Botão CTA WhatsApp Super Animado */
.header-cta {
  display: none;
  flex-shrink: 0;
}

.btn-wa-header {
  position: relative;
  background: linear-gradient(135deg, #FFC400 0%, #E5B000 100%);
  color: #071322 !important;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(255, 196, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  text-decoration: none;
}

.btn-wa-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  transform: rotate(30deg) translateX(-100%);
  animation: shimmer-sweep 3.5s infinite ease-in-out;
}

.btn-wa-header:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(255, 196, 0, 0.6);
  background: linear-gradient(135deg, #FFE066 0%, #FFC400 100%);
}

.btn-wa-header svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.btn-wa-header:hover svg {
  transform: rotate(15deg) scale(1.2);
}

@keyframes shimmer-sweep {
  0% { transform: rotate(30deg) translateX(-150%); }
  35%, 100% { transform: rotate(30deg) translateX(150%); }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 196, 0, 0.2);
    border-color: rgba(255, 196, 0, 0.45);
  }
  50% {
    box-shadow: 0 0 14px rgba(255, 196, 0, 0.5);
    border-color: rgba(255, 196, 0, 0.85);
  }
}

.menu-toggle {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.75rem;
  cursor: pointer;
  display: block;
  padding: 0.5rem;
}

@media (min-width: 1050px) {
  .nav {
    display: block;
  }
  .header-cta {
    display: block;
  }
  .menu-toggle {
    display: none;
  }
}

/* Mobile Nav Modal */
.mobile-nav {
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  height: calc(100vh - 76px);
  background-color: var(--secondary-color);
  z-index: 999;
  transform: translateX(-100%);
  transition: var(--transition-smooth);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
}

.mobile-nav-link {
  color: var(--text-light);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 76px;
  background-color: var(--secondary-color);
  color: var(--text-light);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: brightness(0.7);
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(7, 19, 34, 0.95) 30%, rgba(7, 19, 34, 0.4) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content {
  max-width: 650px;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-title span {
  display: block;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-light-muted);
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 576px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

@media (min-width: 768px) {
  .hero-badges {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-badge-icon {
  flex-shrink: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.hero-badge-text {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Beneficios Section */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 576px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 196, 0, 0.18);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 196, 0, 0.6);
  background-color: rgba(255, 255, 255, 0.08);
}

.benefit-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(255, 196, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon-wrapper {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: scale(1.1);
}

.benefit-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
}

.benefit-card p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
}

/* Modelos Section */
.models-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .models-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.model-card {
  background-color: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.model-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(7, 19, 34, 0.1);
}

.model-img-wrapper {
  position: relative;
  background-color: #fcfcfc;
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  height: 220px;
}

.model-img-wrapper img {
  max-width: 90%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.model-card:hover .model-img-wrapper img {
  transform: scale(1.08) translateY(-5px);
}

.model-info {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.model-info h3 {
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.model-price {
  display: inline-flex;
  align-items: baseline;
  background: rgba(255, 196, 0, 0.15);
  border: 1px solid rgba(255, 196, 0, 0.4);
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.model-price .price-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--secondary-color);
}

.model-price .price-unit {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.model-short-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 1.25rem;
}

.model-specs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  margin-bottom: 2rem;
}

.model-spec-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.model-spec-item svg {
  color: var(--secondary-color);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.model-spec-item strong {
  font-weight: 600;
  color: var(--text-muted);
  width: 90px;
}

.model-spec-item span {
  font-weight: 600;
}

.model-actions {
  margin-top: auto;
}

.models-footer {
  text-align: center;
}

/* Como Funciona & Por que AGF Section */
.split-section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
}

@media (min-width: 992px) {
  .split-section-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
  }
}

/* Timeline Horizontal (que empilha em telas menores) */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .timeline {
    flex-direction: row;
    gap: 1.5rem;
  }
  .timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 8px, transparent 8px, transparent 16px);
    z-index: 1;
  }
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.timeline-icon-box {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--secondary-light);
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  position: relative;
  transition: var(--transition-smooth);
}

.timeline-step:hover .timeline-icon-box {
  border-color: var(--primary-color);
  background-color: var(--secondary-color);
  box-shadow: 0 0 25px rgba(255, 196, 0, 0.2);
  transform: scale(1.05);
}

.timeline-icon-box svg {
  width: 40px;
  height: 40px;
}

.timeline-number {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border: 2px solid var(--secondary-color);
}

.timeline-step h4 {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.timeline-step p {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  max-width: 200px;
}

/* Por que Escolher AGF list */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.why-item svg {
  color: var(--primary-color);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Reviews Section */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background-color: var(--bg-white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.review-stars svg {
  width: 18px;
  height: 18px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.review-author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--gray-light);
}

.review-author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.review-author-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
}

/* FAQ Section */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.faq-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.faq-question {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: var(--transition-smooth);
  color: var(--secondary-color);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 2rem;
}

.faq-content {
  padding-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 1px solid transparent;
}

/* Open FAQ State */
.faq-item.active {
  border-color: rgba(7, 19, 34, 0.15);
  box-shadow: var(--shadow-medium);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.faq-item.active .faq-body {
  max-height: 1000px; /* Alvo para transição */
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-content {
  border-top-color: var(--border-color);
  padding-top: 1.25rem;
}

/* Contato Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .contact-details {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: var(--secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-text h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light-muted);
  letter-spacing: 1px;
}

.contact-text p, .contact-text a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
}

.contact-map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) grayscale(30%) contrast(90%);
}

.contact-form-card {
  background-color: var(--secondary-light);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-premium);
}

.contact-form-card h3 {
  font-size: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: var(--text-light);
  letter-spacing: -0.5px;
}

.contact-form-card h3 span {
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-control {
  width: 100%;
  background-color: var(--secondary-color);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(255, 196, 0, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background-color: var(--secondary-dark);
  color: var(--text-light);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 576px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 2rem;
  }
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-about p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-links-col h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.footer-links-list a {
  color: var(--text-light-muted);
  font-size: 0.95rem;
}

.footer-links-list a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-light-muted);
}

.footer-contact-item svg {
  color: var(--primary-color);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: var(--text-light-muted);
}

.footer-contact-item a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  color: var(--text-light-muted);
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.seo-tags-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  list-style: none;
}

.seo-tags-list a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

.seo-tags-list a:hover {
  color: var(--primary-color);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  z-index: 998;
  cursor: pointer;
  transition: var(--transition-bounce);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@keyframes pulse-wa {
  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);
  }
}

/* Detail Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 19, 34, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

.modal.open {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.modal-content {
  background-color: var(--bg-white);
  border-radius: 20px;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-premium);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: grid;
  grid-template-columns: 1fr;
}

.modal.open .modal-content {
  transform: scale(1);
}

@media (min-width: 768px) {
  .modal-content {
    grid-template-columns: 1fr 1fr;
  }
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background-color: var(--bg-light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--secondary-color);
  font-weight: bold;
  z-index: 10;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: rotate(90deg);
}

.modal-left {
  background-color: #fcfcfc;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
}

@media (min-width: 768px) {
  .modal-left {
    border-bottom: 0;
    border-right: 1px solid var(--border-color);
  }
}

.modal-left img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.modal-right {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.modal-specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.modal-spec-detail {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
  font-size: 0.95rem;
}

.modal-spec-detail strong {
  width: 110px;
  color: var(--text-muted);
}

.modal-spec-detail span {
  font-weight: 600;
  color: var(--secondary-color);
}

.modal-items-included {
  margin-bottom: 2.5rem;
}

.modal-items-included h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.modal-included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.modal-included-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.modal-included-item svg {
  color: var(--success-color);
  width: 14px;
  height: 14px;
}

/* Breadcrumb Styling */
.breadcrumb-nav {
  padding: 1.5rem 0 0.5rem 0;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.breadcrumb-item {
  color: var(--text-muted);
}

.breadcrumb-item a {
  color: var(--secondary-color);
}

.breadcrumb-item a:hover {
  color: var(--primary-color);
}

.breadcrumb-item::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--border-color);
}

.breadcrumb-item:last-child::after {
  content: '';
}

.breadcrumb-item.active {
  color: var(--text-muted);
  font-weight: 500;
}

/* Local SEO Text Section */
.seo-text-section {
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.seo-text-container {
  max-width: 900px;
  margin: 0 auto;
}

.seo-text-content h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.seo-text-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.seo-text-content ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

@media (min-width: 576px) {
  .seo-text-content ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

.seo-text-content li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.seo-text-content li svg {
  color: var(--primary-color);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── Model Price & Short Desc ── */
.model-price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 0.5rem;
}

.model-price .price-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.model-price .price-unit {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.model-short-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* ── Requisitos Section ── */
.requisitos-section {
  background: var(--bg-light);
}

.requisitos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.requisito-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: var(--transition-smooth);
}

.requisito-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-color);
}

.requisito-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 196, 0, 0.12), rgba(255, 196, 0, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.requisito-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
}

.requisito-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.requisito-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.requisito-badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 196, 0, 0.12);
  color: #b8860b;
  border: 1px solid rgba(255, 196, 0, 0.25);
}

.requisito-badge-info {
  background: rgba(7, 19, 34, 0.08);
  color: var(--secondary-color);
  border-color: rgba(7, 19, 34, 0.15);
}

/* CTA card */
.requisito-card-cta {
  background: var(--secondary-color);
  border-color: var(--secondary-light);
}

.requisito-card-cta:hover {
  border-color: var(--primary-color);
}

.requisito-card-cta .requisito-icon {
  background: rgba(255, 196, 0, 0.15);
}

.requisito-card-cta .requisito-icon svg {
  color: var(--primary-color);
  width: 26px;
  height: 26px;
}

.requisito-card-cta h3 {
  color: var(--text-light);
}

.requisito-card-cta p {
  color: var(--text-light-muted);
}

@media (max-width: 640px) {
  .requisitos-grid {
    grid-template-columns: 1fr;
  }
}
