
  :root {
    --bg: #f6f6f6;
    --primary: #8b1d2b;
    --dark: #111213;
    --muted: #6b7280;
    --card: #ffffff;
    --glass: rgba(255, 255, 255, 0.85);
    --shadow: 0 8px 24px rgba(12, 12, 12, 0.12);
    --container-max: 1100px;
    --primary-color: #800000; /* Vinho Forte */
    --accent-color: #FFD700; /* Amarelo/Dourado */
    --transparent-accent: rgba(255, 215, 0, 0.15); /* Amarelo Transparente para fundo/borda */
    --text-color: #343a40; /* Texto Escuro */
    --secondary-text: #6c757d;
    --background-color: #f8f9fa; /* Fundo Leve Padrão */
    --card-background: #ffffff; /* Branco */
  
  }

  * {
    box-sizing: border-box;
  }
  html,
  body {
    height: 100%;
  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* altura do header */
  }

  body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: var(--bg);
    color: #111;
    line-height: 1.45;
    padding-top: 72px;
    /* altura aproximada do header */
  }

  .wrap {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Header */
  header {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.45));
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(6px);
  }

  .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    position: relative;
  }

  .brand {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .logo {
    width: 48px;
    height: 48px;
    background: var(--primary);
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    font-weight: 800;
    color: white;
    box-shadow: 0 6px 18px rgba(139, 29, 43, 0.25);
  }

  /* nav padrão */
  nav ul {
    list-style: none;
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
    align-items: center;
  }

  nav a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
  }

  .btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(139, 29, 43, 0.18);
  }

  /* Hamburger menu */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: absolute;
    top: 16px;
    right: 20px;
    z-index: 50;
  }

  .hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 2px;
  }

  /* Menu lateral mobile */
  nav {
    position: relative;
  }

  nav.active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: var(--dark);
    padding: 14px;
    border-radius: 8px 0 0 8px;
    gap: 14px;
    min-width: 200px;
    box-shadow: var(--shadow);
  }

  nav.active a {
    color: white;
  }

  nav.active .btn-primary {
    width: 100%;
  }

  /* HERO */
  .hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1575505586569-646b2ca898fc?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.55);
    z-index: 0;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 56px 20px;
    width: 100%;
  }

  .hero-inner {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
  }

  .hero h1 {
    font-size: 42px;
    margin: 0 0 12px 0;
    font-weight: 800;
    line-height: 1.02;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  }

  .hero p.lead {
    margin: 0 0 20px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    max-width: 680px;
  }

  /* Contact card */
  .contact-card {
    background: var(--glass);
    border-radius: 10px;
    padding: 18px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(6px);
  }

  .contact-card label {
    display: block;
    font-size: 13px;
    color: #23262b;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .contact-card input,
  .contact-card select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    margin-bottom: 10px;
    outline: none;
  }

  .contact-row {
    display: flex;
    gap: 8px;
  }

  .contact-row input {
    flex: 1;
  }

  /* main content */
  main {
    padding: 40px 0 80px
  }

  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
  }

  .about .text h2 {
    color: var(--dark);
    margin-top: 0
  }

  .about img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow)
  }

  /* team cards */
  .team-strip {
    margin-top: 28px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .team-member {
    min-width: 180px;
    text-align: center;
  }

  .team-member h4 {
    margin: 6px 0 0 0;
    font-size: 16px
  }

  .team-member p {
    margin: 2px 0 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9)
  }

  /* footer */
  footer {
    background: #0f1720;
    color: #cbd5e1;
    padding: 36px 0;
    margin-top: 40px;
  }

  footer .foot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 220px;
    gap: 20px;
    align-items: start;
  }

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

  .small {
    font-size: 13px;
    color: #94a3b8
  }

  /* responsive */
  @media (max-width:1000px) {
    .hero-inner {
      grid-template-columns: 1fr
    }

    .about {
      grid-template-columns: 1fr
    }

    .areas-grid {
      grid-template-columns: repeat(2, 1fr)
    }

    footer .foot-grid {
      grid-template-columns: 1fr
    }
  }

  @media (max-width:600px) {
    .top {
      flex-direction: row;
      align-items: center;
    }

    nav ul {
      display: none;
    }

    .hamburger {
      display: flex;
    }

    .hero h1 {
      font-size: 30px
    }

    .areas-grid {
      grid-template-columns: 1fr
    }

    .brand {
      margin-left: 10px;
      /* dá um respiro da borda esquerda */
    }
  }

  .floating-chat {
    position: fixed;
    right: 18px;
    bottom: 18px;
    background: linear-gradient(180deg, var(--primary), #6a1620);
    color: white;
    padding: 12px 14px;
    border-radius: 999px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.25);
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
    z-index: 40;
  }

  .btn-primary,
  a {
    transition: all 0.3s ease;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(139, 29, 43, 0.35);
  }

  nav a:hover {
    color: var(--primary);
  }

  .hero::before {
    animation: zoomHero 12s ease-in-out infinite alternate;
  }

  @keyframes zoomHero {
    from {
      transform: scale(1);
    }

    to {
      transform: scale(1.1);
    }
  }

  .hamburger span {
    transition: all 0.4s ease;
  }

  nav.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  nav.active .hamburger span:nth-child(2) {
    opacity: 0;
  }

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

  .floating-chat {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse 2s infinite;
  }

  .floating-chat:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  @keyframes pulse {

    0%,
    100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.08);
    }
  }

