/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,0,1;wght@100;300;400;700;900&display=swap');

/* CSS Variables - Cores da Italbronze */
:root {
  --primary-blue: #003770;
  --secondary-blue: #03203E;
  --accent-yellow: #efcc00;
  --secondary-yellow: #EFCC00;
  --light-blue: #00A0D2;
  --dark-gray: #333333;
  --medium-gray: #222222;
  --light-gray: #F7F7F7;
  --white: #ffffff;
  --radius: 8px;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounce {

  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    transform: translate3d(0, -30px, 0);
  }

  70% {
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0, -4px, 0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-count-up {
  animation: countUp 0.8s ease-out forwards;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-blue);
}

/* Smooth transitions */
* {
  transition: all 0.3s ease;
}

/* Button Styles */
.btn-primary {
  background: var(--accent-yellow);
  color: var(--primary-blue);
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--secondary-yellow);
  box-shadow: 0 10px 25px rgba(254, 217, 4, 0.3);
}

.btn-outline {
  background: transparent;
  color: white;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 0.75rem;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 1024px) {
  .header-content {
    height: 5rem;
  }
}

.logo img {
  height: 2rem;
  width: auto;
}

@media (min-width: 1024px) {
  .logo img {
    height: 2.5rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  background: none;
  border: none;
  color: #374151;
  font-weight: 500;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.nav-link:hover {
  color: var(--primary-blue);
}

.header.scrolled .nav-link {
  color: #374151;
}

.header.scrolled .nav-link:hover {
  color: var(--primary-blue);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .header-actions {
    display: flex;
  }
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6B7280;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.header-phone:hover {
  color: var(--primary-blue);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 0.375rem;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn:hover {
  color: var(--primary-blue);
  background: rgba(0, 0, 0, 0.1);
}

.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid #E5E7EB;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-content {
  padding: 0.5rem;
}

.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem;
  color: #374151;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--primary-blue);
  background: #F9FAFB;
}

.mobile-contact {
  padding: 0.75rem;
  border-top: 1px solid #E5E7EB;
  margin-top: 0.5rem;
}

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6B7280;
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.mobile-phone:hover {
  color: var(--primary-blue);
}

.mobile-cta {
  width: 100%;
  padding: 0.75rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--primary-blue) 100%);
  color: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.pattern-circle {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.pattern-1 {
  top: 5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
}

.pattern-2 {
  top: 10rem;
  right: 5rem;
  width: 6rem;
  height: 6rem;
}

.pattern-3 {
  bottom: 8rem;
  left: 8rem;
  width: 4rem;
  height: 4rem;
}

.pattern-4 {
  bottom: 5rem;
  right: 2.5rem;
  width: 5rem;
  height: 5rem;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 80vh;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  width: fit-content;
}

.hero-badge svg {
  color: var(--accent-yellow);
}

.hero-heading h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .hero-heading h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-heading h1 {
    font-size: 3.75rem;
  }
}

.hero-highlight {
  color: var(--accent-yellow);
}

.hero-gradient {
  background: linear-gradient(to right, white, #D1D5DB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-heading p {
  font-size: 1.25rem;
  color: #D1D5DB;
  line-height: 1.6;
  max-width: 32rem;
}

@media (min-width: 640px) {
  .hero-heading p {
    font-size: 1.5rem;
  }
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-features {
    grid-template-columns: 1fr 1fr;
  }
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(254, 217, 4, 0.2);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
}

.feature-content h3 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-content p {
  font-size: 0.875rem;
  color: #9CA3AF;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-ctas button {
  font-size: 14px;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
  }
}

.hero-main-cta {
  position: relative;
  overflow: hidden;
}

.hero-main-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(254, 217, 4, 0.3);
}

.hero-main-cta svg {
  transition: transform 0.3s ease;
}

.hero-main-cta:hover svg {
  transform: translateX(4px);
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1rem;
  font-size: 0.875rem;
  color: #9CA3AF;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent-yellow);
  border-radius: 50%;
}

