@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

:root {
  --azul-escuro: #0a0a23;
  --azul-escuro2: #0a0a23;
  --dourado: #ffb300;
  --cinza-bg: #f8fafc;
  --cinza-card: #ffffff;
  --branco: #fff;
  --texto-primario: #0a0a23;
  --texto-secundario: #37474f;
  --texto-terciario: #546e7a;
  --sombra-suave: 0 4px 20px rgba(10, 10, 35, 0.08);
  --sombra-media: 0 8px 32px rgba(10, 10, 35, 0.12);
  --sombra-forte: 0 16px 48px rgba(10, 10, 35, 0.16);
  --borda-radius: 16px;
  --transicao: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--cinza-bg);
  color: var(--texto-secundario);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== HEADER ===== */
header {
  background: var(--texto-primario);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  border-bottom: 2px solid var(--dourado);
  z-index: 1000;
  position: relative;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-desktop {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--texto-primario);
  flex-direction: column;
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(10, 10, 35, 0.3);
  border-top: 2px solid var(--dourado);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-mobile.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-mobile a {
  color: var(--branco);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.nav-mobile a:hover {
  background: rgba(255, 179, 0, 0.1);
  color: var(--dourado);
  padding-left: 2.5rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--branco);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-desktop a {
  color: var(--branco);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transicao);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dourado);
  transition: var(--transicao);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.nav-desktop a:hover {
  color: var(--dourado);
}

/* ===== HERO SECTION ===== */
.hero-custom {
  background: var(--texto-primario);
  color: var(--branco);
  padding: 4rem 0 3rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--dourado);
}

.hero-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-custom-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 5rem;
  position: relative;
  z-index: 2;
  gap: 5rem;
}

.hero-content-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 0.8;
  max-width: 680px;
}

.hero-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  color: var(--branco);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.01em;
  position: relative;
  text-align: left;
  opacity: 0.9;
  max-width: 18ch;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--dourado);
  border-radius: 2px;
}

.hero-latin {
  font-size: 2rem;
  font-style: italic;
  color: var(--dourado);
  font-weight: 900;
  margin-bottom: 1rem;
  text-align: center;
  background: rgba(255, 179, 0, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--dourado);
  backdrop-filter: blur(10px);
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
  text-align: justify;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.85);
}

.btn-whatsapp-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--dourado) 0%, #ffd54f 100%);
  color: var(--texto-primario);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(255, 179, 0, 0.35);
  max-width: fit-content;
  border: 2px solid var(--dourado);
  position: relative;
  overflow: hidden;
}

.btn-whatsapp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-whatsapp-hero:hover::before {
  left: 100%;
}

.btn-whatsapp-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 179, 0, 0.6);
  border-color: var(--branco);
}

.hero-logo-col {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex: 1.35 1 0;
}

.hero-logo-img {
  max-width: 1000px;
  width: 100%;
  height: auto;
  background: linear-gradient(135deg, var(--texto-primario) 0%, #1a1a3a 100%);
  border-radius: 10px;
  box-shadow: 
    0 12px 40px rgba(10, 10, 35, 0.4),
    0 4px 16px rgba(255, 179, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 4px solid rgba(255, 179, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  filter: drop-shadow(0 8px 24px rgba(10, 10, 35, 0.3));
}

.hero-logo-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 179, 0, 0.05) 50%, transparent 70%);
  pointer-events: none;
}

.hero-logo-img:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 
    0 20px 60px rgba(10, 10, 35, 0.5),
    0 8px 24px rgba(255, 179, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 179, 0, 0.4);
  filter: drop-shadow(0 12px 32px rgba(10, 10, 35, 0.4));
}

.hero-contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  padding: 1.5rem 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 179, 0, 0.2);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--branco);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.contact-item:hover {
  background: rgba(255, 179, 0, 0.1);
  transform: translateY(-1px);
}

.contact-item svg {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--dourado);
  filter: drop-shadow(0 1px 3px rgba(255, 179, 0, 0.3));
}

