/* ==================== GOOGLE FONTS ==================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ==================== VARIÁVEIS CSS ==================== */
:root {
   --header-height: 6rem;

  /* Cores */
  --primary-color: #005f40;
  --secondary-color: #4CAF50;
  --title-color: #333333;
  --text-color: #555555;
  --body-color: #FFFFFF;
  --container-color: #F8F9FA;
  --white-color: #FFFFFF;
  --light-gray-color: #E9ECEF;

  /* Fontes e Tipografia */
  --body-font: 'Poppins', sans-serif;
  --h1-font-size: 2.25rem;
  --h2-font-size: 1.5rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;

  /* Z-index */
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* ==================== BASE ==================== */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  overflow-x: hidden;
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: 600;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ==================== CLASSES REUTILIZÁVEIS ==================== */
.container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0 2rem;
}

.section__title {
  font-size: var(--h2-font-size);
  text-align: center;
  margin-bottom: 3rem;
}

.button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 1rem 1.75rem;
  border-radius: .5rem;
  font-weight: 500;
  transition: .3s;
  border: none;
  cursor: pointer;
}

.button:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.button--ghost {
  background-color: transparent;
  border: 2px solid var(--white-color);
  color: var(--white-color);
}

.button--ghost:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.button--white {
    background-color: var(--white-color);
    color: var(--primary-color);
    border: 2px solid transparent;
}

.button--white:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: 2px solid var(--white-color);
}