.hero-right {
  position: relative;
}

.hero-image-container {
  position: relative;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(4px);
  padding: 2rem;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 55, 112, 0.6), transparent);
  border-radius: 0.75rem;
}

.floating-stats {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}

.floating-stats-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 1rem;
  color: var(--primary-blue);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-yellow);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
}

.hero-decoration-1 {
  top: -1rem;
  right: -1rem;
  width: 5rem;
  height: 5rem;
  background: rgba(254, 217, 4, 0.2);
}

.hero-decoration-2 {
  bottom: -1rem;
  left: -1rem;
  width: 4rem;
  height: 4rem;
  background: rgba(0, 160, 210, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator-inner {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0.5rem;
}

.scroll-indicator-dot {
  width: 0.25rem;
  height: 0.75rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 9999px;
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  background: white;
}

@media (min-width: 1024px) {
  .stats-section {
    padding: 6rem 0;
  }
}


.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .section-header h2 {
    font-size: 2.25rem;
  }
}

.text-highlight {
  color: var(--accent-yellow);
}

.section-header p {
  font-size: 1.25rem;
  color: #6B7280;
  max-width: 48rem;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

.stat-card {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #F9FAFB, white);
  border: 1px solid #E5E7EB;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
}

.stat-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.stat-card.animate {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease-out forwards;
}

.stat-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: rgba(254, 217, 4, 0.1);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  color: var(--accent-yellow);
  transition: background 0.3s ease;
}

.stat-card:hover .stat-card-icon {
  background: rgba(254, 217, 4, 0.2);
}

.stat-card-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0rem;
}

@media (min-width: 1024px) {
  .stat-card-number {
    font-size: 1.5rem;
  }
}

.stat-suffix {
  color: var(--primary-blue);
}

.stat-card-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.stat-card-description {
  font-size: 0.875rem;
  color: #6B7280;
}

.stats-additional {
  text-align: center;
}

.certification-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 55, 112, 0.05);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  color: var(--primary-blue);
  font-weight: 500;
}

.certification-badge svg {
  color: var(--accent-yellow);
}

/* Animation classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Toast Styles */
.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background: var(--primary-blue);
  color: white;
  border: 1px solid var(--accent-yellow);
  border-radius: 0.5rem;
  padding: 1rem;
  min-width: 300px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.toast.show {
  transform: translateX(0);
}

.toast.success {
  background: #10B981;
  border-color: #D1FAE5;
}

.toast.error {
  background: #EF4444;
  border-color: #FEE2E2;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .hero-heading h1 {
    font-size: 2rem;
  }

  .hero-heading p {
    font-size: 1.125rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-card-number {
    font-size: 2rem;
  }
}

/* Loading animation for numbers */
.animated-number {
  display: inline-block;
  transition: all 0.3s ease;
}

/* Products Section */
.products-section {
  padding: 4rem 0;
  background: var(--light-gray);
}

@media (min-width: 1024px) {
  .products-section {
    padding: 6rem 0;
  }
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: #6B7280;
  margin-top: 2rem;
}

.product-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent-yellow);
  border-radius: 50%;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-only {
    display: none;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
}

.product-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.product-card.animate {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease-out forwards;
}

.product-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
  background: #E5E7EB;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

