/* css/style.css */

/* ════════════════════════════════════════════
   VARIABLES & BASE
════════════════════════════════════════════ */
:root {
  --green:       #2DBD6E;
  --green-dark:  #1E9654;
  --green-light: #E6F9EE;
  --green-glow:  rgba(45, 189, 110, 0.15);
  --black:       #0D0D0D;
  --gray-900:    #1A1A1A;
  --gray-700:    #444444;
  --gray-500:    #777777;
  --gray-200:    #E8E8E8;
  --gray-100:    #F5F5F5;
  --white:       #FFFFFF;
  --font:        'Inter', sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.14);
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* AQUI: Caminhos para as imagens que você enviou */
  --banner-1: url('../assets/img/banner-1.jpg');
  --banner-2: url('../assets/img/banner-2.jpg');
  --banner-3: url('../assets/img/banner-3.jpg');
  --banner-4: url('../assets/img/banner-4.jpg');
  --banner-5: url('../assets/img/banner-5.jpg');
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; padding-left: 0; }

/* ════════════════════════════════════════════
   TYPOGRAPHY & BUTTONS
════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,189,110,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--green-light);
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 16px;
}

.section-title span { color: var(--green); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   NAVBAR BOOTSTRAP CUSTOMIZATION
════════════════════════════════════════════ */
.navbar {
  transition: all 0.3s ease;
  padding: 20px 0;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 10px 0;
}

.navbar-brand.nav-logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}

.navbar-brand.nav-logo span { color: var(--green); }
.navbar.scrolled .navbar-brand.nav-logo { color: var(--black); }

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9) !important;
  transition: var(--transition);
}

.navbar.scrolled .nav-link { color: var(--gray-700) !important; }
.nav-link:hover { color: var(--green) !important; }

.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  filter: invert(1); /* Deixa o ícone branco quando transparente */
}

.navbar.scrolled .navbar-toggler-icon {
  filter: invert(0); /* Deixa o ícone preto quando com fundo branco */
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--black);
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
  }
  .navbar.scrolled .navbar-collapse {
    background: #FFF;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .nav-link { color: #FFF !important; }
  .navbar.scrolled .nav-link { color: var(--black) !important; }
}

/* ════════════════════════════════════════════
   HERO BANNER SLIDER
════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background-color: var(--black);
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide.active { opacity: 1; z-index: 2; }

/* Overlay escuro na esquerda para garantir a leitura do texto sobre as imagens */
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.slide-1 { background-image: var(--banner-1); }
.slide-2 { background-image: var(--banner-2); }
.slide-3 { background-image: var(--banner-3); }
.slide-4 { background-image: var(--banner-4); }
.slide-5 { background-image: var(--banner-5); }

.slide-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 680px;
}

.slide-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(45,189,110,0.15);
  border: 1px solid rgba(45,189,110,0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.slide-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.slide-title span { color: var(--green); }

.slide-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.slide-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.dot.active {
  background: var(--green);
  width: 24px;
  border-radius: 4px;
}

.slider-arrows {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
}

.arrow {
  pointer-events: all;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.arrow:hover {
  background: var(--green);
  border-color: var(--green);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

@media (max-width: 480px) {
  .slide-btns { flex-direction: column; }
}

/* ════════════════════════════════════════════
   STATS BAR
════════════════════════════════════════════ */
#stats {
  background: var(--green);
  padding: 28px 0;
}

.stat-item {
  padding: 8px 16px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.2); }
  .stat-item { padding: 16px 8px; }
}

/* ════════════════════════════════════════════
   QUEM SOMOS (CARD FIXO)
════════════════════════════════════════════ */
#quem-somos {
  padding: 100px 0;
  background: var(--white);
}

.about-card-main {
  position: relative;
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  /* Removido o overflow: hidden daqui para a pílula não ser cortada */
}

/* Nova camada de fundo para conter o brilho e a marca d'água */
.about-card-bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  z-index: 0;
}