/* ==================== HEADER & NAV ==================== */
.header {
  width: 100%;
  background-color: var(--body-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo img {
  height: 65px;
  transition: height 0.3s ease; 
}

.nav__list {
  display: flex;
  column-gap: 2.5rem;
}

.nav__link {
  color: var(--title-color);
  font-weight: 500;
  position: relative;
  transition: .3s;
}

.nav__link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  left: 0;
  bottom: -6px;
  transition: .3s;
}

.nav__link:hover, .nav__link.active-link {
  color: var(--secondary-color);
}

.nav__link:hover::after, .nav__link.active-link::after {
  width: 100%;
}

/* ==================== HERO CAROUSEL ==================== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-carousel .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-carousel .slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.slide__content {
  position: relative;
  z-index: 3;
  color: var(--white-color);
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.slide__title {
  font-size: 3rem;
  color: var(--white-color);
  margin-bottom: 1rem;
}

.slide__subtitle {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 700px;
}

.slide__content .button {
  margin-right: 1rem;
}

.carousel-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 5;
}

.carousel-nav .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: .3s;
}

.carousel-nav .dot.active {
  background-color: var(--white-color);
}

/* ==================== SEÇÕES GERAIS (SPECIALTIES, CTA, TRADITION, ETC) ==================== */
.specialties__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.card {
  background-color: var(--container-color);
  padding: 2.5rem 2rem;
  border-radius: .5rem;
  text-align: center;
  transition: .3s;
  border: 1px solid var(--light-gray-color);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.card__icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.card__title {
  font-size: var(--h3-font-size);
  margin-bottom: .5rem;
}

.cta-secondary {
  background-color: var(--primary-color);
  padding: 4rem 0;
  text-align: center;
  color: var(--white-color);
}

.cta__content h2 {
  color: var(--white-color);
  font-size: var(--h2-font-size);
  margin-bottom: 1.5rem;
}

.tradition__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.tradition__image img {
  border-radius: .5rem;
}

.tradition__content p {
  margin-bottom: 2rem;
  line-height: 1.7;
}

.tradition__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.highlight-box {
  background-color: var(--container-color);
  padding: 1.5rem;
  border-radius: .5rem;
  text-align: center;
}

.highlight-box h4 {
  font-size: var(--h2-font-size);
  color: var(--secondary-color);
}

/* ==================== SEÇÃO DEPOIMENTOS ==================== */
.section--gray {
  background-color: var(--container-color);
  position: relative; /* Âncora para os pontos de navegação */
}

.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transition: height 0.4s ease-in-out; /* Para altura dinâmica */
}

.testimonial-card {
  background-color: var(--white-color);
  padding: 2.5rem;
  border-radius: .5rem;
  text-align: center;
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity .5s ease, transform .5s ease;
  transform: scale(0.95);
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

.stars {
  color: #FFC107;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial__text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.client {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.client__photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.client__name {
  margin: 0;
}

.client__city {
  font-size: var(--small-font-size);
}

.testimonial-nav {
  position: static; 
  transform: none;
  margin-top: 2.5rem;
  padding-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.testimonial-nav .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #CCCCCC;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.testimonial-nav .dot.active {
  background-color: var(--primary-color);
}

/* ==================== SEÇÃO BLOG PREVIEW ==================== */
.blog-preview__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background-color: var(--body-color);
  border-radius: .5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: .3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.blog-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card__content {
  padding: 1.5rem;
}

.blog-card__date {
  font-size: var(--small-font-size);
  color: var(--text-color);
  display: block;
  margin-bottom: .5rem;
}

.blog-card__title {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.blog-card__link {
  color: var(--secondary-color);
  font-weight: 600;
}

.section__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ==================== FOOTER ==================== */
.footer {
  background-color: #2c3e50;
  color: var(--light-gray-color);
  padding-top: 4rem;
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer__logo {
  height: 55px;
  margin-bottom: 1rem;
}

.footer__section p {
  line-height: 1.8;
  font-size: var(--small-font-size);
}

.footer__title {
  color: var(--white-color);
  margin-bottom: 1rem;
}

.footer__socials {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.footer__socials a {
  color: var(--white-color);
  font-size: 1.25rem;
  transition: .3s;
}

.footer__socials a:hover {
  color: var(--secondary-color);
  transform: translateY(-2px);
}

.footer__legal {
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 2rem;
  border-top: 1px solid #4a617a;
  font-size: var(--small-font-size);
  color: #bdc3c7;
}

.footer__legal p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer__section small {
  font-size: 0.75rem;
  opacity: 0.8;
  font-style: italic;
}

.footer__copyright {
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 3rem;
  border-top: 1px solid #4a617a;
  font-size: var(--small-font-size);
}

/* ==================== PÁGINA BLOG ==================== */
.page-banner {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 4rem 0;
  text-align: center;
  margin-top: var(--header-height);
}

.page-banner__title {
  font-size: calc(var(--h1-font-size));
  color: var(--white-color);
}

.blog-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 3rem;
}

.search-bar {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--light-gray-color);
  border-radius: .5rem;
  font-size: var(--normal-font-size);
}

.category-filters {
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.filter-btn {
  padding: .5rem 1rem;
  border-radius: 1.5rem;
  border: 1px solid var(--light-gray-color);
  background-color: transparent;
  cursor: pointer;
  transition: .3s;
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.article-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
}

.article-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: .5rem;
}

.article-card__meta {
  font-size: var(--small-font-size);
  color: var(--secondary-color);
  font-weight: 500;
}

.article-card__title {
  margin: .5rem 0 1rem;
}

.blog-sidebar .widget {
  margin-bottom: 2rem;
}

.widget__title {
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--light-gray-color);
}

.widget__list li {
  margin-bottom: .5rem;
}

.widget__list li a {
  color: var(--text-color);
  transition: .3s;
}
.widget__list li a:hover {
  color: var(--secondary-color);
}

.widget__list--recent li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.widget__list--recent img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: .5rem;
}

/* ==================== PÁGINA CONTATO ==================== */
.contact-page-body {
  position: relative;
  overflow-x: hidden;
}

#capsule-animation-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.capsule {
  position: absolute;
  bottom: -150px;
  width: 60px; 
  height: 60px;
  background-image: url('assets/capsula-desenho.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: calc(var(--static-size, 1) * 0.85);
  animation-name: float-up;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes float-up {
  from {
      bottom: -150px;
      transform: translateX(0) rotate(0deg) scale(var(--static-size, 1));
  }
  to {
      bottom: 100vh;
      transform: translateX(20px) rotate(360deg) scale(var(--static-size, 1));
  }
}

.quick-options__container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.quick-option-card {
  background-color: rgba(248, 249, 250, 0.55);
  padding: 2rem;
  border-radius: .5rem;
  text-align: center;
  cursor: pointer;
  transition: .3s;
  border: 1px solid var(--light-gray-color);
}

.quick-option-card:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-5px);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: .5rem;
  font-weight: 500;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--light-gray-color);
  border-radius: .5rem;
  font-size: var(--normal-font-size);
}

.contact-info p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.whatsapp-cta {
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: .5rem;
}

.whatsapp-cta h3 {
  margin-bottom: 1rem;
}

.button--whatsapp {
  background-color: #25D366;
  width: 100%;
  text-align: center;
  font-size: 1.1rem;
}