/* Carousel Styles */
@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }

  .main-carousel .carousel-cell {
    width: 80%;
    margin-right: 10px;
    border-radius: 1rem;
  }
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.product-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 3rem;
  height: 3rem;
  background: var(--accent-yellow);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.product-content p {
  color: #6B7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-features-list {
  margin-bottom: 1.5rem;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.feature-bullet {
  width: 0.375rem;
  height: 0.375rem;
  background: var(--accent-yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

.product-feature-item span {
  font-size: 0.875rem;
  color: #6B7280;
}

.product-cta {
  width: 100%;
  border: 1px solid var(--primary-blue);
  color: var(--primary-blue);
  background: transparent;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.product-cta:hover {
  background: var(--primary-blue);
  color: white;
}

.product-card:hover .product-cta {
  border-color: var(--accent-yellow);
  color: var(--accent-yellow);
}

.product-card:hover .product-cta:hover {
  background: var(--accent-yellow);
  color: var(--primary-blue);
}

.custom-development {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-dev-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .custom-dev-content {
    grid-template-columns: 1fr 1fr;
  }
}

.custom-dev-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.custom-dev-text p {
  color: #6B7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.custom-dev-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.custom-dev-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.custom-dev-features .feature-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent-yellow);
  border-radius: 50%;
}

.custom-dev-features span {
  color: #374151;
}

.custom-dev-image {
  position: relative;
}

.custom-dev-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 0.75rem;
}

/* Industries Section */
.industries-section {
  padding: 4rem 0;
  background: white;
}

@media (min-width: 1024px) {
  .industries-section {
    padding: 6rem 0;
  }
}

.industries-display {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .industries-display {
    grid-template-columns: 1fr 1fr;
  }
}

.industry-selector {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.industry-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #F9FAFB;
  color: #374151;
  opacity: 0;
  transform: translateY(30px);
}

.industry-option:hover {
  background: #E5E7EB;
}

.industry-option.active {
  background: var(--primary-blue);
  color: white;
  box-shadow: 0 25px 50px rgba(0, 55, 112, 0.15);
}

.industry-option.animate {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease-out forwards;
}

.industry-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  background: white;
  color: #6B7280;
}

.industry-option:hover .industry-icon {
  background: var(--accent-yellow);
  color: var(--primary-blue);
}

.industry-option.active .industry-icon {
  background: var(--accent-yellow);
  color: var(--primary-blue);
}

.industry-info {
  flex: 1;
}

.industry-info h3 {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.industry-info p {
  font-size: 0.875rem;
  opacity: 0.7;
}

.industry-option.active .industry-info p {}

.industry-arrow {
  transition: transform 0.3s ease;
}

.industry-option.active .industry-arrow {
  transform: rotate(90deg);
}

.industry-option:hover .industry-arrow {
  transform: translateX(4px);
}

.industry-details {
  position: relative;
}

.industry-detail {
  display: none;
  background: linear-gradient(135deg, #F9FAFB, white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.industry-detail.active {
  display: block;
}

.industry-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.industry-detail:hover .industry-image img {
  transform: scale(1.05);
}

.industry-gradient {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.agriculture-gradient {
  background: linear-gradient(to right, #10B981, #059669);
}

.mining-gradient {
  background: linear-gradient(to right, #F59E0B, #D97706);
}

.oil-gradient {
  background: linear-gradient(to right, #3B82F6, #2563EB);
}

.automotive-gradient {
  background: linear-gradient(to right, #EF4444, #DC2626);
}

.industry-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 0.5rem;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.badge-icon.agriculture {
  background: linear-gradient(to right, #10B981, #059669);
}

.badge-icon.mining {
  background: linear-gradient(to right, #F59E0B, #D97706);
}

.badge-icon.oil {
  background: linear-gradient(to right, #3B82F6, #2563EB);
}

.badge-icon.automotive {
  background: linear-gradient(to right, #EF4444, #DC2626);
}

.industry-badge span {
  font-weight: 600;
  color: var(--primary-blue);
}

.industry-content {
  padding: 2rem;
}

.industry-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.industry-content p {
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.applications h4 {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.applications ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.applications li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.applications .feature-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent-yellow);
  border-radius: 50%;
}

.applications span {
  color: #374151;
}

.industry-cta {
  width: 100%;
}

.industry-summary {
  background: var(--primary-blue);
  border-radius: 1rem;
  padding: 2rem;
  color: white;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .industry-summary {
    grid-template-columns: repeat(3, 1fr);
  }
}

.summary-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--accent-yellow);
  margin-bottom: 0.5rem;
}

.summary-label {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.summary-description {
  font-size: 0.875rem;
  color: #D1D5DB;
}

/* Certifications Section */
.certifications-section {
  padding: 4rem 0;
  background: var(--light-gray);
}

@media (min-width: 1024px) {
  .certifications-section {
    padding: 6rem 0;
  }
}

.pioneer-achievement {
  background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 4rem;
  color: white;
}

.pioneer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .pioneer-content {
    grid-template-columns: 1fr 1fr;
  }
}

.pioneer-year {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.year-icon {
  width: 3rem;
  height: 3rem;
  background: var(--accent-yellow);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
}

.year-number {
  color: var(--accent-yellow);
  font-weight: 700;
  font-size: 1.875rem;
}

.year-label {
  font-size: 0.875rem;
  color: #D1D5DB;
}

.pioneer-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pioneer-text p {
  color: #D1D5DB;
  line-height: 1.6;
}

.pioneer-image {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 0.75rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.pioneer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.current-certifications {
  margin-bottom: 4rem;
}

.current-certifications h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 2rem;
}

.certifications-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .certifications-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .certifications-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.certification-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
}

.certification-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.certification-card.animate {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease-out forwards;
}

.certification-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cert-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cert-icon.blue {
  background: linear-gradient(to right, #3B82F6, #2563EB);
}

.cert-icon.green {
  background: linear-gradient(to right, #10B981, #059669);
}

.cert-icon.red {
  background: linear-gradient(to right, #EF4444, #DC2626);
}

.cert-icon.orange {
  background: linear-gradient(to right, #F59E0B, #D97706);
}

.cert-icon.purple {
  background: linear-gradient(to right, #8B5CF6, #7C3AED);
}

.cert-icon.indigo {
  background: linear-gradient(to right, #6366F1, #4F46E5);
}

.cert-content h4 {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}

.cert-region {
  font-size: 0.875rem;
  color: var(--accent-yellow);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.cert-description {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.5;
}

.international-recognition {
  margin-bottom: 4rem;
}

.international-recognition h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 2rem;
}

.recognition-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .recognition-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .recognition-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.recognition-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.recognition-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.recognition-card.animate {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease-out forwards;
}

.recognition-year {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--accent-yellow), var(--secondary-yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.recognition-card h4 {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}

.recognition-subtitle {
  font-size: 0.875rem;
  color: #6B7280;
  margin-bottom: 0.5rem;
}

.recognition-description {
  font-size: 0.75rem;
  color: #9CA3AF;
}

.quality-methodologies {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.methodologies-header {
  text-align: center;
  margin-bottom: 2rem;
}

.methodologies-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.methodologies-header p {
  color: #6B7280;
  max-width: 32rem;
  margin: 0 auto;
}

.methodologies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .methodologies-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.methodology {
  text-align: center;
}

.methodology-icon {
  width: 4rem;
  height: 4rem;
  background: var(--primary-blue);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--accent-yellow);
}

.methodology h4 {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.methodology p {
  font-size: 0.875rem;
  color: #6B7280;
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  background: white;
}

@media (min-width: 1024px) {
  .contact-section {
    padding: 6rem 0;
  }
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-container {
  background: linear-gradient(135deg, #F9FAFB, white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.form-icon {
  width: 3rem;
  height: 3rem;
  background: var(--accent-yellow);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
}

.form-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}

.form-header p {
  color: #6B7280;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.input-with-icon {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9CA3AF;
  pointer-events: none;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: unset;
  padding: 0.75rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.input-with-icon input {
  padding-left: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 55, 112, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 6rem;
}

.submit-btn {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.loading-spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--primary-blue);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.form-disclaimer {
  font-size: 0.75rem;
  color: #9CA3AF;
  text-align: center;
  margin-top: -0.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: var(--primary-blue);
  border-radius: 1rem;
  padding: 2rem;
  color: white;
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-yellow);
  margin-bottom: 1.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  width: 3rem;
  height: 3rem;
  background: var(--accent-yellow);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.contact-item-content h4 {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.contact-link {
  color: var(--accent-yellow);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #FEF3C7;
}

.contact-item-content p {
  color: #D1D5DB;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.contact-stats {
  background: linear-gradient(135deg, #F9FAFB, white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-stats h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.stats-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stat-item span {
  color: #374151;
}

.quick-response {
  background: var(--primary-blue);
  border-radius: 1rem;
  padding: 1.5rem;
  color: var(--accent-yellow);
}

.response-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.response-header h4 {
  font-weight: 700;
  font-size: 1.125rem;
}

.response-time {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.response-description {
  font-size: 0.875rem;
}

/* Footer */
.footer {
  background: var(--primary-blue);
  color: white;
  padding: 3rem 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent-yellow);
  margin-bottom: 1rem;
}

.footer-logo {
  height: 2rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-description {
  color: #D1D5DB;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  background: none;
  border: none;
  color: #D1D5DB;
  text-align: left;
  padding: 0;
  cursor: pointer;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.footer-link:hover {
  color: var(--accent-yellow);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #D1D5DB;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact:hover {
  color: var(--accent-yellow);
}

.footer-schedule {
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid #4B5563;
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.copyright {
  color: #9CA3AF;
  font-size: 0.875rem;
}

.certifications-footer {
  color: #9CA3AF;
  font-size: 0.875rem;
}

/* Hover effects */
.hero-main-cta:hover svg {
  animation: arrowSlide 0.3s ease;
}

@keyframes arrowSlide {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }

  100% {
    transform: translateX(0);
  }
}


/* Header Text Colors - Estado Normal (sem scroll) */
.header .nav-link {
  color: white !important;
}

.header .header-phone {
  color: white !important;
}

.header .header-phone span {
  color: white !important;
}

.header .header-phone svg {
  stroke: white !important;
}

/* Header Text Colors - Estado Scrolled */
.header.scrolled .nav-link {
  color: #1e293b !important;
  /* Cor escura para contraste */
}

.header.scrolled .header-phone {
  color: #1e293b !important;
}

.header.scrolled .header-phone span {
  color: #1e293b !important;
}

.header.scrolled .header-phone svg {
  stroke: #1e293b !important;
}

/* Mobile Menu Button Colors */
.header .mobile-menu-btn {
  color: white !important;
}

.header .mobile-menu-btn svg {
  stroke: white !important;
}

.header.scrolled .mobile-menu-btn {
  color: #1e293b !important;
}

.header.scrolled .mobile-menu-btn svg {
  stroke: #1e293b !important;
}

/* Hover States - Normal Header */
.header .nav-link:hover {
  color: #efcc00 !important;
  /* Amarelo no hover */
}

.header .header-phone:hover {
  color: #efcc00 !important;
}

.header .header-phone:hover svg {
  stroke: #efcc00 !important;
}

/* Hover States - Scrolled Header */
.header.scrolled .nav-link:hover {
  color: #0066cc !important;
  /* Azul no hover quando scrolled */
}

.header.scrolled .header-phone:hover {
  color: #0066cc !important;
}

.header.scrolled .header-phone:hover svg {
  stroke: #0066cc !important;
}

/* Transições suaves para as mudanças de cor */
.header .nav-link,
.header .header-phone,
.header .header-phone span,
.header .header-phone svg,
.header .mobile-menu-btn,
.header .mobile-menu-btn svg {
  transition: color 0.3s ease, stroke 0.3s ease !important;
}

/* Botão "Solicitar Orçamento" - manter sempre o mesmo estilo */
.header .btn-primary {
  background-color: #efcc00 !important;
  color: #1e293b !important;
  border: none !important;
}

.header .btn-primary:hover {
  background-color: #f59e0b !important;
  transform: translateY(-2px) !important;
}

.floating-stats-content {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}


/* Fix para o industry selector - INATIVO cinza, ATIVO azul */
.industry-option {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  padding: 1rem !important;
  border-radius: 0.75rem !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  background: #F9FAFB !important;
  /* Fundo INATIVO é cinza claro */
  color: var(--primary-blue) !important;
  /* Texto INATIVO é azul */
  border: 1px solid transparent !important;
}

.industry-option:hover {
  background: #E5E7EB !important;
  /* Hover cinza um pouco mais escuro */
}

/* Estado ATIVO - fundo azul como na imagem */
.industry-option.active {
  background: var(--primary-blue) !important;
  /* Fundo azul quando ativo */
  color: white !important;
  /* Texto branco quando ativo */
  box-shadow: 0 25px 50px rgba(0, 55, 112, 0.15) !important;
}

/* Ícone do industry option */
.industry-icon {
  width: 3rem !important;
  height: 3rem !important;
  border-radius: 0.5rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  transition: all 0.3s ease !important;
  background: white !important;
  color: #6B7280 !important;
}

.industry-option:hover .industry-icon {
  background: var(--accent-yellow) !important;
  color: var(--primary-blue) !important;
}

.industry-option.active .industry-icon {
  background: var(--accent-yellow) !important;
  /* Amarelo quando ativo */
  color: var(--primary-blue) !important;
  /* Azul quando ativo */
}

/* Texto do industry option */
.industry-info h3 {
  font-weight: 600 !important;
  font-size: 1.125rem !important;
  margin-bottom: 0.25rem !important;
}

.industry-info p {
  font-size: 0.875rem !important;
  opacity: 0.7 !important;
}

/* Cores específicas para estado inativo */
.industry-option .industry-info h3 {
  color: var(--primary-blue) !important;
  /* Azul quando inativo */
}

.industry-option .industry-info p {
  color: var(--primary-blue) !important;
  /* Azul quando inativo */
}

/* Cores específicas para estado ativo */
.industry-option.active .industry-info h3,
.industry-option.active .industry-info p {
  color: white !important;
  /* Branco quando ativo */
}

/* Arrow do industry option */
.industry-arrow {
  transition: transform 0.3s ease !important;
  color: var(--primary-blue) !important;
  /* Azul quando inativo */
}

.industry-option.active .industry-arrow {
  transform: rotate(90deg) !important;
  color: white !important;
  /* Branco quando ativo */
}

.industry-option:hover .industry-arrow {
  transform: translateX(4px) !important;
}

/* Fix para o industry selector - garantindo o fundo azul quando ativo */
.industry-option {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  padding: 1rem !important;
  border-radius: 0.75rem !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  background: #F9FAFB !important;
  /* Fundo padrão cinza claro */
  color: #374151 !important;
  /* Texto padrão escuro */
  border: 1px solid transparent !important;
}

.industry-option:hover {
  background: #E5E7EB !important;
  /* Fundo hover cinza */
  transform: translateX(4px) !important;
}

/* Estado ATIVO - fundo azul obrigatório */
.industry-option.active {
  background: var(--primary-blue) !important;
  /* Fundo azul */
  color: white !important;
  /* Texto branco */
  box-shadow: 0 25px 50px rgba(0, 55, 112, 0.15) !important;
  border: 1px solid var(--primary-blue) !important;
}

/* Ícone do industry option */
.industry-icon {
  width: 3rem !important;
  height: 3rem !important;
  border-radius: 0.5rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  transition: all 0.3s ease !important;
  background: white !important;
  /* Fundo branco padrão */
  color: #6B7280 !important;
  /* Cor padrão */
}

.industry-option:hover .industry-icon {
  background: var(--accent-yellow) !important;
  color: var(--primary-blue) !important;
}

.industry-option.active .industry-icon {
  background: var(--accent-yellow) !important;
  /* Amarelo quando ativo */
  color: var(--primary-blue) !important;
  /* Azul quando ativo */
}

/* Texto do industry option */
.industry-info h3 {
  font-weight: 600 !important;
  font-size: 1.125rem !important;
  margin-bottom: 0.25rem !important;
  color: inherit !important;
  /* Herda a cor do pai */
}

.industry-info p {
  font-size: 0.875rem !important;
  opacity: 0.7 !important;
  color: inherit !important;
  /* Herda a cor do pai */
}

.industry-option.active .industry-info h3,
.industry-option.active .industry-info p {
  color: white !important;
  /* Branco quando ativo */
}

/* Arrow do industry option */
.industry-arrow {
  transition: transform 0.3s ease !important;
  color: inherit !important;
}

.industry-option.active .industry-arrow {
  transform: rotate(90deg) !important;
  color: white !important;
}

.industry-option:hover .industry-arrow {
  transform: translateX(4px) !important;
}

.industry-option.active:hover .industry-arrow {
  transform: rotate(90deg) translateX(0px) !important;
  /* Mantém rotação quando ativo */
}

/* Garantir que as cores das classes específicas funcionem */
.industry-icon.agriculture,
.industry-icon.mining,
.industry-icon.oil,
.industry-icon.automotive {
  background: white !important;
  color: #6B7280 !important;
}

.industry-option:hover .industry-icon.agriculture,
.industry-option:hover .industry-icon.mining,
.industry-option:hover .industry-icon.oil,
.industry-option:hover .industry-icon.automotive,
.industry-option.active .industry-icon.agriculture,
.industry-option.active .industry-icon.mining,
.industry-option.active .industry-icon.oil,
.industry-option.active .industry-icon.automotive {
  background: var(--accent-yellow) !important;
  color: var(--primary-blue) !important;
}

/* CSS adicional para os novos setores industriais */

/* Gradientes para os novos setores */
.wind-gradient {
  background: linear-gradient(to right, #10B981, #059669);
}

.food-gradient {
  background: linear-gradient(to right, #F97316, #EA580C);
}

.metalworking-gradient {
  background: linear-gradient(to right, #6B7280, #4B5563);
}

.energy-gradient {
  background: linear-gradient(to right, #EAB308, #CA8A04);
}

.steel-gradient {
  background: linear-gradient(to right, #64748B, #475569);
}

/* Badge icons para os novos setores */
.badge-icon.wind {
  background: linear-gradient(to right, #10B981, #059669);
}

.badge-icon.food {
  background: linear-gradient(to right, #F97316, #EA580C);
}

.badge-icon.metalworking {
  background: linear-gradient(to right, #6B7280, #4B5563);
}

.badge-icon.energy {
  background: linear-gradient(to right, #EAB308, #CA8A04);
}

.badge-icon.steel {
  background: linear-gradient(to right, #64748B, #475569);
}

/* Cores para os ícones dos industry options */
.industry-icon.wind,
.industry-icon.food,
.industry-icon.metalworking,
.industry-icon.energy,
.industry-icon.steel {
  background: white !important;
  color: #6B7280 !important;
}

.industry-option:hover .industry-icon.wind,
.industry-option:hover .industry-icon.food,
.industry-option:hover .industry-icon.metalworking,
.industry-option:hover .industry-icon.energy,
.industry-option:hover .industry-icon.steel,
.industry-option.active .industry-icon.wind,
.industry-option.active .industry-icon.food,
.industry-option.active .industry-icon.metalworking,
.industry-option.active .industry-icon.energy,
.industry-option.active .industry-icon.steel {
  background: var(--accent-yellow) !important;
  color: var(--primary-blue) !important;
}



/* */

@media (max-width: 640px) {
  .stat-number {
    font-size: 1rem;
  }

  .stat-item {
    gap: 0.5rem;
  }

  .floating-stats-content {
    padding: 0.5rem 2rem !important;
  }

  .stat-label {
    line-height: 1rem;
    font-size: 0.7rem;
  }

  #produtos.products-section {
    padding: 10rem 0;
  }

  .flickity-page-dots {
    bottom: -50px !important;
  }
}

/* Estilos de validação */
.error-message {
  color: #EF4444;
  font-size: 0.875rem;
  /* margin-top: 0.25rem; */
}

.input-error {
  border-color: #EF4444 !important;
}