/* ===== SECTIONS ===== */
section {
  padding: 4rem 0;
}

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

/* ===== SERVICES SECTION ===== */
.areas {
  background: var(--branco);
  padding: 5rem 0;
  border-bottom: 1px solid rgba(10, 10, 35, 0.1);
}

.areas h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--texto-primario);
  margin-bottom: 1rem;
  position: relative;
}

.areas h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--dourado);
  border-radius: 2px;
}

.areas-latin {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--dourado);
  font-weight: 600;
    text-align: center;
  margin-bottom: 1rem;
  background: rgba(255, 179, 0, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--dourado);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.areas-subtitle {
  text-align: justify;
  font-size: 1.1rem;
  color: var(--texto-secundario);
  max-width: 600px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

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

  .area-card {
  background: var(--branco);
  border-radius: 16px;
  padding: 2rem 1.5rem 1cm;
  box-shadow: 0 8px 32px rgba(10, 10, 35, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(10, 10, 35, 0.1);
  position: relative;
  overflow: hidden;
 }

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--dourado), #ffd54f);
}

.area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(10, 10, 35, 0.25);
  border-color: var(--dourado);
}

.area-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--dourado);
}

.area-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--texto-primario);
  margin-bottom: 1rem;
}

.area-card p {
  color: var(--texto-secundario);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* Garante que o botão fique alinhado na base do card, a 1cm da borda */
.area-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.area-card .btn-area {
  margin-top: auto;
}

.btn-area {
  display: inline-flex;
    align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--texto-primario);
  color: var(--branco);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transicao);
    text-align: center;
  width: 100%;
  font-size: 0.95rem;
}

.btn-area:hover {
  background: var(--dourado);
  color: var(--texto-primario);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 179, 0, 0.4);
}

/* ===== ABOUT SECTION ===== */
.sobre-section {
  background: linear-gradient(135deg, var(--branco) 0%, #f8f9ff 100%);
  padding: 5rem 0;
  border-bottom: 1px solid rgba(26, 35, 126, 0.1);
}

.sobre-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sobre-title {
    text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--texto-primario);
  margin-bottom: 1rem;
  position: relative;
}

.sobre-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--dourado);
  border-radius: 2px;
}

.sobre-latin {
    font-size: 1rem;
  font-style: italic;
  color: var(--dourado);
  font-weight: 600;
    text-align: center;
  margin-bottom: 2rem;
  background: rgba(255, 179, 0, 0.08);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--dourado);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.sobre-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

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

.sobre-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--texto-secundario);
  margin: 0;
  text-align: justify;
}

.diferenciais {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.diferencial-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--branco) 0%, #f8f9ff 100%);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(26, 35, 126, 0.1);
  border: 2px solid rgba(26, 35, 126, 0.08);
  transition: all 0.3s ease;
}

.diferencial-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 35, 126, 0.15);
  border-color: rgba(255, 179, 0, 0.2);
}

.diferencial-item svg {
  width: 2rem;
  height: 2rem;
  color: var(--dourado);
  flex-shrink: 0;
}

.diferencial-item h4 {
    font-size: 1.1rem;
  font-weight: 700;
  color: var(--texto-primario);
  margin: 0 0 0.5rem 0;
}

.latin-quote {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--dourado);
  font-weight: 600;
  margin-bottom: 0.5rem;
  background: rgba(255, 179, 0, 0.06);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  border-left: 3px solid var(--dourado);
  display: inline-block;
}

.diferencial-item p {
    font-size: 0.95rem;
  color: var(--texto-terciario);
  margin: 0;
  line-height: 1.5;
  text-align: justify;
}

.sobre-img {
  display: flex;
    justify-content: center;
}

.sobre-img img {
  width: 250px;
  height: auto;
  border-radius: var(--borda-radius);
  box-shadow: var(--sombra-media);
  transition: var(--transicao);
}

.sobre-img img:hover {
  transform: scale(1.05);
}

