/* ===========================================
   CIALDF — Custom CSS
   Fonte: Montserrat | Verde: #008631 | Laranja: #FF8C00
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,600&display=swap');

/* -------------------------------------------
   VARIÁVEIS
   ------------------------------------------- */
:root {
  --cial-green:       #008631;
  --cial-green-dark:  #006626;
  --cial-green-light: #e6f3eb;
  --cial-orange:      #FF8C00;
  --cial-orange-dark: #d97400;
  --cial-white:       #ffffff;
  --cial-gray-bg:     #f7f9f7;
  --cial-text:        #1a1a1a;
  --cial-text-muted:  #5a6672;
  --cial-border:      rgba(0, 134, 49, 0.10);
  --cial-shadow:      0 4px 20px rgba(0, 0, 0, 0.07);
  --cial-shadow-hover:0 10px 32px rgba(0, 0, 0, 0.14);
  --cial-radius:      14px;
  --cial-radius-sm:   8px;
  --navbar-height:    72px;
  --font-family:      'Montserrat', sans-serif;
  --custom-primary:   #008631;
}

/* -------------------------------------------
   BASE
   ------------------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
}

body {
  font-family: var(--font-family);
  font-weight: 300;
  color: var(--cial-text);
  background-color: var(--cial-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: 700;
}

img {
  max-width: 100%;
}

/* -------------------------------------------
   BOTÕES GLOBAIS
   ------------------------------------------- */
.btn-cial-primary,
.btn-custom-primary {
  background-color: var(--cial-green);
  border-color: var(--cial-green);
  color: #fff;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--cial-radius-sm);
  padding: 0.7rem 1.5rem;
  letter-spacing: 0.03em;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.btn-cial-primary:hover,
.btn-cial-primary:focus,
.btn-cial-primary:active,
.btn-custom-primary:hover,
.btn-custom-primary:focus,
.btn-custom-primary:active {
  background-color: var(--cial-green-dark) !important;
  border-color: var(--cial-green-dark) !important;
  color: #fff !important;
  filter: none !important;
  box-shadow: 0 4px 16px rgba(0, 134, 49, 0.30) !important;
  transform: translateY(-1px);
}

.btn-cial-accent {
  background-color: var(--cial-orange);
  border-color: var(--cial-orange);
  color: #fff;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--cial-radius-sm);
  padding: 0.7rem 1.5rem;
  letter-spacing: 0.03em;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.btn-cial-accent:hover,
.btn-cial-accent:focus,
.btn-cial-accent:active {
  background-color: var(--cial-orange-dark) !important;
  border-color: var(--cial-orange-dark) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(255, 140, 0, 0.35) !important;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 0.85rem 2rem !important;
  font-size: 1rem !important;
}

/* -------------------------------------------
   NAVBAR
   ------------------------------------------- */
.cial-navbar {
  background-color: var(--cial-white);
  height: var(--navbar-height);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  z-index: 1050;
}

.navbar-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.cial-navbar .nav-link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--cial-text);
  padding: 0.5rem 0.8rem;
  border-radius: var(--cial-radius-sm);
  letter-spacing: 0.02em;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.cial-navbar .nav-link:hover,
.cial-navbar .nav-link:focus {
  color: var(--cial-green);
  background-color: var(--cial-green-light);
}

.nav-cta {
  font-size: 0.88rem !important;
  padding: 0.45rem 1.1rem !important;
  font-weight: 600 !important;
}

.navbar-toggler {
  border: 1.5px solid var(--cial-green);
  padding: 0.3rem 0.55rem;
  border-radius: var(--cial-radius-sm);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(0, 134, 49, 0.20);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23008631' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* -------------------------------------------
   SEÇÕES — PADRÃO
   ------------------------------------------- */
section {
  padding: 90px 0;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 2rem;
  color: var(--cial-text);
  line-height: 1.25;
  position: relative;
  padding-bottom: 1.1rem;
  margin-bottom: 0;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  background-color: var(--cial-orange);
  border-radius: 2px;
}

/* -------------------------------------------
   HERO SECTION
   ------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--navbar-height);
  padding-bottom: 0;
  overflow: hidden;
  background-image: url('../images/banner-cial-df-principal.jpg');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 25, 10, 0.48) 0%,
    rgba(0, 60, 25, 0.33) 100%
  );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.hero-content {
  color: var(--cial-white);
}

.hero-title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 2.1rem;
  line-height: 1.28;
  color: var(--cial-white);
  margin-bottom: 1.1rem;
}

.hero-subtitle {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-badge {
  display: inline-block;
  background-color: var(--cial-orange);
  color: var(--cial-white);
  font-family: var(--font-family);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

.hero-description {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.25rem;
}

.hero-form-cta-text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  border-left: 4px solid var(--cial-orange);
  padding-left: 0.85rem;
  margin-bottom: 0;
}

.hero-form-wrapper {
  background-color: var(--cial-white);
  border-radius: var(--cial-radius);
  padding: 2.25rem;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.28);
}

/* Página de obrigado */
.thankyou-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thankyou-icon {
  font-size: 3.5rem;
  color: var(--cial-orange);
  margin-bottom: 1.25rem;
}

.thankyou-content .hero-subtitle {
  font-style: normal;
  margin-bottom: 0;
}

/* Formulário dentro do hero */
.hero-form-wrapper .form-control,
.hero-form-wrapper .form-select {
  font-family: var(--font-family);
  font-size: 0.9rem;
  border-radius: var(--cial-radius-sm);
  border-color: #d4dce0;
}

.hero-form-wrapper .form-control:focus,
.hero-form-wrapper .form-select:focus {
  border-color: var(--cial-green);
  box-shadow: 0 0 0 3px rgba(0, 134, 49, 0.18);
}

.hero-form-wrapper .form-floating > label {
  font-family: var(--font-family);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--cial-text-muted);
}

.hero-form-wrapper .invalid-feedback {
  font-family: var(--font-family);
  font-size: 0.8rem;
}

.hero-form-wrapper .alert {
  font-family: var(--font-family);
  font-size: 0.88rem;
  border-radius: var(--cial-radius-sm);
}

/* -------------------------------------------
   SEÇÃO: POR QUE CIALDF?
   ------------------------------------------- */
.section-why {
  background-color: var(--cial-gray-bg);
}

.why-card {
  background-color: var(--cial-white);
  border-radius: var(--cial-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--cial-shadow);
  border: 1px solid var(--cial-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--cial-shadow-hover);
}

.why-card-img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-card-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.why-card:hover .why-card-img {
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.22));
  transform: translateY(-2px);
}

