* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: #1e1e1e;
  overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
  font-family: "Comfortaa", sans-serif;
  font-weight: 800;
}

@media (max-width: 768px) {
  h2 {
    font-size: 28px !important;
  }
}

p {
  font-family: "Poppins", sans-serif;
}

/* Loader */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}
.loader-circle {
  width: 50px;
  height: 50px;
  border: 3px solid #e0e0e0;
  border-top: 3px solid #df7f00;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 16px;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.loader-text {
  font-size: 13px;
  letter-spacing: 2px;
  color: #2e2a2a;
  font-weight: 800;
  font-family: "Comfortaa", sans-serif;
}

/* ===== HEADER ===== */
.navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.02);
}
.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.navbar-brand img {
  width: auto;
  transition: transform 0.2s;
}
.navbar-brand img:hover {
  transform: scale(1.02);
}
.nav-link {
  color: #2c3e2f !important;
  font-weight: 500;
  font-size: 15px;
  margin: 0 5px;
  position: relative;
  transition: 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: #df7f00 !important;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #df7f00;
  transition: width 0.25s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Botão do menu mobile personalizado */
.mobile-menu-btn {
  background: transparent;
  border: none;
  font-size: 40px;
  color: #2e2a2a;
  cursor: pointer;
  padding: 8px;
  display: none;
}

@media (max-width: 991px) {
  .mobile-menu-btn {
    display: block;
  }
  .navbar-collapse {
    display: none !important;
  }
}

/* Modal Menu Mobile */
.mobile-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #df7f00;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mobile-modal.active {
  transform: translateX(0);
}
.mobile-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #ffffff;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.mobile-modal-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}
.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.mobile-nav-links li {
  margin: 25px 0;
}
.mobile-nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 28px;
  font-weight: 600;
  font-family: "Comfortaa", sans-serif;
  transition: all 0.2s ease;
  display: inline-block;
  padding: 8px 16px;
}
.mobile-nav-links a:hover {
  transform: scale(1.05);
  text-decoration: underline;
}
.mobile-modal-btn {
  margin-top: 50px;
}
.mobile-modal-btn .btn-mobile-cta {
  background: #ffffff;
  color: #df7f00;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.mobile-modal-btn .btn-mobile-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
  .mobile-nav-links a {
    font-size: 24px;
  }
}

/* Botões */
.btn-premiumnav {
  background: #df7f00;
  border: none;
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
}
.btn-premiumnav:hover {
  background: #df7f00;
  transform: translateY(-2px);
  color: #ffffff;
}
.btn-outline-premium {
  background: #fff;
  border: 1.5px solid #fff;
  padding: 10px 28px;
  border-radius: 40px;
  font-weight: 500;
  color: #fff;
  transition: 0.2s;
}
.btn-outline-premium:hover {
  background: #df7f00;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .navbar-brand img {
    height: 75px !important;
    margin-left: 20px;
  }
}

/* Hero */
.hero-premium {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  background-image: url('../img/cacamba1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 42, 42, 0.781);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
}
.hero-title {
  font-size: 58px;
  font-weight: 900;
  line-height: 1.0;
  margin: 40px 0 40px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-title span {
  color: #df7f00;
}
.hero-lead {
  font-size: 18px;
  color: #FFF;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.btn-premium {
  background: #df7f00;
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(230,126,34,0.3);
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
}
.btn-premium:hover {
  background: #df7f00;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230,126,34,0.4);
  color: #ffffff;
}
.btn-outline-premium {
  background: transparent;
  border: 2px solid #ffffff;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline-premium:hover {
  background: #df7f00;
  border-color: #df7f00;
  color: #ffffff;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .hero-title { font-size: 38px; }
  .hero-lead { font-size: 16px; }
  .d-flex {
    flex-direction: column;
    align-items: center;
    gap: 15px !important;
  }
  .btn-premium, .btn-outline-premium {
    padding: 10px 24px;
    font-size: 14px;
    white-space: normal;
    width: auto;
    min-width: 220px;
  }
}
.check-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.check-list div i {
  color: #df7f00;
  margin-right: 6px;
}
.check-list div {
  color: #ffffff;
}

/* Seção Dores */
.section-light {
  padding: 80px 0;
  background: #ffffff;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header .badge {
  background: #df7f00;
  color: #ffffff;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 13px;
  display: inline-block;
}
.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1e2a1c;
  margin-top: 16px;
}
.section-header p {
  color: #6b6e68;
  font-size: 18px;
}
.pain-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  border: 1px solid #eef2e6;
  box-shadow: 0 4px 14px rgba(0,0,0,0.02);
  height: 100%;
}
.pain-card:hover {
  transform: translateY(-6px);
  border-color: #f3cd9b;
  box-shadow: 0 20px 30px -12px rgba(230,126,34,0.12);
}
.pain-icon {
  font-size: 30px;
  color: #df7f00;
  margin-bottom: 20px;
}
.pain-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #2c3e2f;
}