/* ===== TESTIMONIALS SECTION ===== */
.depoimentos-section {
  background: linear-gradient(135deg, #f8f9ff 0%, var(--branco) 100%);
  padding: 5rem 0;
  border-bottom: 1px solid rgba(26, 35, 126, 0.1);
}

.depoimentos-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--texto-primario);
  margin-bottom: 0.5rem;
  position: relative;
}

.depoimentos-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--dourado);
  border-radius: 2px;
}

.depoimentos-latin {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--dourado);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  background: rgba(255, 179, 0, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--dourado);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.depoimentos-subtitle {
  text-align: justify;
  font-size: 1.1rem;
  color: var(--texto-terciario);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.avaliacao-geral {
  text-align: center;
  margin-bottom: 3rem;
}

.avaliacao-texto h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dourado);
  margin-bottom: 0.5rem;
}

.estrelas {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.avaliacao-texto p {
  color: var(--texto-terciario);
  margin-bottom: 1rem;
}

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

.depoimento-card {
  background: linear-gradient(135deg, var(--branco) 0%, #f8f9ff 100%);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(26, 35, 126, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(26, 35, 126, 0.08);
}

.depoimento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26, 35, 126, 0.2);
  border-color: rgba(255, 179, 0, 0.3);
}

.depoimento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-media);
}

.depoimento-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 179, 0, 0.2);
}

.depoimento-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--texto-primario);
  margin: 0 0 0.5rem 0;
  text-align: center;
}

.depoimento-info .estrelas {
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
  text-align: center;
}

.depoimento-texto {
  color: var(--texto-secundario);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
  text-align: justify;
  font-size: 1rem;
  padding: 0 0.5rem;
}

/* ===== CONTACT SECTION ===== */
.contato-section {
  background: var(--branco);
  padding: 3rem 0;
}

.contato-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--texto-primario);
  margin-bottom: 2rem;
  position: relative;
}

.contato-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--dourado);
  border-radius: 2px;
}

.contato-cards {
  display: grid;
    grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contato-card {
  background: var(--branco);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(10, 10, 35, 0.15);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(10, 10, 35, 0.1);
}

.contato-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--dourado) 0%, #ffd54f 100%);
}

.contato-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(10, 10, 35, 0.3);
  border-color: var(--dourado);
}

.contato-card-icon {
  margin-bottom: 1rem;
}

.contato-card-icon svg {
  width: 3rem;
  height: 3rem;
  color: var(--dourado);
  filter: drop-shadow(0 2px 8px rgba(255, 179, 0, 0.3));
}

.contato-card-icon.address svg {
  color: var(--texto-primario);
  filter: drop-shadow(0 2px 8px rgba(10, 10, 35, 0.3));
}

.contato-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--texto-primario);
  margin-bottom: 1rem;
  position: relative;
}

.contato-card-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--dourado);
  border-radius: 1px;
}

.contato-card-title.address {
  color: var(--texto-primario);
}

.contato-card-text {
  color: var(--texto-secundario);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  text-align: justify;
  background: rgba(10, 10, 35, 0.05);
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--dourado);
}

.contato-card-address {
  color: var(--texto-primario);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  background: rgba(10, 10, 35, 0.08);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(10, 10, 35, 0.15);
}

.contato-mapa {
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(10, 10, 35, 0.2);
  height: 220px;
  width: 100%;
  border: 2px solid rgba(10, 10, 35, 0.15);
}

.contato-btn {
  display: inline-block;
  background: var(--dourado);
  color: var(--texto-primario);
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  text-align: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(255, 179, 0, 0.4);
  border: 2px solid var(--dourado);
  position: relative;
  overflow: hidden;
}

.contato-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
    width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.contato-btn:hover::before {
  left: 100%;
}

.contato-btn:hover {
  background: var(--branco);
  color: var(--texto-primario);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
  border-color: var(--branco);
}

.contato-btn.whatsapp {
  background: #25d366;
}

.contato-btn.whatsapp:hover {
  background: #128c7e;
}