.why-card-text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cial-text);
  line-height: 1.5;
  margin: 0;
}

/* -------------------------------------------
   SEÇÃO: SOLUÇÕES
   ------------------------------------------- */
.section-solutions {
  background-color: var(--cial-white);
}

.solution-card {
  background-color: var(--cial-white);
  border-radius: var(--cial-radius);
  overflow: hidden;
  box-shadow: var(--cial-shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--cial-shadow-hover);
}

.solution-card-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--cial-green-light);
  flex-shrink: 0;
}

.solution-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.solution-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}

.solution-card-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1rem;
  color: var(--cial-green);
  line-height: 1.4;
  margin: 0;
}

.solution-card-text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--cial-text-muted);
  line-height: 1.75;
  flex: 1;
  margin: 0;
}

/* -------------------------------------------
   SEÇÃO: PROBLEMAS
   ------------------------------------------- */
.section-problems {
  background-color: var(--cial-green-light);
}

.section-problems .section-title {
  color: var(--cial-green-dark);
}

.problems-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.problems-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-family: var(--font-family);
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--cial-text);
  line-height: 1.5;
  background-color: var(--cial-white);
  padding: 1rem 1.25rem;
  border-radius: var(--cial-radius-sm);
  box-shadow: var(--cial-shadow);
  border-left: 4px solid var(--cial-orange);
  transition: transform 0.2s ease;
}

.problems-item:hover {
  transform: translateX(4px);
}

.problems-icon {
  color: var(--cial-orange);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.problems-img-wrapper {
  border-radius: var(--cial-radius);
  overflow: hidden;
  box-shadow: var(--cial-shadow-hover);
}

.problems-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* -------------------------------------------
   SEÇÃO: ATENDIMENTO / PERFIS
   ------------------------------------------- */
.section-profiles {
  background-color: var(--cial-white);
}

.profile-card {
  background-color: var(--cial-white);
  border-radius: var(--cial-radius);
  overflow: hidden;
  box-shadow: var(--cial-shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--cial-shadow-hover);
}

.profile-card-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--cial-green-light);
  flex-shrink: 0;
}

.profile-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.profile-card-text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cial-text);
  padding: 1.1rem 1.25rem;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

/* -------------------------------------------
   SEÇÃO: ATENDIMENTO / PERFIS — CAROUSEL
   ------------------------------------------- */
.profiles-carousel-wrapper {
  position: relative;
  padding: 0 56px;
}

.profiles-swiper {
  overflow: hidden;
}

