/* Reset e Variáveis Globais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1a3a52;
  --secondary: #d4a574;
  --accent: #f4f1de;
  --text: #2c2c2c;
  --light-gray: #f5f5f5;
  --border: #e0e0e0;
}

html {
  scroll-behavior: smooth;
}

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

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

/* Header / Topbar */
.topbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.topbar .container.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 20px;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex: 1;
}

.menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.menu a:hover {
  color: var(--secondary);
}

.whats {
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.whats:hover {
  background: #0f2438;
}

.hamb {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(26, 58, 82, 0.85) 0%, rgba(26, 58, 82, 0.75) 100%), 
              url('img/hero-coliseu.jpg') center center/cover no-repeat;
  background-attachment: fixed;
  color: white;
  padding: 120px 0;
  text-align: center;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-clip: padding-box;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 58, 82, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--secondary);
  display: block;
}

.italy-lines {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.italy-lines i {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.hero .signature {
    margin-top: 3rem;
    padding-top: 1.2rem;
    font-size: 1.45rem;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    letter-spacing: 0.6px;
    line-height: 1.8;
    position: relative;
}

.hero .signature::before {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background: var(--secondary);
    margin: 0 auto 1.2rem auto;
}

.hero .signature span {
    color: var(--secondary);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn.primary {
  background: var(--secondary);
  color: white;
}

.btn.primary:hover {
  background: #c49463;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.btn.secondary {
  background: transparent;
  color: white;
  border-color: white;
}

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

/* Trust Section */
.trust {
  background: var(--light-gray);
  padding: 2rem 0;
}

.trust-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  color: var(--text);
}

.trust-item span {
  font-size: 1.5rem;
  color: var(--secondary);
}

/* Section Styles */
section {
  padding: 80px 0;
}

section.blue {
  background: var(--primary);
  color: white;
}

section.blue .section-title h2,
section.blue .eyebrow {
  color: white;
}

section.blue .mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

section.blue .mini {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 3px solid var(--secondary);
}

section.blue .mini strong {
  color: #ffffff;
  display: block;
  margin-bottom: 0.5rem;
}

section.blue .mini p {
  color: #ffffff;
  font-size: 0.95rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.eyebrow {
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
}

section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Cards Grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary);
}

.card .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Split Layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split h2 {
  margin-bottom: 1.5rem;
}

.split p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: #555;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.list > div {
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 8px;
  border-left: 3px solid var(--secondary);
}

.list strong {
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.list p {
  font-size: 0.95rem;
  color: #666;
}

/* About Section */
.about {
  background: var(--light-gray);
}

/* Process Section */
.process {
  background: white;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  border-top: 3px solid var(--secondary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.step p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, var(--primary) 0%, #0f2438 100%);
  color: white;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cta-panel h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-panel p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  opacity: 0.95;
}

.info-panel h3 {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.info-panel p {
  margin-bottom: 1rem;
  line-height: 1.8;
  opacity: 0.9;
}

.info-panel strong {
  color: var(--secondary);
}

.info-panel a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.info-panel a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--primary);
  color: white;
  padding: 3rem 0 1rem;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-content img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-content p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* Floating WhatsApp Button */
.float-whats {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
  animation: pulse 2s infinite;
}

.float-whats:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .topbar .container.nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    gap: 0.5rem;
  }

  .menu.active {
    display: flex;
  }

  .hamb {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero {
    padding: 60px 0;
    min-height: auto;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 0;
  }

  section h2 {
    font-size: 1.8rem;
  }

  .trust-box {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .float-whats {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  section h2 {
    font-size: 1.5rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .whats {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}


/* Ajustes cirúrgicos: ícones SVG copiados da versão funcional */
.whats,
.btn.primary,
.btn.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.float-whats svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 0.75rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.10);
  color: white;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-links a:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

/* BLOCO CONTATO */

.info-panel h3,
.info-panel strong {
    color: var(--secondary) !important;
    font-weight: 700;
}

.info-panel p {
    color: #ffffff !important;
    font-weight: 400 !important;
}

.info-panel a,
.info-panel a:link,
.info-panel a:visited,
.info-panel a:active {
    color: #ffffff !important;
    font-weight: 400 !important;
    text-decoration: none;
}

.info-panel a:hover {
    color: #ffffff !important;
    font-weight: 400 !important;
    text-decoration: underline;
}

/* ===== CORREÇÃO DEFINITIVA - TEXTO AIRE EM BRANCO ===== */
section#aire.blue,
section#aire.blue p,
section#aire.blue .split p,
section#aire.blue .container p,
section#aire.blue div p {
    color: #ffffff !important;
    opacity: 1 !important;
}

/* Mantém os títulos do AIRE legíveis */
section#aire.blue h2,
section#aire.blue h3 {
    color: #ffffff !important;
    opacity: 1 !important;
}

/* Mantém os destaques dos cards do AIRE na cor dourada original */
section#aire.blue .mini strong {
    color: #ffffff !important;
}



/* ===== IMAGENS DOS SERVIÇOS - TAMANHO PEQUENO/PREMIUM ===== */
.card .icon {
  height: 82px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card .icon img {
  max-height: 72px;
  max-width: 118px;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 480px) {
  .card .icon {
    height: 76px;
  }

  .card .icon img {
    max-height: 66px;
    max-width: 108px;
  }
}


/* ===== PÁGINA DE FORMULÁRIO DE AGENDAMENTO ===== */
.prenotami-action {
  margin-top: 1.5rem;
}

.form-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0f2438 100%);
  color: #ffffff;
  padding: 80px 0 60px;
  text-align: center;
}

.form-hero h1 {
  color: #ffffff;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.form-hero p {
  max-width: 780px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.95;
}

.formulario-google {
  background: var(--light-gray);
  padding: 60px 0 80px;
}

.formulario-google .form-wrapper {
  max-width: 920px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.formulario-google iframe {
  width: 100%;
  min-height: 1900px;
  border: 0;
  display: block;
  border-radius: 12px;
}

.form-page-actions {
  margin-top: 1.5rem;
  text-align: center;
}

.form-page-actions .btn.secondary {
  color: var(--primary);
  border-color: var(--primary);
}

.form-page-actions .btn.secondary:hover {
  background: var(--primary);
  color: #ffffff;
}

@media (max-width: 768px) {
  .form-hero h1 {
    font-size: 2rem;
  }

  .formulario-google .form-wrapper {
    padding: 8px;
    border-radius: 10px;
  }

  .formulario-google iframe {
    min-height: 2100px;
  }
}
