:root {
  --primary-blue: #233a54;
  --primary-red: #e03c31;
  --primary-red-hover: #c42b21;
  --bg-light: #ffffff;
  --bg-gray: #f8f9fa;
  --text-main: #333333;
  --text-muted: #666666;
  --font-main: 'Inter', sans-serif;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

/* Typography */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-red);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(224, 60, 49, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 60, 49, 0.5);
  color: #ffffff;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 950px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 100;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.4);
}

.header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  padding: 0 30px;
}

.logo img {
  width: auto;
  height: auto;
  max-height: 84px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  position: relative;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--primary-red);
}

.nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--primary-red);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
}

.mobile-machine-img {
  display: none;
}

/* Hero Section */
.hero {
  background-size: cover;
  background-position: center;
  background-color: var(--primary-blue);
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-bottom: 160px;
  padding-top: 120px;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 700px;
  color: #fff;
  position: relative;
  padding-left: 20px;
}

.hero-title-wrapper {
  position: relative;
  margin-bottom: 40px;
}

@media (max-width: 1200px) {
  .hero-content { padding-left: 0; }
}

.hero-title {
  font-size: 3.2rem;
  margin-bottom: 0;
  line-height: 1.25;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
}

.abf-logo-text {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 35px;
  color: #f1f1f1;
}

.abf-text {
  font-size: 0.65rem;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-outline-white {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background-color: #fff;
  color: var(--primary-blue);
}

/* Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

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

/* --- INVESTMENT SECTION --- */
.investment-section {
  padding: 80px 0 40px 0;
  background-color: #f4f6f8;
  position: relative;
  z-index: 10;
}

.investment-container {
  display: flex;
  gap: 40px;
  align-items: stretch;
  margin-top: -160px;
}

.stats-box {
  background-color: var(--primary-blue);
  color: #fff;
  border-radius: 12px;
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 15px 30px rgba(35, 58, 84, 0.15);
  position: relative;
  overflow: hidden;
}

.stats-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h1v1H0z' fill='rgba(255,255,255,0.04)' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
}

.stats-box h3 {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 20px 0 10px;
}
.stats-box h3 strong {
  font-weight: 700;
}

.stats-number {
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  margin: 10px 0;
  position: relative;
}
.stats-number::before {
  display: none;
}

.stats-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.stats-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  width: 100%;
}
.brazil-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.stats-footer p {
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
}

/* Investment Cards */
.investment-cards {
  flex: 1.5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.inv-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px 20px 30px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transition: transform 0.3s ease;
}
.inv-card:hover {
  transform: translateY(-5px);
}

.inv-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--primary-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 25px;
}
.inv-icon > svg {
  width: 40px;
  height: 40px;
}

.inv-badge {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 30px;
  height: 30px;
  background-color: var(--primary-red);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #fff;
}
.inv-badge svg {
  width: 16px;
  height: 16px;
}

.inv-card p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-blue);
  line-height: 1.3;
  margin-bottom: 25px;
}

.inv-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 15px;
  margin-top: auto;
}

.inv-line {
  width: 40px;
  height: 3px;
  background-color: var(--primary-red);
  border-radius: 2px;
}

@media (max-width: 992px) {
  .investment-container {
    flex-direction: column;
  }
  .investment-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .stats-number { font-size: 6rem; }
}

@media (max-width: 768px) {
  .investment-cards {
    grid-template-columns: 1fr;
  }
}

/* Intro Section */
.intro-section {
  padding: 0 0 100px 0;
  background-color: #fff;
}

.intro-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.intro-text {
  flex: 1;
}