.button--whatsapp i {
  margin-right: .5rem;
}

.button--whatsapp:hover {
  background-color: #1DAE54;
}

/* ==================== BOTÃO FLUTUANTE WHATSAPP ==================== */
.whatsapp-fab {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 1000;
  background-color: #25D366;
  color: #FFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  animation: whatsapp-pulse 5s infinite ease-in-out;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  animation: none;
}

@keyframes whatsapp-pulse {
  0% { transform: scale(1); }
  5% { transform: scale(1.1) rotate(5deg); }
  10% { transform: scale(1.1) rotate(-5deg); }
  15% { transform: scale(1.1) rotate(5deg); }
  20% { transform: scale(1); }
}

/* =====================================================================
   =================== DESIGN RESPONSIVO (MEDIA QUERIES) ===================
   ===================================================================== */

/* --- Telas Grandes (Desktop) --- */
@media screen and (min-width: 992px) {
  .nav__logo img { height: 70px; }
  .footer__logo { height: 70px; }
}

/* --- Telas Médias e acima (Tablet para Desktop) --- */
@media screen and (min-width: 768px) {
  /* Layout do Header */
  .nav {
    justify-content: flex-start;
  }
  .nav__menu {
    margin-left: auto;
  }
  
  /* Esconde elementos do menu mobile */
  .nav__toggle,
  .nav__close,
  .nav__menu-header,
  .nav__menu-socials {
    display: none;
  }
}

/* --- Telas Médias e abaixo (Tablet para Mobile) --- */
@media screen and (max-width: 991px) {
  .container { 
    padding: 0 1.5rem; 
  }
  
  /* Layouts de Grid que colapsam */
  .specialties__container { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .tradition__container, .blog-layout, .contact-layout, .blog-preview__container, .article-card { 
    grid-template-columns: 1fr; 
  }
  .quick-options__container { 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  }
}

/* --- Apenas Telas Pequenas (Mobile) --- */
@media screen and (max-width: 767px) {
  
  /* --- Ajustes Gerais de Layout --- */
  .section {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  .slide__title { 
    font-size: var(--h1-font-size); 
  }
  .specialties__container { 
    grid-template-columns: 1fr; 
  }
  .footer__container { 
    grid-template-columns: 1fr; 
    text-align: center; 
  }
  .footer__socials { 
    justify-content: center; 
  }

  /* --- Ajuste Banner Blog/Contato --- */
  .page-banner {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  /* --- Ajuste Banner Principal (Hero) --- */
  .hero-carousel .slide:nth-child(1) {
    background-position: 60% center; 
  }
  .hero-carousel .slide:nth-child(2) {
    background-position: 85% center;
  }
  
  /* --- Ajustes Seção "Tradição e Inovação" --- */
  .tradition__content {
    text-align: center;
    min-width: 0;
  }
  .highlight-box {
    padding: 1rem;
  }
  .highlight-box h4 {
    font-size: 1.25rem; 
  }
  .highlight-box p {
    font-size: var(--small-font-size);
  }
  .add-space-below {
    margin-bottom: 3rem; 
  }

  /* --- Ajustes Seção "Depoimentos" --- */
  .testimonial-carousel {
    min-height: 380px;
  }
  .testimonial-nav {
    display: none;
  }

  /* --- Estilos do Menu Hamburger --- */
  .nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: calc(var(--z-fixed) - 1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  
  .nav__overlay.show-overlay {
    opacity: 1;
    visibility: visible;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background-color: var(--container-color);
    box-shadow: -2px 0 4px rgba(0,0,0,0.1);
    transition: right 0.4s ease-in-out;
    z-index: var(--z-fixed);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
  }
  
  .show-menu {
    right: 0;
  }

  .nav__menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray-color);
  }

  .nav__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
  }

  .nav__link {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 0;
    display: block;
    border-bottom: 1px solid var(--light-gray-color);
  }

  .nav__menu-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray-color);
  }

  .nav__menu-socials a {
    color: var(--primary-color);
  }

  .nav__close,
  .nav__toggle {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
  }
}
/* ==================== FILTRO DO BLOG ==================== */
.article-card--hidden {
  display: none;
}
/* ==================== FILTRO DO BLOG - ESTILO ATIVO SIDEBAR ==================== */
.widget__list li a.active {
  color: var(--primary-color);
  font-weight: 600;
}
/* ==================== PÁGINA DE POST INDIVIDUAL ==================== */
.article-full__header {
  margin-bottom: 2rem;
}