.hero-novo {
  background: #ffffff;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.hero-box {
  width: 100%;
  max-width: 1200px;
  background: #d97706; /* laranja */
  border-radius: 30px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

/* TEXTO */
.hero-texto {
  max-width: 550px;
  color: #1f2937;
}

.hero-texto h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-texto p {
  font-size: 16px;
  margin-bottom: 25px;
}

/* BOTÕES */
.hero-botoes {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-branco {
  background: #ffffff;
  color: #000;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}

.btn-laranja {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}

/* IMAGEM */
.hero-imagem img {
  max-width: 380px;
  position: absolute;
  right: 30px;
  bottom: 0;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .hero-texto {
    max-width: 100%;
  }

  .hero-imagem img {
    position: relative;
    right: 0;
    margin-top: 20px;
    max-width: 280px;
  }

  .hero-botoes {
    justify-content: center;
  }
}

/* Seção Principal - Fundo Branco */
.main-banner {
    min-height: 100vh;
    background-color: #ffffff;
    padding: 80px 0;
}

/* Retângulo Laranja */
.content-box {
    background-color: #f97316;
    border-radius: 24px;
    color: #ffffff;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 95%;
}

/* Título */
.main-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.text-orange {
    color: #ffedd5;
    border-bottom: 2px solid #ffffff;
    display: inline-block;
    padding-bottom: 2px;
}

/* Descrição */
.main-description {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.5;
}

/* Botão primário */
.btn-primary-custom {
    background-color: #ffffff;
    border: none;
    color: #f97316;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 40px;
    transition: all 0.2s;
}

.btn-primary-custom:hover {
    background-color: #ffedd5;
    transform: translateY(-3px);
    color: #ea580c;
}

/* Botão outline */
.btn-outline-custom {
    border: 2px solid #ffffff;
    border-radius: 40px;
    padding: 12px 28px;
    font-weight: 600;
    color: #ffffff;
    background-color: transparent;
}

.btn-outline-custom:hover {
    background-color: #ffffff;
    color: #f97316;
}

/* Selo de confiança */
.trust-badge small {
    font-size: 0.8rem;
    opacity: 0.9;
    letter-spacing: 0.3px;
}

/* Badge de boas-vindas */
.badge-welcome {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(2px);
}

/* Imagem da Caçamba */
.cacamba-img {
    max-width: 95%;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

.image-wrapper {
    text-align: right;
    padding: 10px;
}

/* Responsividade */
@media (max-width: 991px) {
    .main-banner {
        padding: 50px 0;
        text-align: center;
    }
    
    .content-box {
        text-align: center;
        margin: 0 auto;
    }
    
    .buttons-group .btn {
        margin-bottom: 10px;
    }
    
    .image-wrapper {
        text-align: center;
        margin-top: 30px;
    }
    
    .cacamba-img {
        max-width: 70%;
    }
}



/* Seção Soluções */
.section-orange-bg {
  background: #df7f00;
  padding: 80px 0;
}
.section-orange-bg .section-header .badge {
  background: #ffffff;
  color: #df7f00;
}
.section-orange-bg .section-header h2 {
  color: #ffffff;
}
.section-orange-bg .section-header p {
  color: rgba(255,255,255,0.9);
}
.feature-card-orange {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  height: 100%;
}
.feature-card-orange:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}
.feature-icon {
  font-size: 30px;
  color: #df7f00;
  margin-bottom: 20px;
}
.feature-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #2c3e2f;
}
.feature-card-orange p {
  color: #5c6f5a;
}

/* Seção Como Funciona */
.section-dark-gray {
  background: #2c2c2c;
  padding: 80px 0;
}
.section-dark-gray .section-header .badge {
  background: #df7f00;
  color: #ffffff;
}
.section-dark-gray .section-header h2 {
  color: #ffffff;
}
.section-dark-gray .section-header p {
  color: #cccccc;
}
.step-item-dark {
  text-align: center;
  background: #f9f9f9;
  border-radius: 28px;
  padding: 32px 20px;
  height: 100%;
  border: none;
  transition: 0.2s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.step-item-dark:hover {
  transform: translateY(-5px);
}
.step-number-white {
  width: 64px;
  height: 64px;
  background: #df7f00;
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
.step-item-dark h5 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e2f;
  margin-bottom: 12px;
}
.step-item-dark p {
  color: #6c757d;
  font-size: 15px;
}
.btn-orange-cta {
  background: #df7f00;
  color: #ffffff;
  padding: 8px 42px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-orange-cta:hover {
  background: #df7f00;
  transform: translateY(-3px);
  color: #ffffff;
}

/* FAQ */
.faq-section {
  background: #df7f00;
  padding: 80px 0;
}
.faq-item-premium {
  background: #ffffff;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid #edf2e8;
  transition: 0.2s;
}
.faq-question-premium {
  padding: 20px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 17px;
  color: #2e2a2a;
}
.faq-answer-premium {
  padding: 0 28px 24px 28px;
  display: none;
  color: #6b6e68;
  border-top: 1px solid #f0f2ea;
  line-height: 1.5;
}
.faq-item-premium.active .faq-answer-premium {
  display: block;
}

/* Footer */
.footer-premium {
  background: #2a2a2a;
  padding: 56px 0 32px;
  color: #e0e0e0;
  border-top: none;
}
.footer-logo {
  margin-bottom: 16px;
}
.footer-logo img {
  height: 48px;
  filter: brightness(0) invert(1);
}
.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #df7f00;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #c0c0c0;
  text-decoration: none;
  transition: 0.2s;
  font-size: 14px;
}
.footer-links a:hover {
  color: #df7f00;
  padding-left: 5px;
}
.footer-contact-info {
  font-size: 14px;
  line-height: 1.8;
}
.footer-contact-info i {
  width: 28px;
  color: #df7f00;
}
.social-icons {
  margin-top: 20px;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #ffffff;
  margin-right: 10px;
  transition: 0.2s;
  font-size: 18px;
}
.social-icons a:hover {
  background: #df7f00;
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: #a0a0a0;
}
.footer-bottom a {
  color: #df7f00;
  text-decoration: none;
}
@media (max-width: 768px) {
  .footer-premium {
    padding: 40px 0 24px;
  }
  .footer-title {
    margin-top: 20px;
  }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 12px;
}
.whatsapp-link {
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  animation: pulse 1.5s infinite;
}
.whatsapp-link:hover {
  transform: scale(1.08);
  background: #20b859;
  animation: none;
}
.whatsapp-bubble {
  background: #ffffff;
  color: #2e2a2a;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  position: relative;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid #e0e0e0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  animation: bounce 0.5s ease;
}
.whatsapp-bubble.show {
  opacity: 1;
  visibility: visible;
}
.whatsapp-bubble.hide {
  opacity: 0;
  visibility: hidden;
}
.whatsapp-bubble::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid #ffffff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes bounce {
  0% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@media (max-width: 768px) {
  .whatsapp-float { bottom: 20px; right: 20px; gap: 10px; }
  .whatsapp-link { width: 65px; height: 65px; font-size: 36px; }
  .whatsapp-bubble { padding: 10px 16px; font-size: 13px; white-space: nowrap; }
}
@media (max-width: 480px) {
  .whatsapp-link { width: 70px; height: 70px; font-size: 40px; }
  .whatsapp-bubble { padding: 12px 18px; font-size: 14px; }
}

/* Seção Contato */
.contact-section { padding: 80px 0; }
.badge-contact {
  background: #df7f00;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}
.about-title {
  font-size: 38px;
  font-weight: 800;
  color: #2e2a2a;
  margin-bottom: 24px;
  line-height: 1.2;
}
.about-title span { color: #df7f00; }
.about-text { margin-bottom: 28px; }
.about-text p {
  color: #2e2a2a;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.about-text i.bi-quote {
  font-size: 32px;
  color: #df7f00;
  opacity: 0.5;
  margin-right: 8px;
  float: left;
}
.contact-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0e6d8;
}
.contact-title {
  font-size: 28px;
  font-weight: 700;
  color: #2e2a2a;
  margin-bottom: 12px;
}
.contact-subtitle {
  color: #6b6e68;
  font-size: 15px;
  margin-bottom: 32px;
  border-left: 3px solid #df7f00;
  padding-left: 16px;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-icon {
  width: 52px;
  height: 52px;
  background: rgba(223, 127, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i {
  font-size: 24px;
  color: #df7f00;
}
.contact-details h4 {
  font-size: 16px;
  font-weight: 700;
  color: #2e2a2a;
  margin-bottom: 6px;
}
.contact-details a {
  font-size: 18px;
  font-weight: 600;
  color: #df7f00;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 4px;
  transition: 0.2s;
}
.contact-details a:hover {
  transform: translateX(3px);
  color: #df7f00;
}
@media (max-width: 768px) {
  .contact-section { padding: 50px 0; }
  .about-title { font-size: 28px; }
  .contact-card { padding: 28px; margin-top: 20px; }
  .contact-title { font-size: 24px; }
  .contact-item { gap: 14px; }
  .contact-icon { width: 44px; height: 44px; }
  .contact-icon i { font-size: 20px; }
  .contact-details a { font-size: 16px; }
}

/* Responsividade Cards */
@media (max-width: 768px) {
  .pain-card, .feature-card-orange, .step-item-dark, .contact-card {
    margin: 0 10px;
  }
  .section-header h2 {
    font-size: 28px !important;
    padding: 0 15px;
  }
  .section-header p {
    font-size: 16px !important;
    padding: 0 15px;
  }
  .hero-title, .hero-lead {
    padding: 0 15px;
  }
  .check-list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* Cards de Preço */
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
}
.toggle-option {
  transition: all 0.3s ease;
}
.toggle-option.active {
  background: #df7f00 !important;
  color: #fff !important;
}
@media (max-width: 768px) {
  .pricing-card {
    margin: 0 10px;
  }
  .toggle-option {
    padding: 6px 18px !important;
    font-size: 14px;
  }
}

/* Modal */
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-content::-webkit-scrollbar { width: 6px; }
.modal-content::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
.modal-content::-webkit-scrollbar-thumb { background: #df7f00; border-radius: 10px; }
.plano-option.active-option {
  border-color: #df7f00 !important;
  background: rgba(223,127,0,0.05) !important;
}
.periodo-option.active-periodo {
  border-color: #df7f00 !important;
  background: rgba(223,127,0,0.05) !important;
}
.metodo-pagamento.active {
  border-color: #df7f00 !important;
  background: rgba(223,127,0,0.05) !important;
  color: #df7f00 !important;
}
.btn-concluir:hover {
  background: #20b859;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}
.close-modal:hover {
  color: #df7f00 !important;
  transform: rotate(90deg);
  display: inline-block;
}
input:focus {
  border-color: #df7f00 !important;
  box-shadow: 0 0 0 2px rgba(223, 127, 0, 0.1);
}
@media (max-width: 650px) {
  .modal-content { padding: 0; }
  .modal-content > div:last-child { padding: 20px; }
  .plano-option { padding: 12px; }
  .plano-preco { font-size: 18px; }
}



/* Seção de Depoimentos Slide */
 /* Reset para garantir que as bolinhas apareçam */
    .carousel-indicators {
        position: relative !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important;
        margin-top: 40px !important;
        margin-bottom: 0 !important;
        background: transparent !important;
    }
    
    .carousel-indicators button {
        width: 10px !important;
        height: 10px !important;
        border-radius: 50% !important;
        background-color: #cbd5e0 !important;
        opacity: 1 !important;
        margin: 0 !important;
        border: none !important;
        transition: all 0.3s ease !important;
        text-indent: 0 !important;
        position: relative !important;
        display: block !important;
    }
    
    .carousel-indicators button.active {
        background-color: #df7f00 !important;
        width: 28px !important;
        border-radius: 10px !important;
    }
    
    .carousel-indicators button:hover {
        background-color: #df7f00 !important;
        opacity: 0.7 !important;
    }
    
    /* Transição mais rápida entre slides */
    .carousel-item {
        transition: transform 0.4s ease-in-out !important;
    }
    
    .testimonial-card {
        background-color: #ffffff;
        border: 1px solid #e8e8e8;
        border-radius: 24px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        border-color: rgba(223, 127, 0, 0.3);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    }
    
    .testimonial-text {
        color: #2e2a2a;
        font-style: normal;
        font-size: 15px;
        line-height: 1.6;
    }
    
    .testimonial-author {
        border-top: 1px solid #f0f0f0;
        padding-top: 20px;
        margin-top: 8px;
    }
    
    .badge {
        background-color: #f8f9fa;
        color: #df7f00;
        font-weight: 500;
    }
    
    @media (max-width: 768px) {
        .testimonial-card {
            padding: 20px 18px !important;
        }
        .testimonial-text {
            font-size: 14px;
        }
        .carousel-indicators {
            margin-top: 30px !important;
        }
    }