/* Seção About */
.animated-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 60px 20px;
  max-width: var(--container-max);
  margin: 0 auto;
  overflow: hidden;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.about-image img {
  width: 100%;
  display: block;
  transform: scale(1);
  transition: transform 0.8s ease;
}

.about-image:hover img {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.text h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--dark);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.2s;
}

.text p.lead {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.text p.lead:nth-of-type(2) {
  animation-delay: 0.4s;
}

.cta-button {
  margin-top: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.6s;
}

.team-strip {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.team-member {
  flex: 1 1 180px;
  background: var(--card);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}


.team-member .name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--dark); /* <- adicionado */
  }
  .team-member p {
    color: var(--muted); /* deixa a descrição mais suave */
  }
  

/* Fade in animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo */
@media (max-width: 1000px) {
  .animated-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Seção */
.areas {
  padding: 80px 20px;
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}

.areas h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.areas h2::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  background: var(--primary);
  left: 20%;
  bottom: -10px;
  border-radius: 4px;
}

/* Grid */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

/* Card */
.area {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUp 0.8s forwards;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.area:nth-child(1) { animation-delay: 0.2s; }
.area:nth-child(2) { animation-delay: 0.4s; }
.area:nth-child(3) { animation-delay: 0.6s; }

.area:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* Imagem */
.area-image {
  overflow: hidden;
  height: 180px;
}

.area-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.area:hover .area-image img {
  transform: scale(1.08);
}

/* Conteúdo */
.area-content {
  padding: 20px;
  text-align: left;
}

.area-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--dark);
}

.area-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Animação */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#planos {
  padding: 60px 0;
  background: linear-gradient(180deg, #fafafa, #f6f6f6);
}

#planos .title-center {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--dark);
}

#planos .subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 40px;
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.plano {
  background: white;
  border-radius: 14px;
  padding: 28px 22px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.6s ease;
}

.plano.visible {
  opacity: 1;
  transform: translateY(0);
}

.plano h3 {
  font-size: 1.3rem;
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--primary);
}

.plano .price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin: 12px 0 18px;
}
.plano .price span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.plano ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  font-size: 0.95rem;
  color: var(--muted);
}
.plano ul li {
  margin: 8px 0;
}

.plano button {
  width: 100%;
  border-radius: 8px;
  padding: 12px;
  font-weight: 700;
}