.profiles-swiper .swiper-slide {
  height: auto;
}

.profiles-swiper .profile-card {
  height: 100%;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
  border: 1px solid var(--cial-border);
}

.profiles-swiper .profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.15);
}

.profiles-btn-prev,
.profiles-btn-next {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--cial-green);
  background-color: var(--cial-white);
  color: var(--cial-green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 0;
  line-height: 1;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.profiles-btn-prev {
  left: 0;
}

.profiles-btn-next {
  right: 0;
}

.profiles-btn-prev:hover,
.profiles-btn-next:hover {
  background-color: var(--cial-green);
  color: var(--cial-white);
  box-shadow: 0 4px 18px rgba(0, 134, 49, 0.30);
}

.profiles-btn-prev:hover {
  transform: translateY(-50%) translateX(-2px);
}

.profiles-btn-next:hover {
  transform: translateY(-50%) translateX(2px);
}

.profiles-pagination {
  margin-top: 1.75rem;
  text-align: center;
}

.profiles-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--cial-green);
  opacity: 0.28;
  margin: 0 5px;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.profiles-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--cial-green);
  transform: scale(1.35);
}

@media (max-width: 767.98px) {
  .profiles-carousel-wrapper {
    padding: 0 44px;
  }

  .profiles-btn-prev,
  .profiles-btn-next {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }
}

@media (max-width: 575.98px) {
  .profiles-carousel-wrapper {
    padding: 0 36px;
  }

  .profiles-btn-prev,
  .profiles-btn-next {
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
  }
}

/* -------------------------------------------
   CTA FINAL
   ------------------------------------------- */
.section-cta {
  position: relative;
  background-image: url('../images/banner-cial-df-cta.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 110px 0;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 25, 10, 0.55) 0%,
    rgba(0, 70, 28, 0.48) 100%
  );
  z-index: 0;
}

.cta-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 2.3rem;
  color: var(--cial-white);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.cta-text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
  margin-bottom: 2rem;
}

/* -------------------------------------------
   FOOTER
   ------------------------------------------- */
.cial-footer {
  background-color: var(--cial-green-dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 64px 0 32px;
}

.footer-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-heading {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cial-white);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-family);
  font-size: 0.92rem;
  font-weight: 400;
}

.footer-contact li i {
  color: var(--cial-orange);
  width: 18px;
  flex-shrink: 0;
  font-size: 1rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--cial-orange);
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-family);
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-social-link i {
  color: var(--cial-orange);
  font-size: 1.15rem;
  width: 20px;
}

.footer-social-link:hover {
  color: var(--cial-orange);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.12);
  margin: 2.5rem 0 1.25rem;
}

.footer-copy {
  font-family: var(--font-family);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* -------------------------------------------
   SEÇÃO: DEPOIMENTOS
   ------------------------------------------- */
.section-testimonials {
  background-color: var(--cial-gray-bg);
}

.testimonial-card {
  background-color: var(--cial-white);
  border-radius: var(--cial-radius);
  padding: 1.75rem 2rem;
  box-shadow: var(--cial-shadow);
  border: 1px solid var(--cial-border);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  font-size: 6rem;
  line-height: 1;
  color: var(--cial-green);
  opacity: 0.07;
  font-family: Georgia, serif;
  font-weight: 700;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--cial-shadow-hover);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-google {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.testimonial-google-icon {
  font-size: 1.05rem;
  color: #4285F4;
}

.testimonial-google-label {
  font-family: var(--font-family);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cial-text-muted);
  letter-spacing: 0.04em;
}

.testimonial-stars {
  display: flex;
  gap: 0.18rem;
}

.testimonial-stars i {
  color: #FBBC04;
  font-size: 0.88rem;
}

.testimonial-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 0.93rem;
  color: var(--cial-text);
  line-height: 1.85;
  font-style: italic;
  flex: 1;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--cial-border);
  padding-top: 1rem;
  margin-top: auto;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--cial-green);
  color: var(--cial-white);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author-name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cial-text);
}

/* -------------------------------------------
   LOJAS / ONDE ESTAMOS
   ------------------------------------------- */
.section-stores {
  background-color: #0d1f13;
  padding: 80px 0 64px;
}

.stores-title {
  color: var(--cial-white) !important;
}

.stores-subtitle {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.store-card {
  background-color: rgba(0, 30, 12, 0.6);
  border: 1px solid rgba(0, 134, 49, 0.28);
  border-radius: var(--cial-radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.store-card:hover {
  border-color: rgba(0, 134, 49, 0.65);
  transform: translateY(-4px);
}

.store-name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cial-white);
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 134, 49, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cial-green);
  border: 1px solid var(--cial-green);
  border-radius: 4px;
  padding: 0.1em 0.5em;
  vertical-align: middle;
  line-height: 1.6;
}