.intro-text h2 {
  font-size: 2.45rem;
  margin-top: 0;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.intro-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.intro-text .highlight {
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.intro-map {
  flex: 1;
  text-align: right;
}

@keyframes floatMap {
  0% {
    transform: translateY(0);
    filter: drop-shadow(0 10px 15px rgba(35, 58, 84, 0.2));
  }
  50% {
    transform: translateY(-15px);
    filter: drop-shadow(0 30px 25px rgba(35, 58, 84, 0.3));
  }
  100% {
    transform: translateY(0);
    filter: drop-shadow(0 10px 15px rgba(35, 58, 84, 0.2));
  }
}

.intro-map img {
  max-width: 100%;
  width: 580px;
  transition: transform 0.4s ease;
  will-change: transform, filter;
}

/* Lav Perform Custom Additions */
.lavperform-badge {
  display: inline-block;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 15px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.lavperform-features {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
  gap: 15px;
}

.lp-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-icon {
  width: 40px; 
  height: 40px;
  border-radius: 50%;
  display: flex; 
  justify-content: center; 
  align-items: center;
}
.lp-icon svg {
  width: 20px;
  height: 20px;
}
.bg-blue { 
  background-color: var(--primary-blue); 
}

.lp-feature span {
  font-size: 0.85rem;
  line-height: 1.2;
  color: var(--primary-blue);
  text-align: left;
}

.lp-divider {
  width: 1px; 
  height: 30px;
  background-color: #e0e0e0;
}

@media (max-width: 991px) {
  .lavperform-features {
    flex-direction: column;
    border-radius: 15px;
    padding: 20px;
    width: 100%;
    align-items: flex-start;
  }
  .lp-divider {
    width: 100%;
    height: 1px;
  }
}

/* Solution Section (Split Layout) */
.solution-section {
  display: flex;
  background-color: #121F2D;
  color: #fff;
}

.solution-image {
  flex: 1;
  min-height: 500px;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-content {
  flex: 1;
  padding: 30px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solution-content-inner {
  max-width: 650px;
}

.solution-content h2 {
  color: #fff;
}

.solution-content p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  font-size: 1rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: #f1f1f1;
}

.benefit-item .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Location Section */
.location-section {
  padding: 120px 0;
  background-color: #fafbfc;
  background-image: radial-gradient(rgba(35, 58, 84, 0.08) 2px, transparent 2px);
  background-size: 30px 30px;
  position: relative;
  overflow: hidden;
}

.location-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.location-text {
  flex: 1;
}

.location-text h2 {
  font-size: 2.5rem;
  max-width: 450px;
  line-height: 1.25;
  margin-bottom: 15px;
}

.location-map {
  flex: 1;
  text-align: right;
  position: relative;
}

.location-map::before {
  content: '';
  position: absolute;
  top: 50%; left: 60%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(224, 60, 49, 0.15) 0%, rgba(224,60,49,0) 65%);
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: radarPulse 3s ease-out infinite;
  border-radius: 50%;
}

@keyframes radarPulse {
  0% { transform: translate(-50%, -50%) scale(0.7); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

.location-map img {
  width: 480px;
  max-width: 100%;
  position: relative;
  z-index: 2;
  animation: floatMap 6s ease-in-out infinite;
  will-change: transform, filter;
  transition: transform 0.4s ease;
}

.location-map img:hover {
  transform: scale(1.05);
  animation-play-state: paused;
}

.btn-pulse {
  animation: pulseBtn 2.5s infinite;
}

@keyframes pulseBtn {
  0% { box-shadow: 0 0 0 0 rgba(224, 60, 49, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(224, 60, 49, 0); }
  100% { box-shadow: 0 0 0 0 rgba(224, 60, 49, 0); }
}

.btn-bob-pulse {
  animation: bobPulseBtn 3s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.btn-bob-pulse:hover {
  animation: none;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(224, 60, 49, 0.5);
}

@keyframes bobPulseBtn {
  0% { transform: translateY(0); box-shadow: 0 0 0 0 rgba(224, 60, 49, 0.5); }
  50% { transform: translateY(-5px); box-shadow: 0 0 0 12px rgba(224, 60, 49, 0); }
  100% { transform: translateY(0); box-shadow: 0 0 0 0 rgba(224, 60, 49, 0); }
}

/* Gallery Carousel 3D */
.gallery-section {
  padding: 80px 0 100px;
  background-color: #fff;
  overflow: hidden;
}

.gallery-swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 60px;
}

.gallery-swiper .swiper-slide {
  width: 250px;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  position: relative;
  cursor: pointer;
}

@media (min-width: 768px) {
  .gallery-swiper .swiper-slide {
    width: 350px;
    height: 450px;
  }
}

.gallery-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover Overlay */
.hover-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35, 58, 84, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Compartilhadas Page Styles */
.page-header {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
}
.page-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 15px;
}
.page-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  opacity: 0.9;
}
.story-wrapper {
  background: white;
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  margin-top: -100px;
  position: relative;
  z-index: 10;
}
.compartilhada-text {
  column-count: 2;
  column-gap: 40px;
}
.compartilhada-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.benefit-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.4s ease;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}
.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: var(--primary-red);
}
.benefit-icon {
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: 25px;
  transition: transform 0.4s ease;
}
.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}
.benefit-card h4 {
  color: var(--primary-dark);
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 700;
}
.benefit-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}
.contact-box {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  padding: 60px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
}
.lead-form {
  margin-top: 40px;
}
.lead-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.lead-form .form-input, .lead-form .form-textarea {
  flex: 1;
  padding: 18px 24px;
  border: 2px solid transparent;
  background: #f1f3f5;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  color: #333;
}
.lead-form .form-input:focus, .lead-form .form-textarea:focus {
  outline: none;
  border-color: var(--primary-red);
  background: white;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}