.contato-btn.address {
  background: var(--texto-primario);
  color: var(--branco);
  border: 2px solid var(--texto-primario);
}

.contato-btn.address:hover {
  background: var(--dourado);
  color: var(--texto-primario);
  border-color: var(--dourado);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 179, 0, 0.3);
}

/* ===== FOOTER ===== */
footer {
  background: var(--texto-primario);
  color: var(--branco);
  text-align: center;
  padding: 2rem 0;
  border-top: 3px solid var(--dourado);
}

footer p {
  margin: 0;
  font-weight: 600;
}

/* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
  color: white;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--texto-primario);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(10, 10, 35, 0.2);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--texto-primario);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes pulse {
  0% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
  }

  100% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero-custom-flex {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
    padding: 0 3rem;
  }

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

  .hero-contact-info {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .header-flex {
    padding: 0 1rem;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-mobile {
    display: flex;
  }
  
  /* Ajuste de alinhamento para mobile */
  .hero-desc,
  .areas-subtitle,
  .area-card p,
  .sobre-text p,
  .diferencial-item p,
  .depoimentos-subtitle,
  .depoimento-texto,
  .contato-card-text {
    text-align: justify;
  }
  
  .btn-whatsapp-hero {
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  display: flex;
    align-items: center;
  justify-content: center;
    gap: 0.5rem;
  }
  
  .hero-contact-info {
    padding: 1.5rem 0;
    gap: 1rem;
  }
  
  .contact-item {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .contato-section {
    padding: 2rem 0;
  }

  .contato-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .contato-cards {
    max-width: 100%;
    padding: 0 0.5rem;
  }

  .contato-card {
    padding: 2rem 1.5rem;
  }

  .contato-card-text {
    padding: 0.75rem;
    font-size: 0.95rem;
  }

  .contato-card-address {
    padding: 0.75rem;
    font-size: 0.95rem;
  }

  .contato-mapa {
    height: 180px;
  }

  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 55px;
    height: 55px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .hero-title {
    font-size: 1.6rem;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 2rem;
    opacity: 0.85;
    max-width: 100%;
  }

  .hero-logo-img {
    padding: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 
      0 8px 24px rgba(10, 10, 35, 0.3),
      0 2px 8px rgba(255, 179, 0, 0.1);
  }

  .areas h2,
  .sobre-title,
  .depoimentos-section h2,
  .contato-title {
    font-size: 2rem;
  }

  .areas-grid,
  .depoimentos-grid,
  .contato-cards {
    grid-template-columns: 1fr;
  }

  .area-card,
  .depoimento-card,
  .contato-card {
    padding: 1.5rem;
  }

  .diferencial-item {
    padding: 1rem;
  }

  .sobre-img img {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.3rem;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 0.8rem;
    opacity: 0.8;
    max-width: 100%;
  }

  .areas h2,
  .sobre-title,
  .depoimentos-section h2,
  .contato-title {
    font-size: 1.5rem;
  }

  .hero-custom {
    padding: 2.5rem 0 1.5rem 0;
  }

  .hero-custom-flex {
    gap: 1.5rem;
  }

  .hero-content-col {
    order: 2;
    max-width: 100%;
  }

  .hero-logo-col {
    order: 1;
    margin-bottom: 1rem;
  }

  .btn-whatsapp-hero {
    font-size: 0.85rem;
    padding: 0.7rem 1rem;
    width: 100%;
    max-width: 280px;
  }

  .hero-contact-info {
    padding: 1rem 0;
    gap: 0.8rem;
  }

  .contact-item {
    padding: 0.6rem;
    font-size: 0.85rem;
  }

  .areas,
  .sobre-section,
  .depoimentos-section,
  .contato-section {
    padding: 3rem 0;
  }

  .area-card,
  .depoimento-card,
  .contato-card {
    padding: 1rem;
  }

  .sobre-img img {
    width: 150px;
  }

    .nav-desktop {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-mobile {
    display: flex;
  }
}