.about-card-bg::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(45,189,110,0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.about-card-bg::after {
  content: '{ }';
  position: absolute;
  bottom: 24px;
  right: 32px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(45,189,110,0.08);
  font-family: monospace;
}

.about-card-content {
  position: relative;
  z-index: 1;
}

.about-logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.about-logo span { color: var(--green); }

.about-tagline {
  font-size: 0.8rem;
  color: var(--green);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 32px;
}

.about-manifesto {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  font-style: italic;
}

.about-pill {
  position: absolute;
  bottom: -20px;
  left: 40px;
  background: var(--green);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  z-index: 2; /* Fica acima de tudo e pode vazar a borda */
}

.about-text p {
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 20px;
  font-size: 1rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700);
}

.value-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   SOLUÇÕES
════════════════════════════════════════════ */
#solucoes {
  padding: 100px 0;
  background: var(--gray-100);
}

.solution-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: var(--transition);
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.solution-icon {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.solution-card:hover .solution-icon {
  background: var(--green);
}

.solution-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.solution-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 20px;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 4px 10px;
  border-radius: 50px;
}

/* ════════════════════════════════════════════
   POR QUE A CCL
════════════════════════════════════════════ */
#diferenciais {
  padding: 100px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

#diferenciais::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45,189,110,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.diff-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.diff-card:hover {
  background: rgba(45,189,110,0.08);
  border-color: rgba(45,189,110,0.3);
  transform: translateY(-4px);
}

.diff-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.9;
}

.diff-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.diff-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ════════════════════════════════════════════
   PROCESSO
════════════════════════════════════════════ */
#processo {
  padding: 100px 0;
  background: var(--white);
}

@media (min-width: 992px) {
  .steps-container::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--gray-200);
    z-index: 0;
  }
}

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-light);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--green);
  margin: 0 auto 24px;
  position: relative;
  transition: var(--transition);
}

.step:hover .step-num {
  background: var(--green);
  color: var(--white);
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
#faq {
  padding: 100px 0;
  background: var(--gray-100);
}

.faq-cta-card {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.faq-cta-card p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.accordion-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item.open {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(45,189,110,0.1);
}

.accordion-btn {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.accordion-question {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--green);
  font-weight: 700;
  transition: var(--transition);
}

.accordion-item.open .accordion-icon {
  background: var(--green);
  color: var(--white);
  transform: rotate(45deg);
}

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-item.open .accordion-answer {
  max-height: 300px;
}

.accordion-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
}

/* ════════════════════════════════════════════
   CONTATO
════════════════════════════════════════════ */
#contato {
  padding: 100px 0;
  background: var(--white);
}

.contact-info p {
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.contact-item-text a, .contact-item-text span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
}

.contact-item-text a:hover { color: var(--green); }

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  color: var(--gray-700);
}

.social-btn:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* Form */
.contact-form {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
}

@media (max-width: 480px) {
  .contact-form { padding: 24px; }
}

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
}

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

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  justify-content: center;
}

.form-note {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 12px;
}

/* ════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════ */
#cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a2a18 0%, #1E9654 50%, #2DBD6E 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

#cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

#cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════
   FOOTER (CORES CORRIGIDAS)
════════════════════════════════════════════ */
#footer {
  background-color: var(--gray-900);
  padding: 60px 0 32px;
  color: var(--gray-200); /* Força a cor base clara */
}

/* Força a cor clara em todos os textos do rodapé */
#footer p, 
#footer span, 
#footer li {
  color: rgba(255, 255, 255, 0.7) !important;
}

#footer h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: #FFFFFF !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white) !important;
}

.footer-logo span { color: var(--green) !important; }

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7) !important;
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--green) !important; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.footer-bottom a {
  color: var(--green) !important;
  transition: var(--transition);
}

.footer-bottom a:hover { color: var(--white) !important; }

/* ════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON (CORRIGIDO)
════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px !important;
  height: 60px !important;
  background-color: #25D366;
  border-radius: 50px;
  box-shadow: 0px 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.65);
}

/* Força o SVG a não estourar */
.whatsapp-float svg {
  width: 35px !important;
  height: 35px !important;
  fill: #FFFFFF !important;
  margin: 0 !important;
  padding: 0 !important;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}