.lead-form .form-textarea {
  min-height: 160px;
  resize: vertical;
}
@media (max-width: 768px) {
  .story-wrapper {
    padding: 30px;
    margin-top: 0;
  }
  .compartilhada-text {
    column-count: 1 !important;
  }
  .lead-form .form-row {
    flex-direction: column;
    gap: 15px;
  }
  .form-row-2 {
    flex-direction: column !important;
  }
  .contact-box {
    padding: 40px 20px;
  }
}

.gallery-swiper .swiper-slide:hover .hover-overlay {
  opacity: 1;
}

.hover-overlay svg {
  width: 50px;
  height: 50px;
  transform: scale(0.5);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-swiper .swiper-slide:hover .hover-overlay svg {
  transform: scale(1);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 50px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--primary-red);
}

/* Custom Dash Pagination */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.swiper-pagination-bullet {
  width: 25px;
  height: 5px;
  border-radius: 5px;
  background-color: var(--primary-blue);
  opacity: 0.3;
  transition: all 0.4s ease;
  margin: 0 !important;
}

.swiper-pagination-bullet-active {
  width: 45px;
  opacity: 1;
  background-color: var(--primary-red);
}

/* --- SUPORTE 360 SECTION --- */
.suporte-section {
  padding: 100px 0;
  background-color: var(--primary-blue);
  color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.02)' stroke-width='2'%3E%3Crect x='20' y='20' width='40' height='50' rx='4'/%3E%3Ccircle cx='40' cy='50' r='12'/%3E%3Ccircle cx='40' cy='50' r='9'/%3E%3Cline x1='20' y1='30' x2='60' y2='30'/%3E%3Ccircle cx='28' cy='25' r='2' fill='rgba(255,255,255,0.02)'/%3E%3Ccircle cx='34' cy='25' r='2' fill='rgba(255,255,255,0.02)'/%3E%3Crect x='45' y='23' width='8' height='4' rx='1'/%3E%3C/g%3E%3C/svg%3E"), radial-gradient(circle at center, rgba(255,255,255,0.03) 0%, transparent 70%);
}
.suporte-section h2 {
  font-size: 3.5rem;
  margin-bottom: 5px;
  color: #ffffff;
}
.suporte-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  color: #ccc;
  margin-bottom: 60px;
}

.suporte-diagram {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 400px;
  margin: 0 auto 90px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.2);
  animation: spinWheel 60s linear infinite;
}

@keyframes spinWheel {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinItem {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

.suporte-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 160px; height: 160px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border: 3px solid rgba(255,255,255,0.1);
  animation: spinItem 60s linear infinite;
}
.suporte-logo img {
  width: 110px;
}

.suporte-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translate(-50%, -50%);
  z-index: 10;
  background-color: transparent;
  padding: 10px;
  animation: spinItem 60s linear infinite;
}

.suporte-icon {
  width: 80px; height: 80px;
  background-color: #fff;
  color: var(--primary-red);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border: 4px solid var(--primary-blue);
}
.suporte-icon svg { width: 35px; height: 35px; }

.suporte-label {
  background-color: #fff;
  color: var(--primary-blue);
  font-weight: 800;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.item-top { top: 0; left: 50%; }
.item-right { top: 50%; left: 100%; }
.item-bottom { top: 100%; left: 50%; }
.item-left { top: 50%; left: 0; }

.suporte-line {
  position: absolute;
  background-color: rgba(255,255,255,0.2);
  z-index: 1;
}
.line-v { top: 0; bottom: 0; left: 50%; width: 1px; transform: translateX(-50%); }
.line-h { left: 0; right: 0; top: 50%; height: 1px; transform: translateY(-50%); }

.suporte-footer-text {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.5;
}
.suporte-footer-text strong { color: #fff; }

/* --- ESTRUTURA FORTE SECTION --- */
.estrutura-section {
  padding: 100px 0;
  background-color: #0b1521;
  color: #fff;
}
.estrutura-section h2 {
  font-size: 3.5rem;
  margin-bottom: 5px;
  line-height: 1.1;
  color: #ffffff;
}
.estrutura-subtitle {
  font-size: 1.3rem;
  color: #ccc;
  margin-bottom: 50px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 50px;
}

.partner-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 15px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}
.partner-card:hover {
  transform: scale(1.05);
}
.partner-text {
  font-size: 2.5rem;
  color: #0b1521;
  font-weight: 800;
  letter-spacing: -1px;
}

.tags-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tag-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(224, 60, 49, 0.3);
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
}
.tag-item svg {
  width: 24px; height: 24px;
}