.article-full__image {
  width: 100%;
  border-radius: .5rem;
  margin-bottom: 1rem;
}

.article-full__meta {
  font-weight: 500;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 2rem;
}

.article-full__content {
  line-height: 1.8;
}

.article-full__content h3 {
  font-size: var(--h3-font-size);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-full__content p {
  margin-bottom: 1.5rem;
}

.article-full__content ul {
  list-style-position: inside;
  list-style-type: disc;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.article-share {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-gray-color);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.article-share span {
  font-weight: 600;
}
/* ==================== AJUSTES BOTÕES DE CONTATO (LANDING PAGE) ==================== */

/* Ajusta o card para que o ícone e o texto fiquem alinhados */
.quick-option-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-color); /* Garante que o texto seja legível */
}

/* Estilo para o ícone do WhatsApp dentro do card */
.quick-option-card i {
  font-size: 2rem;
  color: var(--secondary-color);
  transition: .3s;
}

/* Estilo de destaque para o botão principal */
.quick-option-card--primary {
  background-color: var(--primary-color);
  color: var(--white-color); /* Cor do texto h3 */
}

.quick-option-card--primary i {
  color: var(--white-color); /* Cor do ícone */
}

/* Efeito hover aprimorado */
.quick-option-card:hover {
  color: var(--white-color);
}

.quick-option-card:hover i {
  color: var(--white-color);
}
/* ==================== REFINAMENTOS DE DESIGN - PÁGINA CONTATO MOBILE ==================== */

/* --- 1. MELHORIA NA COR DO TEXTO DOS BOTÕES (Sem alterações aqui) --- */
.quick-option-card h3 {
  color: var(--primary-color);
  transition: color 0.3s ease;
}
.quick-option-card--primary h3 {
  color: var(--white-color);
}
.quick-option-card:hover h3 {
  color: var(--white-color);
}


/* --- 2. ANIMAÇÃO DE TREMOR PARA O BOTÃO PRINCIPAL (Alterado) --- */
/* Definição da nova animação de tremor */
@keyframes primary-card-shake {
  0%, 100% { transform: rotate(0deg); }
  2% { transform: rotate(-2deg); }
  4% { transform: rotate(2deg); }
  6% { transform: rotate(-1deg); }
  8% { transform: rotate(1deg); }
  10% { transform: rotate(0deg); }
  /* O botão fica parado de 10% a 100% do ciclo */
}

/* Aplicação da nova animação */
.quick-option-card--primary {
  animation: primary-card-shake 6s infinite ease-in-out;
}

/* Pausa a animação e aplica um zoom no hover para melhor feedback */
.quick-option-card--primary:hover {
  animation: none;
  transform: scale(1.05) translateY(-5px);
}


/* --- 3. AJUSTE DE ESPAÇAMENTO SUPERIOR (Sem alterações aqui) --- */
@media screen and (max-width: 767px) {
  #quick-options-section {
    padding-top: 1rem; 
  }
}
/* ==================== AJUSTE DE BORDA DOS BOTÕES DE CONTATO ==================== */

/* 1. Define uma borda mais visível para TODOS os cards */
.quick-option-card {
  /* A nova borda é mais espessa (2px) e um pouco mais escura (#DEE2E6) */
  border: 2px solid #DEE2E6;
}

/* 2. Garante que o botão principal (verde) não tenha a borda cinza */
.quick-option-card--primary {
  border-color: transparent; /* Torna a borda do botão de destaque invisível */
}
/* ==================== ESTILO DOS LINKS NA PÁGINA DE CONTATO ==================== */

/* Define a cor padrão para os links na seção de informações de contato */
.contact-info p a {
  color: var(--primary-color); /* Usa o verde escuro da sua marca */
  font-weight: 500; /* Deixa a fonte um pouco mais forte */
  transition: color 0.3s ease;
}

/* Adiciona um efeito de hover para melhor interatividade */
.contact-info p a:hover {
  color: var(--secondary-color); /* Muda para o verde mais claro */
  text-decoration: underline; /* Adiciona um sublinhado ao passar o mouse */
}
/* ==================== PÁGINA DE SUCESSO DO FORMULÁRIO ==================== */
.success-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.success-page .section__title {
    margin-bottom: 1rem;
}

.success-page p {
    font-size: 1.1rem;
    max-width: 400px;
    margin-bottom: 2rem;
}