#escritorios {
  padding: 60px 0;
  background: #f8f9fb;
}

#escritorios h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #222;
}

.escritorios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.escritorio {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.escritorio:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.escritorio img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.escritorio h3 {
  font-size: 1.2rem;
  margin: 16px;
  color: #004080;
}

.escritorio p {
  margin: 4px 16px 12px;
  color: #555;
  font-size: 0.95rem;
}

.escritorio .small {
  font-size: 0.85rem;
  color: #777;
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--card, #fff);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow, 0 4px 12px rgba(0,0,0,0.08));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.team-header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.team-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.team-card h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
}

.team-card .small {
  font-size: 0.9rem;
  color: #666;
}

.team-bio {
  margin: 12px 0;
  color: var(--muted, #444);
  font-size: 0.95rem;
  line-height: 1.4;
}


.contato-section {
  margin-top: 60px;
  padding: 40px 20px;
  background: #f9f9fb;
}

.contato-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 32px;
  color: #222;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.contato-form {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #004080;
  outline: none;
}

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.form-feedback {
  font-size: 0.9rem;
  color: green;
  display: none;
}

.contato-info {
  background: linear-gradient(180deg,#fff,#fefefe);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contato-info h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.contato-info p {
  margin: 0 0 12px;
  color: #444;
}

.contato-info h4 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: #222;
}

.planos-section {
  background: linear-gradient(180deg, #f9f9f9 0%, #fff 100%);
  padding: 80px 20px;
  text-align: center;
}

.titulo-planos {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 10px;
  margin-top: 7px;
  font-weight: 700;
}

.subtitulo-planos {
  color: #555;
  max-width: 720px;
  margin: 0 auto 50px;
  font-size: 15px;
}

.planos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.plano-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  width: 300px;
  padding: 30px 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plano-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.plano-card.destaque {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%);
}

.plano-topo h3 {
  font-size: 1.4rem;
  color: #1f2937;
  margin-bottom: 6px;
}

.plano-preco {
  display: block;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.plano-lista {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}

.plano-lista li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #2b2b2b;
}

.plano-lista li.off {
  opacity: 0.5;
  text-decoration: line-through;
}

.btn-plano {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-plano:hover {
  background: #1b4f80;
}

.destaque-btn {
  background: var(--accent);
}

.destaque-btn:hover {
  background: #ff9f00;
}
/* Fundo da seção de planos */
.planos-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #f6f6f6 0%, #ffffff 100%);
  overflow: hidden;
}

/* Elementos decorativos abstratos atrás dos cards */
.planos-section::before,
.planos-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
}

.planos-section::before {
  width: 500px;
  height: 500px;
  background: #2196f3;
  top: -150px;
  left: -150px;
}

.planos-section::after {
  width: 400px;
  height: 400px;
  background: #f44336;
  bottom: -100px;
  right: -100px;
}

/* Garantir que os cards fiquem acima do fundo decorativo */
.planos-container,
.planos-section .wrap {
  position: relative;
  z-index: 1;
}

/* Pequena sombra e destaque nos cards */
.plano-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(12, 12, 12, 0.12);
  padding: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.plano-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(12, 12, 12, 0.18);
}

/* Títulos com ícones já alinhados */
.plano-topo h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
}
.escritorio-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
  font-size: 13px;
}

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

.escritorio-logo img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.escritorio-info {
  padding: 10px 12px;
}

.escritorio-info h3 {
  color: #8b1d2b;
  margin-bottom: 4px;
  font-size: 16px;
}

.escritorio-info p {
  margin: 2px 0;
  font-size: 12px;
  color: #555;
}

.escritorio-info p.small {
  font-size: 11px;
  color: #777;
}
.escritorio-card {
  display: flex;
  gap: 15px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  background-color: #fff;
}
.escritorio-logo {
  flex-shrink: 0;
  width: 120px;  /* largura fixa */
  height: 120px; /* altura fixa */
  overflow: hidden;
  border-radius: 8px;
}

