:root {
  --azul-profundo: #0F172A;
  --branco: #FFFFFF;
  --dourado-discreto: #C8A96B;
  --cinza-claro: #F8FAFC;
  --cinza-texto: #475569;
  --verde-whatsapp: #25D366;
  --verde-whatsapp-hover: #1EBE5D;
  --dourado-hover: #B5985E;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--cinza-texto);
  background-color: var(--cinza-claro);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--azul-profundo);
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
.text-gold { color: var(--dourado-discreto); }
.text-white { color: var(--branco); }
.text-dark { color: var(--azul-profundo); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--dourado-discreto);
  color: var(--branco);
}

.btn-primary:hover {
  background-color: var(--dourado-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 169, 107, 0.3);
}

.btn-whatsapp {
  background-color: #1E293B;
  color: var(--branco);
}

.btn-whatsapp:hover {
  background-color: #334155;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--branco);
  border: 2px solid var(--branco);
}

.btn-outline:hover {
  background-color: var(--branco);
  color: var(--azul-profundo);
}

/* Header */
.site-header {
  background-color: var(--branco);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo-img {
  height: 150px;
  width: auto;
}

/* Hero Section */
.hero {
  background-color: var(--azul-profundo);
  color: var(--branco);
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  color: var(--branco);
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.hero .subtitle {
  font-size: 1.25rem;
  color: var(--dourado-discreto);
  margin-bottom: 32px;
  font-weight: 500;
}

.hero .credentials {
  font-size: 1rem;
  color: #94A3B8; /* Muted text */
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 48px;
  font-weight: 700;
}

@keyframes highlightFlash {
  0% { background-color: rgba(200, 169, 107, 0.3); }
  100% { background-color: var(--branco); }
}

.highlight-section {
  animation: highlightFlash 2s ease-out forwards;
}

.section-light {
  background-color: var(--branco);
}

.section-gray {
  background-color: var(--cinza-claro);
}

/* Cards placeholder */
.card {
  background-color: var(--branco);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
  height: 100%;
}

.card h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Video Embed Wrapper */
.video-embed {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  background-color: var(--branco);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}
.video-embed iframe {
  width: 100%;
  border: none;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: var(--verde-whatsapp);
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: var(--verde-whatsapp-hover);
}

/* Footer */
.site-footer {
  background-color: var(--azul-profundo);
  color: var(--branco);
  padding: 60px 0 20px;
  text-align: center;
}

.footer-content {
  margin-bottom: 40px;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.875rem;
  color: #94A3B8;
}

/* Light Footer Modifier (Home Page Only) */
.site-footer.footer-light {
  background-color: var(--branco);
  color: var(--cinza-texto);
  border-top: 1px solid #E2E8F0;
}

.site-footer.footer-light .footer-bottom {
  border-top: 1px solid #E2E8F0;
  color: var(--cinza-texto);
}

/* Placeholder box */
.placeholder-box {
  background-color: #E2E8F0;
  border: 2px dashed #94A3B8;
  border-radius: 12px;
  padding: 60px 20px;
  text-align: center;
  color: var(--cinza-texto);
  font-weight: 500;
}

/* =========================================
   QUIZ STYLES
   ========================================= */
.quiz-container {
  background-color: var(--branco);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.quiz-header {
  display: flex;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid #E2E8F0;
  background-color: #F8FAFC;
}

.quiz-nav-btn {
  background: none;
  border: none;
  color: var(--cinza-texto);
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.quiz-nav-btn:hover {
  color: var(--azul-profundo);
  background-color: #E2E8F0;
}

.progress-bar-container {
  flex: 1;
  height: 8px;
  background-color: #E2E8F0;
  border-radius: 4px;
  margin: 0 24px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: var(--dourado-discreto);
  width: 0%;
  transition: width 0.5s ease-in-out;
  border-radius: 4px;
}

.quiz-content {
  padding: 48px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quiz-question {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-question-title {
  font-size: 1.75rem;
  color: var(--azul-profundo);
  margin-bottom: 32px;
  text-align: center;
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.quiz-option-card {
  background-color: #F8FAFC;
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
  color: var(--azul-profundo);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.quiz-option-card:hover {
  border-color: var(--dourado-discreto);
  background-color: rgba(200, 169, 107, 0.05);
  transform: translateY(-2px);
}

.quiz-option-card.selected {
  border-color: var(--dourado-discreto);
  background-color: rgba(200, 169, 107, 0.1);
  box-shadow: 0 4px 12px rgba(200, 169, 107, 0.2);
}

.quiz-input-group {
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.quiz-input {
  width: 100%;
  padding: 16px 24px;
  border: 2px solid #E2E8F0;
  border-radius: 8px;
  font-size: 1.1rem;
  font-family: inherit;
  color: var(--azul-profundo);
  transition: border-color 0.3s ease;
  margin-bottom: 24px;
}

.quiz-input:focus {
  outline: none;
  border-color: var(--dourado-discreto);
}

.quiz-btn-next {
  width: 100%;
}

.quiz-finish-text {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 32px;
}

.quiz-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}

.quiz-actions .btn {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    padding: 0 16px;
  }
  
  .btn {
    width: 100%;
  }

  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .section {
    padding: 60px 16px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 28px;
  }

  .quiz-content {
    padding: 32px 20px;
  }

  .quiz-header {
    padding: 16px 20px;
  }

  .quiz-question-title {
    font-size: 1.5rem;
  }
  
  .quiz-options-grid {
    grid-template-columns: 1fr;
  }
}

/* Follow Us Component */
.follow-us-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
  gap: 8px;
}

.follow-us-container p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cinza-texto);
  margin-bottom: 0;
}

.instagram-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--azul-profundo);
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
}

.instagram-follow-btn:hover {
  color: var(--dourado-discreto);
  transform: translateY(-2px);
}

.instagram-follow-btn.gold {
  color: var(--dourado-discreto);
}

.instagram-follow-btn i {
  font-size: 1.4rem;
  color: var(--dourado-discreto);
}

/* =========================================
   SERVICES GRID & PREMIUM CARD STYLES
   ========================================= */
.services-section {
  padding: 80px 0;
  background-color: var(--branco);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.service-card {
  background: var(--branco);
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 169, 107, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 24px;
  aspect-ratio: 16 / 10;
  background-color: var(--azul-profundo);
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Premium Badge */
.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--azul-profundo);
  color: var(--dourado-discreto);
  border: 1px solid var(--dourado-discreto);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
}

.card-badge.badge-left {
  right: auto;
  left: 12px;
}

/* Diagonal glass reflection effect */
.card-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-22deg);
  pointer-events: none;
  transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .card-image-wrapper::after {
  left: 150%;
}

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

.card-icon {
  position: absolute;
  bottom: 16px;
  left: 20px;
  width: 48px;
  height: 48px;
  background: var(--branco);
  border: 1px solid #E2E8F0;
  color: var(--azul-profundo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .card-icon {
  background: var(--dourado-discreto);
  color: var(--branco);
  border-color: var(--dourado-discreto);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(200, 169, 107, 0.3);
}

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--azul-profundo);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--cinza-texto);
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

.card-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--azul-profundo);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.3s ease, color 0.3s ease;
  margin-top: auto;
}