.estrutura-footer-text {
  font-size: 1.1rem;
  color: #ccc;
}

@media (max-width: 768px) {
  .suporte-diagram {
    height: auto;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .suporte-item, .suporte-center {
    position: relative;
    top: auto; left: auto;
    transform: none;
  }
  .suporte-line { display: none; }
  .suporte-section h2, .estrutura-section h2 { font-size: 2.5rem; }
  
  .partners-grid {
    grid-template-columns: 1fr;
  }
  .tags-container {
    flex-direction: column;
    align-items: center;
  }
}

/* --- FOOTER --- */
.footer {
  background-color: #18283a;
  background-image: radial-gradient(circle at 100% 0%, #233a54 0%, transparent 50%),
                    radial-gradient(circle at 0% 100%, #1e334a 0%, transparent 50%);
  position: relative;
  color: #fff;
  padding-top: 100px;
}

.footer-wave {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

.footer-texture {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h1v1H0z' fill='rgba(255,255,255,0.03)' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.footer-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

/* Brand Col */
.footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: 25px;
}

.footer-brand .footer-logo img {
  width: auto;
  max-width: 180px;
  height: auto;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
}

.footer-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.social-icons a:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(224,60,49,0.4);
}

.social-icons svg {
  width: 20px;
  height: 20px;
}

/* Common Col Headings */
.footer h4 {
  font-size: 1.05rem;
  margin-bottom: 25px;
  color: #fff;
  position: relative;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-red);
  border-radius: 2px;
}

/* Links Col */
.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a::before {
  content: '→';
  margin-right: 8px;
  color: var(--primary-red);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Contact Col */
.contact-list {
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-list svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Map Col */
.footer-map .map-container {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
  transition: border-color 0.3s ease;
}

.footer-map .map-container:hover {
  border-color: rgba(255,255,255,0.3);
}

/* Footer Bottom */
.footer-bottom {
  background-color: #121f2d;
  padding: 25px 0;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-bottom p, .footer-credits {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
  .intro-container, .location-container {
    flex-direction: column;
    text-align: center;
  }
  .intro-text h2, .location-text h2 {
    margin: 0 auto 20px;
  }
  .intro-map img, .location-map img {
    width: 80%;
  }
  .solution-section {
    flex-direction: column;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* NEW HEADER AND MENU */
  .header {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
  }
  .header-inner {
    justify-content: flex-end;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    cursor: pointer;
  }
  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  }
  .nav.active {
    display: flex !important;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .footer-wave svg {
    height: 40px;
  }
  .hero-title {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
    text-align: center;
  }
  .hero-content {
    text-align: center;
    padding-left: 0;
  }
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  .abf-logo-text {
    justify-content: center;
    margin-bottom: 20px;
  }
  .abf-logo-text img {
    max-height: 160px !important;
  }
  .hero {
    padding-bottom: 120px;
  }
  .stats-box {
    margin-top: -30px;
    padding: 30px 20px;
  }
  .stats-number { font-size: 4.5rem !important; }
  .stats-footer { padding-right: 0 !important; }
  
  .solution-image {
    min-height: 250px;
  }
  .solution-content {
    padding: 40px 20px;
  }
  .benefits-image img {
    margin: 20px 0 !important;
  }
  
  /* Suporte 360 Carousel/Diagram */
  .suporte-diagram, .suporte-center, .suporte-item {
    animation: none !important;
  }
  .suporte-diagram {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
  }
  .suporte-center { position: static !important; transform: none !important; margin-bottom: 20px; }
  .suporte-item { position: static !important; transform: none !important; width: 100% !important; max-width: 300px; display: flex; text-align: left; }
  .suporte-label { white-space: nowrap !important; }
  .suporte-label br { display: none !important; }
  .suporte-line { display: none !important; }
  
  /* Machine Brands */
  .mobile-machine-img {
    display: block;
    height: 120px;
    object-fit: contain;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: opacity 0.3s;
  }
  .partner-card {
    position: relative;
    padding-right: 130px !important;
    text-align: left;
    display: flex;
    align-items: center;
    height: 160px;
  }
  .partner-card .partner-logo {
    max-width: 160px !important;
    margin-left: 10px;
  }
  .partner-card.active-mobile .mobile-machine-img {
    opacity: 1;
  }
  .partner-brands-row { gap: 0 !important; justify-content: space-around !important; }
  .partner-brands-row img {
    height: 80px !important;
    max-width: 30vw;
  }

  /* Faturamento / Lav Perform */
  .faturamento-title { font-size: 2.2rem !important; }
  .lavperform-features {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    width: 100% !important;
  }
  .lp-feature {
    width: 100%;
    margin-bottom: 15px !important;
    padding-bottom: 15px !important;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  .lp-feature:last-child {
    border-bottom: none;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .lp-divider { display: none !important; }

  /* Franquia automatizada & Bradesco Logos */
  .franquia-title { font-size: 2.2rem !important; }
  .franquia-blue-box, .franquia-red-btn {
    width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    box-sizing: border-box;
  }
  .bradesco-logos-row {
    flex-wrap: nowrap !important;
    gap: 15px !important;
  }
  .bradesco-logos-row img {
    height: auto !important;
    max-height: 80px !important;
    max-width: 38vw;
  }

  /* ABF Spacing */
  .abf-container { margin-bottom: -60px !important; }

  /* Footer Centering */
  .footer-col, .footer-brand, .footer-links, .footer-contact, .footer-map {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .footer h4 {
    text-align: center;
    display: inline-block;
  }
  .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .contact-list li {
    justify-content: center !important;
  }
  .footer-links a::before {
    display: none !important;
  }
  .footer-social-links, .social-icons { justify-content: center !important; }
}

/* Base Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.animate-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

@keyframes floatBeautiful {
  0% { transform: scale(1) rotate(0deg); }
  33% { transform: scale(1.03) rotate(1.5deg); filter: drop-shadow(0 15px 25px rgba(35,58,84,0.15)); }
  66% { transform: scale(1.01) rotate(-1deg); filter: drop-shadow(0 10px 15px rgba(35,58,84,0.1)); }
  100% { transform: scale(1) rotate(0deg); }
}

/* Machine Hover Displays */
.machine-display {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  height: 500px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.machine-left { left: 0; }
.machine-right { right: 0; }

.machine-img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.8) translateY(30px);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.machine-img.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

@media (max-width: 1300px) {
  .machine-display {
    display: none;
  }
}

/* --- MAPA ANIMADO BRASIL --- */
#brazil-map-svg svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
}
#brazil-map-svg svg path {
  fill: #233a54 !important;
  stroke: #ffffff !important;
  stroke-width: 1px !important;
  stroke-dasharray: 4 4 !important;
  transition: fill 0.3s ease;
}

.map-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #c42b21;
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  box-shadow: -2px 2px 5px rgba(0,0,0,0.4);
  transform: translate(-50%, -100%) rotate(-45deg) scale(0);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.8s ease;
  z-index: 10;
}
.map-pin::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  background-color: #fff;
  border-radius: 50%;
}
.map-pin.pop-in {
  opacity: 1;
  transform: translate(-50%, -100%) rotate(-45deg) scale(1);
}

.map-pin::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; height: 50px;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
}

/* ==========================================================================
   TOOLTIP DO MAPA
   ========================================================================== */
.map-tooltip {
  position: absolute;
  width: 220px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -120%) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}

.map-tooltip.active {
  opacity: 1;
  transform: translate(-50%, -100%) scale(1);
  pointer-events: auto;
}

.map-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.95);
  border-right: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.tooltip-img-wrapper {
  width: 100%;
  height: 100px;
  overflow: hidden;
}

#tooltip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tooltip-info {
  padding: 12px;
  text-align: center;
}

#tooltip-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 5px;
  line-height: 1.2;
}

#tooltip-city {
  font-size: 0.75rem;
  color: #666;
  font-weight: 500;
  margin: 0;
}
#tooltip-city i {
  color: var(--primary-red);
  margin-right: 4px;
}


/* Compartilhadas Page Styles */
.page-header {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  padding-top: 100px;
  position: relative;
}
.page-title {
  font-size: 3rem;
  margin-bottom: 10px;
}
.page-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}
.compartilhada-text p {
  margin-bottom: 15px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.benefit-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: center;
}
.benefit-card:hover {
  transform: translateY(-5px);
}
.benefit-icon {
  font-size: 2.5rem;
  color: var(--primary-red);
  margin-bottom: 20px;
}
.benefit-card h4 {
  color: var(--primary-dark);
  margin-bottom: 15px;
}
.benefit-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}
.lead-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.lead-form .form-input, .lead-form .form-textarea {
  flex: 1;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}
.lead-form .form-textarea {
  min-height: 150px;
  resize: vertical;
}
@media (max-width: 768px) {
  .compartilhada-text {
    column-count: 1 !important;
  }
  .lead-form .form-row {
    flex-direction: column;
    gap: 15px;
  }
  .form-row-2 {
    flex-direction: row !important;
  }
}