.escritorio-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* mantém proporção e corta se necessário */
}

.escritorio-info h3 {
  margin: 0 0 5px 0;
  
}


@media (max-width: 768px) {
  .planos-container {
    flex-direction: column;
    align-items: center;
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .contato-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Seção Principal --- */
.contato-section {
  padding: 60px 0; /* Menos padding */
  background-color: var(--background-color);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.contato-section .container {
  max-width: 900px; /* Container mais estreito */
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  text-align: center;
  font-size: 2em; /* Título menor */
  color: var(--primary-color);
  margin-bottom: 8px;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  font-size: 1em;
  color: var(--secondary-text);
  margin-bottom: 30px;
}

/* --- Card de Informações Único e Compacto --- */
.contato-info-card-single {
  background-color: var(--card-background);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 5px solid var(--primary-color); /* Destaque com a cor Vinho */
}

.contato-info-card-single h4 {
  color: var(--primary-color);
  font-size: 1.1em;
  margin-bottom: 10px;
}

/* --- Lista de Itens --- */
.info-list-compact {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-bottom: 1px dashed var(--transparent-accent);
  padding-bottom: 20px;
}

.info-item-compact {
  display: flex;
  align-items: center;
}

.info-item-compact .icon-compact {
  font-size: 1.2em; /* Ícone menor */
  color: var(--primary-color);
  margin-right: 12px;
  background-color: var(--transparent-accent);
  padding: 8px;
  border-radius: 6px;
  min-width: 38px;
  text-align: center;
}

.text-content-compact h4 {
  margin: 0 0 2px 0;
  font-size: 0.95em; /* Texto menor */
  font-weight: 600;
  color: var(--text-color);
}

.text-content-compact p {
  margin: 0;
  font-size: 0.9em; /* Texto menor */
  color: var(--secondary-text);
}


/* --- Horário --- */
.horario-box-compact {
  padding-top: 15px;
  margin-bottom: 25px;
}

.horario-box-compact h4 {
  font-size: 1em;
  color: var(--text-color);
  margin-bottom: 5px;
}

.horario-box-compact .fa-clock {
  color: var(--accent-color);
  margin-right: 5px;
}

.horario-box-compact p {
  font-size: 0.9em;
  color: var(--secondary-text);
}

.horario-time {
  font-weight: 600;
  color: var(--text-color);
}

/* --- Redes Sociais --- */
.social-links-compact h4 {
  font-size: 1em;
  color: var(--text-color);
  margin-bottom: 10px;
}

.social-icons-compact {
  display: flex;
  gap: 10px;
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px; /* Botões menores */
  height: 35px; /* Botões menores */
  border-radius: 50%;
  font-size: 1.1em;
  color: var(--card-background); /* Branco */
  transition: background-color 0.3s ease-in-out, transform 0.3s;
}

.social-icon-btn:hover {
  transform: scale(1.05);
}

.social-icon-btn.whatsapp {
  background-color: #25d366; 
}

.social-icon-btn.whatsapp:hover {
  background-color: #128c7e;
}

.social-icon-btn.facebook {
  background-color: #1877f2;
}

.social-icon-btn.facebook:hover {
  background-color: #0c61e0;
}

.social-icon-btn.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 60%, #d6249f 70%, #285AEB 100%);
}

.social-icon-btn.instagram:hover {
  opacity: 0.9;
}

/* Layout para telas maiores: colocar itens lado a lado */
@media (min-width: 768px) {
  .info-list-compact {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between;
  }
  .info-item-compact {
      width: 48%; /* Duas colunas */
  }
}

@media (min-width: 1024px) {
  .info-list-compact {
      flex-direction: row;
      justify-content: space-around;
      gap: 0;
  }
  .info-item-compact {
      width: auto; /* Três colunas */
  }
}


