.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* sections.css - Estilos para seções específicas */

/* Hero Section */
#hero {
  overflow: hidden;
  justify-items: center;
}

h2 {
  font-size: 2.4rem;
  color: #58371b;
}

.hero {
  width: 100%;
  min-height: 440px;
  height: 500px;
  max-height: 600px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  color: white;
  box-shadow: inset 0px -20px 20px 5px #f1e3ca;
  transition: box-shadow 0.3s ease;
  background-image: url('/assets/img/Genipabu.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: relative;
  overflow: hidden;
}

/* Overlay sutil para melhorar legibilidade do texto (opcional - ajuste a opacidade se necessário) */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

/* Em telas menores, overlay mais forte para melhor legibilidade */
@media (max-width: 600px) {
  .hero::before {}
}

.hero-content {
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  align-items: flex-start;
  width: 100%;
  position: relative;
  z-index: 1;
  height: 500px;
  padding: 30px 20px;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
  line-height: 1.1;
  text-align: justify;
  color: #ffffff;
  text-shadow: 0px 0px 20px #58371b;

}

.hero-content p {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.3s both;
  color: #ffffff;
  text-shadow: 0px 0px 20px #58371b;
  text-align: left;
}

.hero-content .btn {
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-content img {
  height: 300px;
  filter: drop-shadow(5px 5px 1px #0c454e);
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: auto;
}

/* Botões CTA do Hero - usando classes padronizadas */
.cta-button {
  background: linear-gradient(135deg, #58371b 0%, #8b5a3c 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(88, 55, 27, 0.3);
}

.cta-button-1 {
  background: linear-gradient(135deg, #e9ab3b 0%, #d4941f 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(233, 171, 59, 0.3);
}

.cta-button:hover {
  background: linear-gradient(135deg, #6b4528 0%, #a06a4a 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88, 55, 27, 0.4);
}

.cta-button-1:hover {
  background: linear-gradient(135deg, #d4941f 0%, #c0851a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 171, 59, 0.4);
}

/* About (Quem Somos) Section - Modernizado */
.about {
  padding: 80px 0 60px 0;
  background: #ffffff;
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-header h2 {
  font-size: 2.4rem;
  color: #58371b;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-subtitle {
  font-size: 1.2rem;
  color: #58371b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.about-card {
  background: #f1e3ca;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #58371b 0%, #e08e2b 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  margin: 0 10px;
  border-radius: 50px;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.about-card:hover::before {
  transform: scaleX(1);
}

.about-card-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #58371b 0%, #e08e2b 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(88, 55, 27, 0.3);
}

.about-card-icon {
  font-size: 4rem;
  margin: 20px 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  line-height: 1;
}

.about-card-icon svg.about-card-icon-svg {
  width: 64px;
  height: 64px;
  display: block;
  flex-shrink: 0;
}

.about-card h3 {
  font-size: 1.6rem;
  color: #58371b;
  margin-bottom: 15px;
  font-weight: 600;
}

.about-card p {
  font-size: 1rem;
  color: #58371b;
  line-height: 1.7;
  margin: 0 0 20px 0;
}

.about-card-cta {
  margin-top: 20px;
}

/* Botão WhatsApp em cards - usando classe padronizada */
.btn-whatsapp-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  border: none;
  cursor: pointer;
}

.btn-whatsapp-card:hover {
  background: linear-gradient(135deg, #20BA5A 0%, #0F7A6F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-card svg {
  flex-shrink: 0;
}

/* Media Queries para Responsividade - About Section */

/* Tablets grandes e desktops menores (1024px - 1200px) */
@media (max-width: 1200px) {
  .about-cards-grid {
    gap: 35px;
  }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  .about {
    padding: 60px 0 50px 0;
  }

  .about-header h2 {
    font-size: 2.4rem;
  }

  .about-subtitle {
    font-size: 1.1rem;
  }

  .about-cards-grid {
    gap: 30px;
  }

  .about-card {
    padding: 35px 25px;
  }
}

/* Tablets pequenos e mobile landscape (600px - 768px) */
@media (max-width: 768px) {
  .about {
    padding: 50px 0 40px 0;
  }

  .about-header {
    margin-bottom: 40px;
  }

  .about-header h2 {
    font-size: 2rem;
  }

  .about-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }

  .about-cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }

  .about-card {
    padding: 35px 25px;
  }

  .about-card-icon {
    font-size: 3.5rem;
    min-height: 56px;
  }

  .about-card-icon svg.about-card-icon-svg {
    width: 56px;
    height: 56px;
  }

  .about-card h3 {
    font-size: 1.4rem;
  }

  .btn-whatsapp-card {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Mobile (480px - 600px) */
@media (max-width: 600px) {
  .about {
    padding: 40px 0 35px 0;
  }

  .about-header {
    margin-bottom: 35px;
  }

  .about-header h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .about-subtitle {
    font-size: 0.95rem;
  }

  .about-cards-grid {
    gap: 25px;
    margin-bottom: 35px;
  }

  .about-card {
    padding: 30px 20px;
  }

  .about-card-icon {
    font-size: 3rem;
    margin: 15px 0 15px 0;
    min-height: 48px;
  }

  .about-card-icon svg.about-card-icon-svg {
    width: 48px;
    height: 48px;
  }

  .about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .about-card p {
    font-size: 0.95rem;
  }

  .btn-whatsapp-card {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
}

/* Mobile pequeno (até 480px) */
@media (max-width: 480px) {
  .about {
    padding: 35px 0 30px 0;
  }

  .about-header {
    margin-bottom: 30px;
  }

  .about-header h2 {
    font-size: 1.6rem;
  }

  .about-subtitle {
    font-size: 0.9rem;
  }

  .about-cards-grid {
    gap: 20px;
    margin-bottom: 30px;
  }

  .about-card {
    padding: 25px 18px;
    border-radius: 15px;
  }

  .about-card-number {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    top: -18px;
  }

  .about-card-icon {
    font-size: 2.5rem;
    margin: 12px 0 12px 0;
    min-height: 40px;
  }

  .about-card-icon svg.about-card-icon-svg {
    width: 40px;
    height: 40px;
  }

  .about-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .about-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .btn-whatsapp-card {
    padding: 9px 16px;
    font-size: 0.8rem;
  }

  .btn-whatsapp-card svg {
    width: 18px;
    height: 18px;
  }
}

/* Mobile muito pequeno (até 360px) */
@media (max-width: 360px) {
  .about {
    padding: 30px 0 25px 0;
  }

  .about-header h2 {
    font-size: 1.4rem;
  }

  .about-subtitle {
    font-size: 0.85rem;
  }

  .about-card {
    padding: 22px 15px;
  }

  .about-card-icon {
    font-size: 2.2rem;
    min-height: 35px;
  }

  .about-card-icon svg.about-card-icon-svg {
    width: 35px;
    height: 35px;
  }

  .about-card h3 {
    font-size: 1.1rem;
  }

  .about-card p {
    font-size: 0.85rem;
  }
}

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

.skill {
  background: #007bff;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Services Section */
.services {
  background: #f8f9fa;
  padding: 4rem 2rem;
}

.services h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item h3 {
  color: #333;
  margin-bottom: 1rem;
}

.service-item p {
  color: #58371b;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Testimonials Section */
.testimonials {
  padding: 60px 0 40px 0;
  background: #f1e3ca;
  overflow: hidden;
}

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

.testimonials h2 {
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: 1px;
}

/* Wrapper para o scroll infinito */
.testimonials-scroll-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

/* Container do scroll */
.testimonials-scroll {
  display: flex;
  gap: 24px;
  height: 100%;
  width: fit-content;
  /* Animação será iniciada via JavaScript após renderização completa */
  animation: none;
  will-change: transform;
  /* Otimizações para performance no mobile */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  /* Garantir que os cards duplicados estejam sempre visíveis */
  min-width: 200%;
}

/* Classe para iniciar a animação quando estiver pronta */
.testimonials-scroll.animation-ready {
  animation: scrollTestimonials 40s linear infinite;
  animation-fill-mode: both;
  animation-play-state: running;
}

/* Animação do scroll infinito */
@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pausar animação no hover (apenas desktop) */
@media (hover: hover) and (pointer: fine) {
  .testimonials-scroll-wrapper:hover .testimonials-scroll {
    animation-play-state: paused;
  }
}

/* Garantir que a animação não seja interrompida no mobile */
@media (max-width: 768px) {
  .testimonials-scroll.animation-ready {
    /* Forçar a animação a continuar mesmo em caso de interrupção */
    animation-iteration-count: infinite !important;
    animation-timing-function: linear !important;
    animation-play-state: running !important;
  }
}

.testimonial-card {
  background: #f8f9fa;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(88, 55, 27, 0.1);
  padding: 30px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 350px;
  max-width: 350px;
  height: 100%;
  border: 1px solid rgba(88, 55, 27, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(88, 55, 27, 0.15);
  transform: translateY(-4px);
}

.testimonial-text {
  font-size: 1.1rem;
  color: #58371b;
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.7;
  flex-grow: 1;
}

.testimonial-info {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 1rem;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(88, 55, 27, 0.1);
}

.testimonial-author {
  font-weight: 700;
  color: #58371b;
  font-size: 1.05rem;
}

.testimonial-date {
  font-weight: 400;
  color: #0c444e;
  font-size: 0.95rem;
  opacity: 0.8;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-rating .star {
  font-size: 1.2rem;
  color: #e0e0e0;
  transition: color 0.2s;
}

.testimonial-rating .star.filled {
  color: #f39c12;
}

.testimonial-rating .star.empty {
  color: #e0e0e0;
}

/* Media Queries para Responsividade - Testimonials */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  .testimonials-scroll-wrapper {
    height: 380px;
  }

  .testimonial-card {
    min-width: 320px;
    max-width: 320px;
    padding: 28px 22px 22px 22px;
  }

  .testimonial-text {
    font-size: 1.05rem;
  }
}

/* Tablets pequenos e mobile landscape (600px - 768px) */
@media (max-width: 768px) {
  .testimonials {
    padding: 50px 0 35px 0;
  }

  .testimonials h2 {
    margin-bottom: 28px;
  }

  .testimonials-scroll-wrapper {
    height: 360px;
    padding: 0 20px;
  }

  .testimonials-scroll.animation-ready {
    animation-duration: 50s;
  }

  .testimonials-scroll {
    gap: 20px;
  }

  .testimonial-card {
    min-width: calc(100vw - 40vw);
    max-width: calc(100vw - 40vw);
    padding: 26px 20px 20px 20px;
  }

  .testimonial-text {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .testimonial-info {
    font-size: 0.95rem;
    padding-top: 14px;
  }
}

/* Mobile (480px - 600px) */
@media (max-width: 600px) {
  .testimonials {
    padding: 40px 0 30px 0;
  }

  .testimonials h2 {
    margin-bottom: 24px;
  }

  .testimonials-scroll-wrapper {
    height: 340px;
    padding: 0 20px;
  }

  .testimonials-scroll.animation-ready {
    animation-duration: 60s;
  }

  .testimonials-scroll {
    gap: 18px;
  }

  .testimonial-card {
    min-width: calc(100vw - 40vw);
    max-width: calc(100vw - 40vw);
    padding: 24px 18px 18px 18px;
  }

  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .testimonial-author {
    font-size: 1rem;
  }

  .testimonial-date {
    font-size: 0.9rem;
  }
}

/* Mobile pequeno (até 480px) */
@media (max-width: 480px) {
  .testimonials {
    padding: 35px 0 25px 0;
  }

  .testimonials h2 {
    margin-bottom: 20px;
  }

  .testimonials-scroll-wrapper {
    height: 320px;
    padding: 0 20px;
  }

  .testimonials-scroll.animation-ready {
    animation-duration: 70s;
  }

  .testimonials-scroll {
    gap: 16px;
  }

  .testimonial-card {
    min-width: calc(100vw - 40vw);
    max-width: calc(100vw - 40vw);
    padding: 22px 16px 16px 16px;
    border-radius: 12px;
  }

  .testimonial-text {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .testimonial-info {
    font-size: 0.9rem;
    padding-top: 12px;
    gap: 10px;
  }

  .testimonial-author {
    font-size: 0.95rem;
  }

  .testimonial-date {
    font-size: 0.85rem;
  }
}

/* Mobile muito pequeno (até 360px) */
@media (max-width: 360px) {
  .testimonials-scroll-wrapper {
    height: 300px;
    padding: 0 20px;
  }

  .testimonials-scroll.animation-ready {
    animation-duration: 80s;
  }

  .testimonials-scroll {
    gap: 14px;
  }

  .testimonial-card {
    min-width: calc(100vw - 40vw);
    max-width: calc(100vw - 40vw);
    padding: 20px 14px 14px 14px;
  }

  .testimonial-text {
    font-size: 0.85rem;
  }
}

/* Conheça Natal Section */
.conheca {
  padding: 60px 0 40px 0;
  background: #f6f8fc;
}

.conheca .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.conheca h2 {
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: 1px;
}

.conheca-intro {
  text-align: center;
  color: #444;
  font-size: 1.13rem;
  margin-bottom: 32px;
}

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

.conheca-card {
  background: #f1e3ca;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #e3e6ee;
  transition: box-shadow 0.18s, transform 0.18s;
}

.conheca-card:hover {
  box-shadow: 0 6px 24px rgba(25, 118, 210, 0.13);
  transform: translateY(-4px) scale(1.02);
}

.conheca-card h3 {
  font-size: 1.18rem;
  color: #1976d2;
  margin-bottom: 8px;
}

.conheca-card p {
  color: #444;
  font-size: 1.04rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Contato Page */
.contato-page {
  padding: 60px 0 40px 0;
  background: #f1e3ca;
}

.contato-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.contato-form-area {
  flex: 1 1 340px;
  min-width: 300px;
  background: #f8f9fa;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  padding: 32px 24px 24px 24px;
}

.contato-form-area h2 {
  margin-bottom: 18px;
}

.contato-form label {
  font-weight: 600;
  color: #1976d2;
  margin-bottom: 6px;
  display: block;
}

.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 14px;
  background: #f1e3ca;
}

/* Botão de formulário de contato - usando classe padronizada */
.contato-form button {
  background: linear-gradient(135deg, #58371b 0%, #8b5a3c 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  font-size: 1.08rem;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(88, 55, 27, 0.3);
}

.contato-form button:hover {
  background: linear-gradient(135deg, #6b4528 0%, #a06a4a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88, 55, 27, 0.4);
}

.contato-info-area {
  flex: 1 1 260px;
  min-width: 240px;
  background: #f6f8fc;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  padding: 28px 20px 20px 20px;
}

.contato-info-area h3 {
  color: #1976d2;
  font-size: 1.08rem;
  margin-top: 18px;
  margin-bottom: 6px;
}

.contato-info-area p {
  color: #444;
  font-size: 1.02rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .contato-flex {
    flex-direction: column;
    gap: 24px;
  }
}

/* Conheça Natal - Layout com Sidebar */
.sidebar-area {
  position: sticky;
  top: 0;
}

.conheca-layout {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  gap: 36px;
  position: relative;
}

.sdb-title-fixed {
  min-width: 200px;
  margin-right: 0;
  margin-left: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: static;
  background: #f6f8fc;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 10px 10px 0 10px;
}

.conheca-sdb {
  position: sticky;
  top: 0;
  min-width: 200px;
  background: #f6f8fc;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 18px 10px;
  height: fit-content;
  max-height: 80vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.conheca-sdb ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.conheca-sdb li {
  margin-bottom: 7px;
}

.conheca-sdb a {
  color: #1976d2;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.01rem;
  transition: color 0.15s;
  display: block;
  padding: 5px 0 5px 8px;
  border-radius: 6px;
}

.conheca-sdb a:hover {
  color: #0d47a1;
  background: #e3e6ee;
  text-decoration: underline;
}

.sdb-title {
  font-size: 1.13rem;
  color: #0c444e;
  font-weight: 700;
  margin-bottom: 10px;
  padding-left: 4px;
  letter-spacing: 0.5px;
  position: sticky;
  top: 0;
  background: #f6f8fc;
  z-index: 2;
  padding-top: 4px;
  padding-bottom: 4px;
}

.conheca-cards-vertical {
  flex: 1 1 0%;
  max-width: 800px;
  margin-left: 0;
}

@media (max-width: 900px) {
  .conheca-layout {
    flex-direction: column;
    gap: 18px;
  }

  .sdb-title-fixed {
    position: static;
    min-width: 0;
    max-width: 100%;
    padding: 6px 4px 0 4px;
    border-radius: 12px 12px 0 0;
    box-shadow: none;
    background: transparent;
  }

  .conheca-sdb {
    position: static;
    min-width: 0;
    max-width: 100%;
    z-index: auto;
    left: 0;
  }

  .conheca-cards-vertical {
    margin-left: 0;
    max-width: 100%;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
/* Media Queries para Responsividade - Hero Section */

/* Tablets grandes (1024px - 1200px) */
@media (max-width: 1200px) {
  .hero {
    min-height: 400px;
    background-position: top;
  }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  .hero {
    min-height: 380px;
    background-position: top;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 2rem;
    color: #58371b;
  }

  .tours h2 {
    margin-bottom: 36px;
    letter-spacing: 1px;
  }
}

/* Tablets pequenos e mobile landscape (600px - 768px) */
@media (max-width: 768px) {
  .hero {
    min-height: 350px;
    background-position: top;
    background-size: cover;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.5rem;
    color: #58371b;
  }


  .tours h2 {
    margin-bottom: 36px;
    letter-spacing: 1px;
  }

  .hero-content p {
    font-size: 1.5rem;
  }

  .cta-button,
  .cta-button-1 {
    font-size: 1.5rem;
    padding: 8px 16px;
  }
}

/* Mobile (480px - 600px) */
@media (max-width: 600px) {
  .hero {
    min-height: 320px;
    background-position: top;
    background-size: cover;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
    text-align: center;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .tours h2 {
    text-align: center;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
  }

  .cta-button,
  .cta-button-1 {
    font-size: 1.3rem;
    padding: 10px 20px;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* Mobile pequeno (até 480px) */
@media (max-width: 480px) {
  .hero {
    min-height: 300px;
    background-position: top;
    background-size: cover;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    line-height: 1.15;
  }

  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
  }

  .hero-buttons {
    gap: 10px;
  }

  .cta-button,
  .cta-button-1 {
    font-size: 1.2rem;
    padding: 9px 18px;
    max-width: 260px;
  }
}

/* Mobile muito pequeno (até 360px) */
@media (max-width: 360px) {
  .hero {
    min-height: 280px;
    background-position: top;
    background-size: cover;
  }

  .hero-content h1 {
    font-size: 1.6rem;
    margin-bottom: 0.7rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .cta-button,
  .cta-button-1 {
    font-size: 1.1rem;
    padding: 8px 16px;
    max-width: 240px;
  }
}

/* Orientação landscape em mobile (até 768px de altura) */
@media (max-width: 768px) and (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    /* Dynamic viewport height para mobile */
    background-position: top;
    background-size: cover;
  }

  .hero-content {
    justify-content: center;
    min-height: 100%;
  }

  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
  }

  .cta-button,
  .cta-button-1 {
    font-size: 1.1rem;
    padding: 8px 16px;
    max-width: 200px;
  }
}

/* Ajustes para telas muito largas (desktop grande) */
@media (min-width: 1400px) {
  .hero {
    min-height: 500px;
    max-height: 600px;
    height: auto;
    aspect-ratio: 21 / 9;
    background-position: center top;
    background-size: cover;
  }

  .hero-content {
    height: 100%;
    min-height: 500px;
  }
}

/* Ajustes para telas ultrawide */
@media (min-width: 1920px) {
  .hero {
    max-height: 700px;
    aspect-ratio: 21 / 8;
    background-position: center top;
    background-size: cover;
  }

  .hero-content {
    min-height: 500px;
  }
}

/* Ajustes para telas muito ultrawide (acima de 2560px) */
@media (min-width: 2560px) {
  .hero {
    max-height: 800px;
    aspect-ratio: 21 / 7;
    background-position: center top;
    background-size: cover;
  }
}

/* Media Query geral para outras seções */
@media (max-width: 768px) {


  .skills {
    justify-content: center;
  }

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

/* ========== PÁGINA SOBRE NÓS ========== */
.about-us-page {
  padding: 60px 0;
  background: #f1e3ca;
}

.about-us-hero {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 0;
}

.about-us-title {
  font-size: 3.5rem;
  color: #58371b;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-us-subtitle {
  font-size: 1.3rem;
  color: #58371b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-us-main-image {
  width: 100%;
  margin-bottom: 80px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-us-main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.about-us-section {
  padding: 60px 0;
}

.about-us-section-alt {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  margin: 40px 0;
  padding: 60px 20px;
}

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

.about-us-content-grid-reverse {
  grid-template-columns: 1fr 1fr;
}

.about-us-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-us-text .section-title {
  font-size: 2.5rem;
  color: #58371b;
  margin-bottom: 20px;
}

.about-us-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #58371b;
}

.about-us-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-us-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-us-image:hover img {
  transform: scale(1.05);
}

.about-us-values {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  margin: 60px 0;
}

.about-us-values .section-title {
  font-size: 2.5rem;
  color: #58371b;
  margin-bottom: 50px;
}

.text-center {
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
  font-size: 3rem;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.value-card h3 {
  font-size: 1.5rem;
  color: #58371b;
  margin-bottom: 15px;
}

.value-card p {
  font-size: 1rem;
  color: #58371b;
  line-height: 1.6;
  margin-bottom: 15px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  padding: 8px 16px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(188, 24, 136, 0.3);
}

.instagram-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(188, 24, 136, 0.4);
  color: white;
}

.instagram-link svg {
  fill: white;
  color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  font-size: 2.5rem;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.feature-item h3 {
  font-size: 1.4rem;
  color: #58371b;
  margin-bottom: 15px;
}

.feature-item p {
  font-size: 1rem;
  color: #58371b;
  line-height: 1.6;
}

.about-us-cta {
  background: linear-gradient(135deg, #58371b 0%, #8b5a3c 100%);
  color: white;
  padding: 80px 20px;
  border-radius: 20px;
  margin-top: 60px;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Botões CTA padronizados */
.cta-btn {
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.cta-btn-primary {
  background: white;
  color: #58371b;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-btn-primary:hover {
  background: #f1e3ca;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  box-shadow: none;
}

.cta-btn-secondary:hover {
  background: white;
  color: #58371b;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Responsive - About Us Page */
@media (max-width: 1024px) {
  .about-us-content-grid {
    gap: 40px;
  }

  .about-us-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .about-us-page {
    padding: 40px 0;
  }

  .about-us-hero {
    margin-bottom: 40px;
    padding: 30px 0;
  }

  .about-us-title {
    font-size: 2.5rem;
  }

  .about-us-subtitle {
    font-size: 1.1rem;
  }

  .about-us-main-image {
    margin-bottom: 50px;
  }

  .about-us-main-image img {
    height: 300px;
  }

  .about-us-section {
    padding: 40px 0;
  }

  .about-us-section-alt {
    padding: 40px 15px;
    margin: 30px 0;
  }

  .about-us-content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-us-content-grid-reverse {
    grid-template-columns: 1fr;
  }

  .about-us-text .section-title {
    font-size: 2rem;
  }

  .about-us-image img {
    height: 300px;
  }

  .about-us-values {
    padding: 50px 0;
    margin: 40px 0;
  }

  .about-us-values .section-title {
    font-size: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-us-cta {
    padding: 50px 20px;
    margin-top: 40px;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-text {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ========== PÁGINA DE CONTATO ========== */
.contact-page {
  padding: 60px 0;
  background: #f1e3ca;
  min-height: calc(100vh - 200px);
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 0;
}

.contact-title {
  font-size: 3.5rem;
  color: #58371b;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-subtitle {
  font-size: 1.3rem;
  color: #58371b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrapper,
.contact-info-wrapper {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper .section-title,
.contact-info-wrapper .section-title {
  font-size: 2rem;
  color: #58371b;
  margin-bottom: 30px;
}

/* Formulário */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 1rem;
  font-weight: 600;
  color: #58371b;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #58371b;
  box-shadow: 0 0 0 3px rgba(88, 55, 27, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Botão de submit padronizado */
.btn-submit {
  padding: 15px 40px;
  background: linear-gradient(135deg, #58371b 0%, #8b5a3c 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(88, 55, 27, 0.3);
}

.btn-submit:hover:not(:disabled) {
  background: linear-gradient(135deg, #6b4528 0%, #a06a4a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88, 55, 27, 0.4);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.form-message {
  padding: 15px 20px;
  border-radius: 10px;
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.form-message-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Informações de Contato */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1.2rem;
  color: #58371b;
  margin-bottom: 8px;
  font-weight: 600;
}

.info-content p {
  font-size: 1rem;
  color: #58371b;
  line-height: 1.6;
  margin: 0;
}

.info-content a {
  color: #58371b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: #8b5a3c;
  text-decoration: underline;
}

.contact-social {
  padding: 30px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  margin: 30px 0;
}

.contact-social h3 {
  font-size: 1.2rem;
  color: #58371b;
  margin-bottom: 20px;
  font-weight: 600;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: #f8f8f8;
  border-radius: 10px;
  text-decoration: none;
  color: #58371b;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #58371b;
  color: white;
  transform: translateX(5px);
}

.social-link span {
  font-size: 1.3rem;
}

.contact-cta {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #58371b 0%, #8b5a3c 100%);
  border-radius: 15px;
  color: white;
}

.contact-cta h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: white;
}

.contact-cta p {
  font-size: 1rem;
  margin-bottom: 20px;
  opacity: 0.95;
}

/* Botão WhatsApp CTA padronizado */
.cta-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-whatsapp-btn:hover {
  background: linear-gradient(135deg, #20BA5A 0%, #0F7A6F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.cta-whatsapp-btn span {
  font-size: 1.3rem;
}

/* Responsive - Contact Page */
@media (max-width: 1024px) {
  .contact-content {
    gap: 40px;
  }

  .contact-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding: 40px 0;
  }

  .contact-header {
    margin-bottom: 40px;
    padding: 30px 0;
  }

  .contact-title {
    font-size: 2.5rem;
  }

  .contact-subtitle {
    font-size: 1.1rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 30px 20px;
  }

  .contact-form-wrapper .section-title,
  .contact-info-wrapper .section-title {
    font-size: 1.8rem;
  }

  .info-item {
    flex-direction: column;
    gap: 10px;
  }

  .info-icon {
    font-size: 2rem;
  }
}

/* ========== PÁGINA COMO FUNCIONA ========== */
.como-funciona-page {
  padding: 60px 0;
  background: #f1e3ca;
}

.como-funciona-hero {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 0;
}

.como-funciona-title {
  font-size: 3.5rem;
  color: #58371b;
  margin-bottom: 20px;
  font-weight: 700;
}

.como-funciona-subtitle {
  font-size: 1.3rem;
  color: #58371b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.como-funciona-processo {
  padding: 60px 0;
}

.processo-etapas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.etapa-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.etapa-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.etapa-numero {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #58371b 0%, #e08e2b 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(88, 55, 27, 0.3);
}

.etapa-icon {
  font-size: 3.5rem;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.etapa-card h3 {
  font-size: 1.6rem;
  color: #58371b;
  margin-bottom: 15px;
  font-weight: 600;
}

.etapa-card p {
  font-size: 1rem;
  color: #58371b;
  line-height: 1.7;
  margin-bottom: 20px;
}

.etapa-cta {
  margin-top: 20px;
}

/* Botão WhatsApp em etapas - usando classe padronizada */
.btn-whatsapp-etapa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  border: none;
  cursor: pointer;
}

.btn-whatsapp-etapa:hover {
  background: linear-gradient(135deg, #20BA5A 0%, #0F7A6F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.como-funciona-info {
  padding: 60px 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  margin: 40px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.info-item-card {
  background: white;
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.info-item-icon {
  font-size: 2.5rem;
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.info-item-card h3 {
  font-size: 1.3rem;
  color: #58371b;
  margin-bottom: 12px;
}

.info-item-card p {
  font-size: 0.95rem;
  color: #58371b;
  line-height: 1.6;
}

.como-funciona-cta {
  background: linear-gradient(135deg, #58371b 0%, #8b5a3c 100%);
  color: white;
  padding: 80px 20px;
  border-radius: 20px;
  margin-top: 60px;
  text-align: center;
}

/* Botão Como Funciona na seção About */
.about-cta {
  margin-top: 30px;
  text-align: center;
}

/* Botão "Como Funciona" padronizado */
.btn-como-funciona {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 40px;
  background: linear-gradient(135deg, #58371b 0%, #8b5a3c 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(88, 55, 27, 0.3);
  border: none;
  cursor: pointer;
}

.btn-como-funciona:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88, 55, 27, 0.4);
  background: linear-gradient(135deg, #6b4528 0%, #a06a4a 100%);
}

.btn-como-funciona svg.btn-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* Estilos globais para ícones SVG injetados */
svg.inline-icon {
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
  flex-shrink: 0;
}

svg.icon-svg-large {
  display: block;
  flex-shrink: 0;
}

svg.icon-svg-medium {
  display: block;
  flex-shrink: 0;
}

svg.btn-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  flex-shrink: 0;
}

/* ============================================
   CONTROLE DE CORES DOS ÍCONES SVG
   ============================================ */

/* Cor padrão para todos os ícones SVG */
svg {
  color: inherit;
  /* Herda a cor do elemento pai */
}

/* Classe para mudar a cor de um ícone específico (tem precedência sobre body) */
.icon-color-primary svg,
.icon-color-primary svg *,
body.icon-theme-primary .icon-color-primary svg,
body.icon-theme-primary .icon-color-primary svg *,
body.icon-theme-secondary .icon-color-primary svg,
body.icon-theme-secondary .icon-color-primary svg * {
  color: #58371b !important;
  stroke: #58371b !important;
  fill: #58371b !important;
}

.icon-color-secondary svg,
.icon-color-secondary svg *,
body.icon-theme-primary .icon-color-secondary svg,
body.icon-theme-primary .icon-color-secondary svg *,
body.icon-theme-secondary .icon-color-secondary svg,
body.icon-theme-secondary .icon-color-secondary svg * {
  color: #e08e2b !important;
  stroke: #e08e2b !important;
  fill: #e08e2b !important;
}

.icon-color-white svg,
.icon-color-white svg *,
body.icon-theme-primary .icon-color-white svg,
body.icon-theme-primary .icon-color-white svg *,
body.icon-theme-secondary .icon-color-white svg,
body.icon-theme-secondary .icon-color-white svg * {
  color: #ffffff !important;
  stroke: #ffffff !important;
  fill: #ffffff00 !important;
}

.icon-color-dark svg,
.icon-color-dark svg *,
body.icon-theme-primary .icon-color-dark svg,
body.icon-theme-primary .icon-color-dark svg *,
body.icon-theme-secondary .icon-color-dark svg,
body.icon-theme-secondary .icon-color-dark svg * {
  color: #333333 !important;
  stroke: #333333 !important;
  fill: #333333 !important;
}

.icon-color-light svg,
.icon-color-light svg *,
body.icon-theme-primary .icon-color-light svg,
body.icon-theme-primary .icon-color-light svg *,
body.icon-theme-secondary .icon-color-light svg,
body.icon-theme-secondary .icon-color-light svg * {
  color: #58371b !important;
  stroke: #58371b !important;
  fill: #58371b !important;
}

/* Aplicar cor a todos os ícones dentro de um container */
.icon-container-primary svg,
.icon-container-primary svg * {
  color: #58371b !important;
  stroke: #58371b !important;
  fill: #58371b !important;
}

.icon-container-secondary svg,
.icon-container-secondary svg * {
  color: #e08e2b !important;
  stroke: #e08e2b !important;
  fill: #e08e2b !important;
}

/* Para mudar TODOS os ícones do site de uma vez, adicione uma classe ao body */
body.icon-theme-primary svg,
body.icon-theme-primary svg * {
  color: #58371b !important;
  stroke: #58371b !important;
  fill: #58371b00 !important;
}

body.icon-theme-secondary svg,
body.icon-theme-secondary svg * {
  color: #e08e2b !important;
  stroke: #e08e2b !important;
  fill: #e08e2b !important;
}

/* Responsive - Como Funciona Page */
@media (max-width: 1024px) {
  .como-funciona-title {
    font-size: 3rem;
  }

  .processo-etapas {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .como-funciona-page {
    padding: 40px 0;
  }

  .como-funciona-hero {
    margin-bottom: 40px;
    padding: 30px 0;
  }

  .como-funciona-title {
    font-size: 2.5rem;
  }

  .como-funciona-subtitle {
    font-size: 1.1rem;
  }

  .como-funciona-processo {
    padding: 40px 0;
  }

  .processo-etapas {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 40px;
  }

  .etapa-card {
    padding: 35px 25px;
  }

  .como-funciona-info {
    padding: 40px 20px;
    margin: 30px 0;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .como-funciona-cta {
    padding: 50px 20px;
    margin-top: 40px;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-text {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ========== SEÇÃO SERVIÇOS PRIVATIVOS (HOME) ========== */
.servicos-privativos {
  padding: 80px 0;
  background: white;
}

.servicos-header {
  text-align: center;
  margin-bottom: 60px;
}

.servicos-subtitle {
  font-size: 1rem;
  color: #e08e2b;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 15px;
}

.servicos-title {
  font-size: 2.4rem;
  color: #58371b;
  margin-bottom: 20px;
  font-weight: 700;
}

.servicos-description {
  font-size: 1.2rem;
  color: #58371b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.servico-card {
  background: #f1e3ca;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #58371b 0%, #e08e2b 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  margin: 0 10px;
  border-radius: 50px;
}

.servico-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.servico-card:hover::before {
  transform: scaleX(1);
}

.servico-icon {
  font-size: 4rem;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.servico-card h3 {
  font-size: 1.6rem;
  color: #58371b;
  margin-bottom: 15px;
  font-weight: 700;
}

.servico-card p {
  font-size: 1rem;
  color: #58371b;
  line-height: 1.7;
  margin-bottom: 20px;
}

.servico-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.servico-features li {
  font-size: 0.95rem;
  color: #58371b;
  padding: 8px 0;
  line-height: 1.6;
}

.servicos-actions {
  text-align: center;
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Botões de serviços padronizados */
.servico-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 40px;
  background: linear-gradient(135deg, #58371b 0%, #8b5a3c 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(88, 55, 27, 0.3);
  border: none;
  cursor: pointer;
}

.servico-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88, 55, 27, 0.4);
  background: linear-gradient(135deg, #6b4528 0%, #a06a4a 100%);
}

.servico-btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.servico-btn-whatsapp:hover {
  background: linear-gradient(135deg, #20BA5A 0%, #0F7A6F 100%) !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ========== PÁGINA SERVIÇOS PRIVATIVOS ========== */
.servicos-privativos-page {
  padding: 60px 0;
  background: #f1e3ca;
}

.servicos-hero {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 0;
}

.servicos-page-title {
  font-size: 3.5rem;
  color: #58371b;
  margin-bottom: 20px;
  font-weight: 700;
}

.servicos-page-subtitle {
  font-size: 1.3rem;
  color: #58371b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.servicos-intro {
  padding: 50px 0;
}

.servicos-intro .servicos-intro-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.servicos-intro-content {
  max-width: 900px;
  margin: 0 auto;
}

.servicos-intro-content .section-title {
  font-size: 2.5rem;
  color: #58371b;
  margin-bottom: 25px;
  text-align: center;
}

.servicos-intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #58371b;
  margin-bottom: 20px;
}

/* Menu de Navegação de Serviços */
.servicos-nav-menu {
  position: relative;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.servicos-nav-menu .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.servicos-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.servicos-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  background: rgba(88, 55, 27, 0.05);
  border-radius: 12px;
  text-decoration: none;
  color: #58371b;
  transition: all 0.3s ease;
  min-width: 140px;
  border: 2px solid transparent;
  cursor: pointer;
}

.servicos-nav-link:hover {
  background: rgba(224, 142, 43, 0.15);
  border-color: rgba(224, 142, 43, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.servicos-nav-link.active {
  background: rgba(224, 142, 43, 0.2);
  border-color: #e08e2b;
  color: #58371b;
  font-weight: 600;
}

.servicos-nav-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
  line-height: 1;
}

.servicos-nav-text {
  font-size: 0.9rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
}

/* Scroll suave para as seções */
.servico-detalhado {
  scroll-margin-top: 0px;
}

/* Responsive - Menu de Navegação */
@media (max-width: 768px) {
  .servicos-nav-menu {
    padding: 15px 0;
  }

  .servicos-nav {
    gap: 10px;
  }

  .servicos-nav-link {
    padding: 12px 15px;
    min-width: 110px;
  }

  .servicos-nav-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }

  .servicos-nav-text {
    font-size: 0.8rem;
  }

  .servico-detalhado {
    scroll-margin-top: 0px;
  }
}

@media (max-width: 480px) {
  .servicos-nav {
    gap: 8px;
  }

  .servicos-nav-link {
    padding: 10px 12px;
    min-width: 90px;
  }

  .servicos-nav-icon {
    font-size: 1.3rem;
  }

  .servicos-nav-text {
    font-size: 0.75rem;
  }
}

.servicos-detalhados {
  padding: 50px 0;
}

.servicos-detalhados .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.servico-detalhado {
  margin-bottom: 60px;
}

.servico-detalhado:last-child {
  margin-bottom: 0;
}

.servico-detalhado {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 50px 30px;
  margin: 40px 0;
}

.servico-detalhado-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.servico-detalhado-content-reverse {
  direction: rtl;
}

.servico-detalhado-content-reverse>* {
  direction: ltr;
}

.servico-detalhado-text {
  display: flex;
  flex-direction: column;
}

.servico-detalhado-icon {
  font-size: 3.5rem;
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.servico-detalhado-text .section-title {
  font-size: 2.2rem;
  color: #58371b;
  margin-bottom: 15px;
  line-height: 1.2;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.servico-detalhado-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #58371b;
  margin-bottom: 5px;
}

.servico-detalhado-text h3 {
  font-size: 1.3rem;
  color: #58371b;
  margin-top: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.servico-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px 20px;
}

.servico-lista li {
  font-size: 0.95rem;
  color: #58371b;
  padding: 6px 0;
  padding-left: 25px;
  position: relative;
  line-height: 1;
}

.servico-lista li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #e08e2b;
  font-weight: bold;
  font-size: 1.2rem;
}

.servico-detalhado-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  height: fit-content;
  display: flex;
  align-items: center;
}

@media (min-width: 1025px) {
  .servico-detalhado-image {
    position: sticky;
    top: 100px;
    align-self: start;
  }
}

.servico-detalhado-image img {
  width: 100%;
  height: auto;
  min-height: 450px;
  max-height: 550px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.servico-detalhado-image:hover img {
  transform: scale(1.05);
}

.servicos-personalizados {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  margin: 60px 0;
}

.servicos-personalizados-content {
  max-width: 1100px;
  margin: 0 auto;
}

.servicos-personalizados-content .servico-detalhado-icon {
  text-align: center;
  margin-bottom: 30px;
}

.servicos-personalizados-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #58371b;
  max-width: 800px;
  margin: 0 auto 50px;
}

.personalizados-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.personalizado-item {
  background: white;
  padding: 35px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.personalizado-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.personalizado-icon {
  font-size: 3rem;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.personalizado-item h3 {
  font-size: 1.3rem;
  color: #58371b;
  margin-bottom: 12px;
  font-weight: 600;
}

.personalizado-item p {
  font-size: 0.95rem;
  color: #58371b;
  line-height: 1.6;
  flex-grow: 1;
}

.servicos-beneficios {
  padding: 80px 0;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.beneficio-card {
  background: white;
  padding: 35px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.beneficio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.beneficio-icon {
  font-size: 3rem;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.beneficio-card h3 {
  font-size: 1.4rem;
  color: #58371b;
  margin-bottom: 12px;
  font-weight: 600;
}

.beneficio-card p {
  font-size: 0.95rem;
  color: #58371b;
  line-height: 1.6;
  flex-grow: 1;
}

.servicos-cta {
  background: linear-gradient(135deg, #58371b 0%, #8b5a3c 100%);
  color: white;
  padding: 80px 20px;
  border-radius: 20px;
  margin-top: 60px;
  text-align: center;
}

/* Responsive - Serviços Privativos */
@media (max-width: 1024px) {
  .servico-detalhado-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .servico-detalhado-image {
    position: relative;
    top: 0;
  }

  .servico-detalhado-image img {
    min-height: 350px;
    max-height: 400px;
  }

  .servico-lista {
    grid-template-columns: 1fr;
  }

  .servicos-page-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .servicos-privativos {
    padding: 60px 0;
  }

  .servicos-header {
    margin-bottom: 40px;
  }

  .servicos-title {
    font-size: 2rem;
  }

  .servicos-description {
    font-size: 1.1rem;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .servico-card {
    padding: 30px 25px;
  }

  .servicos-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .servico-btn {
    width: 100%;
    max-width: 300px;
  }

  .servicos-privativos-page {
    padding: 40px 0;
  }

  .servicos-hero {
    margin-bottom: 40px;
    padding: 30px 0;
  }

  .servicos-page-title {
    font-size: 2.5rem;
  }

  .servicos-page-subtitle {
    font-size: 1.1rem;
  }

  .servicos-intro {
    padding: 40px 0;
  }

  .servicos-intro-content .section-title {
    font-size: 2rem;
  }

  .servicos-detalhados {
    padding: 40px 0;
  }

  .servico-detalhado {
    margin-bottom: 40px;
  }

  .servico-detalhado-alt {
    padding: 35px 20px;
    margin: 30px 0;
  }

  .servico-detalhado-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .servico-detalhado-content-reverse {
    direction: ltr;
  }

  .servico-detalhado-image {
    position: relative;
    top: 0;
  }

  .servico-detalhado-image img {
    min-height: 280px;
    max-height: 320px;
  }

  .servico-detalhado-text .section-title {
    font-size: 1.9rem;
  }

  .servico-lista {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .servicos-personalizados {
    padding: 50px 20px;
    margin: 40px 0;
  }

  .personalizados-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .servicos-cta {
    padding: 50px 20px;
    margin-top: 40px;
  }

  .servicos-cta .cta-title {
    font-size: 2rem;
  }

  .servicos-cta .cta-text {
    font-size: 1rem;
  }

  .servicos-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .servicos-cta .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .servicos-privativos {
    padding: 50px 0;
  }

  .servicos-title {
    font-size: 1.8rem;
  }

  .servicos-description {
    font-size: 1rem;
  }

  .servico-card {
    padding: 25px 20px;
  }

  .servico-icon {
    font-size: 3rem;
  }

  .servicos-actions {
    gap: 12px;
  }

  .servico-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .servicos-page-title {
    font-size: 2rem;
  }

  .servico-detalhado-text .section-title {
    font-size: 1.8rem;
  }

  .servico-detalhado-icon {
    font-size: 3rem;
  }
}

/* ========== SEÇÃO TRANSFERS (HOME) ========== */
.transfers {
  padding: 80px 0;
  background: #f1e3ca;
}

.transfers-header {
  text-align: center;
  margin-bottom: 60px;
}

.transfers-subtitle {
  font-size: 1rem;
  color: #e08e2b;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 15px;
}

.transfers-title {
  font-size: 2.4rem;
  color: #58371b;
  margin-bottom: 20px;
  font-weight: 700;
}

.transfers-description {
  font-size: 1.2rem;
  color: #58371b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.transfers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.transfer-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.transfer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #58371b 0%, #e08e2b 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  margin: 0 10px;
  border-radius: 50px;
}

.transfer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.transfer-card:hover::before {
  transform: scaleX(1);
}

.transfer-icon {
  font-size: 4rem;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.transfer-card h3 {
  font-size: 1.6rem;
  color: #58371b;
  margin-bottom: 15px;
  font-weight: 700;
}

.transfer-card p {
  font-size: 1rem;
  color: #58371b;
  line-height: 1.7;
  margin-bottom: 20px;
}

.transfer-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.transfer-features li {
  font-size: 0.95rem;
  color: #58371b;
  padding: 8px 0;
  line-height: 1.6;
}

.transfers-actions {
  text-align: center;
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Botões de transfers padronizados */
.transfer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 40px;
  background: linear-gradient(135deg, #58371b 0%, #8b5a3c 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(88, 55, 27, 0.3);
  border: none;
  cursor: pointer;
}

.transfer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88, 55, 27, 0.4);
  background: linear-gradient(135deg, #6b4528 0%, #a06a4a 100%);
}

.transfer-btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.transfer-btn-whatsapp:hover {
  background: linear-gradient(135deg, #20BA5A 0%, #0F7A6F 100%) !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Responsive - Transfers (Home) */
@media (max-width: 768px) {
  .transfers {
    padding: 60px 0;
  }

  .transfers-header {
    margin-bottom: 40px;
  }

  .transfers-title {
    font-size: 2rem;
  }

  .transfers-description {
    font-size: 1.1rem;
  }

  .transfers-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .transfer-card {
    padding: 30px 25px;
  }

  .transfers-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .transfer-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .transfers {
    padding: 50px 0;
  }

  .transfers-title {
    font-size: 1.8rem;
  }

  .transfers-description {
    font-size: 1rem;
  }

  .transfer-card {
    padding: 25px 20px;
  }

  .transfer-icon {
    font-size: 3rem;
  }

  .transfers-actions {
    gap: 12px;
  }

  .transfer-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* Logo nas páginas - Desktop apenas */
.page-logo-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.page-logo-title-container .page-logo {
  flex-shrink: 0;
}

.page-logo-title-container .page-logo img {
  max-width: 120px;
  height: auto;
}

.page-logo-title-container h1 {
  margin: 0;
}

/* Esconder logo no mobile */
@media (max-width: 768px) {
  .page-logo-title-container .page-logo {
    display: none;
  }
}