.store-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.store-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-family: var(--font-family);
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  line-height: 1.5;
}

.store-info li > i {
  color: var(--cial-green);
  font-size: 0.92rem;
  width: 22px;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.store-info li a {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
  width: 100%;
}

.store-info li a i {
  color: var(--cial-green);
  font-size: 0.92rem;
  width: 22px;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.store-info li a:hover,
.store-info li a:hover span {
  color: var(--cial-green);
}

.btn-store-directions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(0, 134, 49, 0.45);
  color: var(--cial-green);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.87rem;
  padding: 0.65rem 1rem;
  border-radius: var(--cial-radius-sm);
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn-store-directions:hover {
  background-color: var(--cial-green);
  border-color: var(--cial-green);
  color: var(--cial-white);
}

.stores-map {
  margin-top: 3rem;
  border-radius: var(--cial-radius);
  overflow: hidden;
}

.stores-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

/* -------------------------------------------
   RESPONSIVO — TABLET (< 992px)
   ------------------------------------------- */
@media (max-width: 991.98px) {
  .cial-navbar .navbar-collapse {
    background-color: var(--cial-white);
    padding: 0.75rem 0.25rem 1rem;
    border-top: 1px solid var(--cial-border);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  .cial-navbar .nav-link {
    padding: 0.65rem 0.8rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }

  .cial-navbar .nav-item:last-child .nav-link,
  .cial-navbar .nav-item:last-child .btn {
    border-bottom: none;
  }

  .nav-cta {
    display: inline-block;
    margin-top: 0.5rem;
  }

  .section-cta {
    background-attachment: scroll;
  }
}

/* -------------------------------------------
   RESPONSIVO — MOBILE (< 768px)
   ------------------------------------------- */
@media (max-width: 767.98px) {
  section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  /* Hero */
  .hero-section {
    min-height: auto;
    padding-top: calc(var(--navbar-height) + 1.5rem);
    padding-bottom: 0;
    background-attachment: scroll;
  }


  .hero-container {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }

  .hero-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-form-cta-text {
    font-size: 0.93rem;
  }

  .hero-form-wrapper {
    padding: 1.5rem;
    border-radius: var(--cial-radius-sm);
  }

  .hero-badges {
    gap: 0.4rem;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 0.25rem 0.75rem;
  }

  /* CTA */
  .section-cta {
    padding: 72px 0;
    background-attachment: scroll;
  }

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

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

  /* Problemas */
  .problems-item {
    font-size: 0.9rem;
    padding: 0.85rem 1rem;
  }

  /* Depoimentos */
  .testimonial-card {
    padding: 1.5rem;
  }

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

  /* Botões */
  .btn-lg {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.92rem !important;
    width: 100%;
  }

  .btn-cial-primary,
  .btn-cial-accent,
  .btn-custom-primary {
    font-size: 0.88rem;
    padding: 0.65rem 1.25rem;
  }

  /* Footer */
  .footer-logo {
    height: 44px;
  }

  .cial-footer {
    padding: 48px 0 28px;
  }
}

/* -------------------------------------------
   RESPONSIVO — MOBILE PEQUENO (< 576px)
   ------------------------------------------- */
@media (max-width: 575.98px) {
  .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .hero-title {
    font-size: 1.4rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .why-card-img {
    width: 72px;
    height: 72px;
  }

  .why-card-text {
    font-size: 0.9rem;
  }

  .solution-card-title {
    font-size: 0.95rem;
  }

  .problems-item {
    font-size: 0.88rem;
    gap: 0.7rem;
  }

  .profile-card-text {
    font-size: 0.9rem;
  }
}

/* -------------------------------------------
   CARROSSEL DE MARCAS (infinite scroll)
   ------------------------------------------- */
.brands-carousel-section {
  background-color: var(--cial-white);
  padding: 2rem 0;
  border-top: 1px solid var(--cial-border);
  border-bottom: 1px solid var(--cial-border);
  overflow: hidden;
}

.brands-track-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: brands-scroll 28s linear infinite;
}

.brands-track-wrapper:hover .brands-track {
  animation-play-state: paused;
}

.brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
  cursor: pointer;
}

.brand-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

@keyframes brands-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.float {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  transition: 0.5s;
}

.float:hover {
  transform: scale(1.1);
}

.float img {
  max-width: 110%;
}