.card-cta i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.service-card:hover .card-cta {
  color: var(--dourado-discreto);
  gap: 12px;
}

.service-card:hover .card-cta i {
  transform: translateX(2px);
}

/* Social Section */
.social-section {
  padding: 60px 0;
  border-top: 1px solid #E2E8F0;
  background-color: var(--cinza-claro);
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 24px;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--cinza-texto);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-item i {
  font-size: 2rem;
  color: var(--azul-profundo);
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-item:hover {
  color: var(--dourado-discreto);
  transform: translateY(-2px);
}

.social-item:hover i {
  color: var(--dourado-discreto);
  transform: scale(1.1);
}

/* Responsive grid */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 32px 24px;
  }
}

.card-main-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-details-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dourado-discreto);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.3s ease, color 0.3s ease;
  margin-top: 16px;
  align-self: flex-start;
  text-decoration: none;
}

.card-details-link:hover {
  color: var(--dourado-hover);
  gap: 10px;
}

/* Homepage Header Slogan */
.site-header .container.site-header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.site-header-grid .header-tagline {
  font-size: 0.95rem;
  color: var(--cinza-texto);
  border-left: 1px solid #E2E8F0;
  padding-left: 20px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  justify-self: start;
}

@media (max-width: 768px) {
  .site-header .container.site-header-grid {
    grid-template-columns: 1fr auto;
    row-gap: 15px;
    column-gap: 10px;
    text-align: center;
  }

  .site-header-grid .logo {
    grid-column: 1;
    grid-row: 1;
  }

  .site-header-grid .desktop-nav {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .site-header-grid .header-tagline {
    grid-column: 1 / span 2;
    grid-row: 2;
    border-left: none;
    padding-left: 0;
    justify-self: center;
    font-size: 0.9rem;
    margin-top: 5px;
  }
}


