/*VARIABLES*/
:root {
  /* Colors */
  --primary-color: #44b2ef;
  --secondary-color: #111111;
  --accent-color: #44b2ef;
  --background-color: #F5F5F5;
  --white-color: #FFFFFF;
  --text-color: #333333;
  --text-light: #666666;
  --border-color: #E0E0E0;
  --light-gray: #F8F9FA;
  --dark-color: #1A1A1A;
  --warning-color: #FF6B35;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, #44b2ef 100%);
  
  /* Typography */
  --font-family: 'Poppins', sans-serif;
  --h1-font-size: 3rem;
  --h2-font-size: 2.5rem;
  --h3-font-size: 1.5rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  
  /* Spacing */
  --header-height: 5.5rem; /* Altura ligeiramente reduzida do cabeçalho desktop */
  --section-padding: 3rem 0;
  --container-margin: 0 1rem;
  --border-radius: 0.75rem;
  --border-radius-lg: 1.5rem;
  
  /* Shadows */
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 40px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 30px rgba(68, 178, 239, 0.3);
  
  /* Optimized Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: var(--body-color);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--header-height); /* Garante que o conteúdo comece abaixo do cabeçalho fixo */
}

/*REUSABLE CLASSES*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.main-with-fixed-header {
  padding-top: var(--header-height);
}

.section {
  padding: var(--section-padding);
}

.section__title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
  position: relative;
}

/*Títulos*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}

h1 {
  font-size: var(--h1-font-size);
  margin-bottom: 2rem;
  color: var(--primary-color);
}

h2 {
  font-size: var(--h2-font-size);
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

h3 {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
  color: var(--text-color);
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, 
    var(--accent-color) 0%, 
    #44b2ef 50%,
#44b2ef 100%);
  box-shadow: 0 8px 25px rgba(68, 178, 239, 0.3);
  border-radius: 2px;
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  transition: var(--transition-fast);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-medium);
}

.btn:hover::before {
  left: 100%;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.btn-primary {
  background-color: var(--white-color);
  color: var(--dark-color);
  border: 2px solid var(--dark-color);
  position: relative;
  overflow: hidden;
  animation: pulse 2s infinite;
  font-weight: var(--font-weight-bold);
  transition: all 0.3s ease;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--dark-color);
  color: var(--white-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(68, 178, 239, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-outline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color), #ff0096);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-outline:hover {
  color: var(--white-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(68, 178, 239, 0.4);
  border-color: transparent;
}

.btn-outline:hover::after {
  opacity: 1;
}

/* Animação de pulsação para o botão de orçamento */
@keyframes ctaPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Estilo específico para o botão de orçamento na seção HERO */
.home__cta {
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  z-index: 10;
}

.home__cta .btn--primary {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 30px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: ctaPulse 2s infinite;
  transition: all 0.3s ease;
}

.home__cta .btn--primary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  animation: none;
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(68, 178, 239, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(0);
  opacity: 1;
}

.header.scrolled {
  background: rgba(68, 178, 239, 0.98);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header.hidden {
  transform: translateY(-100%);
  box-shadow: none;
}

.navbar {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  font-size: 1.25rem;
}

.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: invert(1);
  max-width: 250px;
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 1001;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0 2rem;
  padding: 0;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--white-color);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: var(--transition-fast);
  position: relative;
  padding: 0.8rem 1.2rem; /* Ajustado para aumentar um pouco */
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem; /* Ajustado para aumentar um pouco */
  background-color: transparent;
  font-size: inherit; /* Volta ao tamanho padrão herdado */
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active-link::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white-color);
  min-width: 200px;
  box-shadow: var(--shadow-medium);
  border-radius: var(--border-radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-fast);
  z-index: 1002;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition-fast);
  font-weight: var(--font-weight-normal);
}

.dropdown-menu a:hover {
  background: var(--light-gray);
  color: var(--primary-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--white-color);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.header-scrolled {
  background: rgba(68, 178, 239, 0.98) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding: 0;
  min-height: 160px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  font-size: 1.25rem;
  position: absolute;
  left: 2rem;
}

.nav__logo i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.nav__logo-img {
  height: 160px; /* Altura original para desktop */
  width: auto; /* Para manter a proporção */
  object-fit: contain;
  filter: invert(1);
  max-width: 450px; /* Largura máxima original para desktop */
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 1001;
  transition: transform 0.3s ease;
  margin-top: -15px;
  margin-bottom: -15px;
}

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

.nav__list {
  display: flex; /* Garante que os itens fiquem em linha */
  gap: 2rem; /* Espaçamento entre os itens */
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: -5rem; /* Move a lista bem mais para a esquerda */
}

.nav__link {
  color: var(--white-color);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  font-size: 1.2rem;
  transition: var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition-fast);
}

.nav__link:hover::after,
.nav__link.active-link::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: absolute;
  right: 2rem;
}

.nav__phone,
.nav__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  font-size: 1.6rem;
  color: var(--white-color);
  transition: var(--transition-fast);
  text-decoration: none;
}

.nav__phone {
  background: var(--gradient-primary);
}

.nav__whatsapp {
  background: #25D366;
}

.nav__phone:hover,
.nav__whatsapp:hover {
  transform: scale(1.1);
}

.nav__cta {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 1.4rem 2.8rem;
  border-radius: var(--border-radius-large);
  font-weight: var(--font-weight-bold);
  transition: var(--transition-fast);
  font-size: 1.25rem;
  text-decoration: none;
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.nav__toggle,
.nav__close {
  display: none;
  color: var(--white-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== NAVIGATION DROPDOWN ===== */
.nav__dropdown {
  position: relative;
}

.nav__dropdown .nav__link i {
  margin-left: 0.5rem;
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.nav__dropdown:hover .nav__link i {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10, 42, 84, 0.98);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
  min-width: 220px;
  padding: 1rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-medium);
  z-index: 1001;
  border: 1px solid rgba(68, 178, 239, 0.2);
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.active .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown.active .nav__link i {
  transform: rotate(180deg);
}

.nav__dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--white-color);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: var(--transition-fast);
  border-left: 3px solid transparent;
}

.nav__dropdown-link:hover {
  background: rgba(68, 178, 239, 0.1);
  border-left-color: var(--accent-color);
  color: var(--accent-color);
}

/* ===== HOME SECTION ===== */
.home {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a2a54 0%, #1a1a2e 25%, #44b2ef 50%, #44b2ef 75%, #0a2a54 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-height);
}

.home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(68, 178, 239, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 150, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 255, 127, 0.05) 0%, transparent 50%);
  animation: backgroundPulse 8s ease-in-out infinite;
}

.home::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="futuristicGrid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(68,178,239,0.1)" stroke-width="0.5"/><circle cx="0" cy="0" r="1" fill="rgba(68,178,239,0.3)"/><circle cx="50" cy="50" r="1" fill="rgba(255,0,150,0.3)"/></pattern></defs><rect width="100" height="100" fill="url(%23futuristicGrid)"/></svg>');
  opacity: 0.4;
  animation: gridMove 20s linear infinite;
}

@keyframes backgroundPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes gridMove {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(50px, 50px, 0); }
}

.home__container {
  position: relative;
  z-index: 2;
}

.home__container::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, rgba(68, 178, 239, 0.1), rgba(255, 0, 150, 0.1));
  border-radius: 50%;
  will-change: transform, opacity;
  animation: floatingParticle1 8s ease-in-out infinite;
  z-index: -1;
}

.home__container::after {
  content: '';
  position: absolute;
  top: 60%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 255, 127, 0.15), rgba(68, 178, 239, 0.1));
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  will-change: transform, opacity;
  animation: floatingParticle2 6s ease-in-out infinite reverse;
  z-index: -1;
}

@keyframes floatingParticle1 {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translate3d(0, -30px, 0) rotate(180deg);
    opacity: 0.7;
  }
}

@keyframes floatingParticle2 {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 0.4;
  }
  50% {
    transform: translate3d(20px, 0, 0) rotate(120deg);
    opacity: 0.8;
  }
}

.home__slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  min-height: 80vh;
}

.home__slide.active {
  display: grid;
  animation: futuristicSlideIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes futuristicSlideIn {
  0% {
    opacity: 0;
    transform: translateX(100px) translateY(50px) scale(0.8);
    filter: blur(10px);
  }
  50% {
    opacity: 0.7;
    transform: translateX(20px) translateY(10px) scale(0.95);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
    filter: blur(0);
  }
}

.home__content {
  color: var(--white-color);
  position: relative;
  z-index: 3;
}

.home__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-extrabold);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white-color);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.home__description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  padding: 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(68, 178, 239, 0.2);
  position: relative;
  overflow: hidden;
}

.home__description::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(68, 178, 239, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes titleGlow {
  0% { text-shadow: 0 0 30px rgba(68, 178, 239, 0.3); }
  100% { text-shadow: 0 0 50px rgba(68, 178, 239, 0.6), 0 0 70px rgba(255, 0, 150, 0.3); }
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.home__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.home__buttons .btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home__buttons .btn:hover {
  animation: buttonPulse 0.6s ease-in-out;
}

@keyframes buttonPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1.02); }
}

.home__image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

.home__car-animation,
.home__tech-animation,
.home__team-animation {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
  position: relative;
  perspective: 2000px;
}

/* Container 3D específico para o carro */
.home__car-animation {
  perspective: 1500px;
  perspective-origin: center center;
  transform-style: preserve-3d;
  animation: container3DFloat 8s ease-in-out infinite;
  padding: 50px;
  margin: 50px 0;
}

/* Efeito 3D no container da seção home */
.home__slide {
  transform-style: preserve-3d;
  perspective: 2000px;
}

.home__image {
  transform-style: preserve-3d;
  perspective: 1800px;
  perspective-origin: center center;
}

/* Efeito 3D especial para o carro BMW */
.home__car-animation {
  animation: car3DFloat 4s ease-in-out infinite;
  transform-style: preserve-3d;
}

.home__car-animation img {
  width: 700px !important;
  height: 500px !important;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 
    0 50px 120px rgba(68, 178, 239, 0.6),
    0 20px 80px rgba(255, 0, 150, 0.4),
    0 0 100px rgba(68, 178, 239, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    0 0 0 3px rgba(68, 178, 239, 0.2);
  border: 3px solid rgba(68, 178, 239, 0.5);
  position: relative;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
  transform-style: preserve-3d;
  animation: dramatic3DRotate 6s ease-in-out infinite;
  transform: rotateY(0deg) rotateX(0deg) translateZ(0px);
}

.home__car-animation img:hover {
  transform: rotateY(25deg) rotateX(15deg) translateZ(100px) scale(1.1);
  box-shadow: 
    0 80px 200px rgba(68, 178, 239, 0.8),
    0 40px 150px rgba(255, 0, 150, 0.6),
    0 0 150px rgba(68, 178, 239, 0.5),
    inset 0 3px 0 rgba(255, 255, 255, 0.4),
    0 0 0 5px rgba(68, 178, 239, 0.3);
  animation-play-state: paused;
}

/* Efeito de reflexo 3D */
.home__car-animation::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    to bottom,
    rgba(68, 178, 239, 0.1) 0%,
    transparent 100%
  );
  transform: rotateX(180deg) translateZ(-1px);
  opacity: 0.3;
  border-radius: 15px;
  animation: reflectionPulse 4s ease-in-out infinite;
}

/* Partículas 3D ao redor do carro */
.home__car-animation::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: 
    radial-gradient(circle at 20% 30%, rgba(68, 178, 239, 0.3) 2px, transparent 2px),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 150, 0.2) 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, rgba(68, 178, 239, 0.4) 1.5px, transparent 1.5px),
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    radial-gradient(circle at 90% 60%, rgba(68, 178, 239, 0.2) 2px, transparent 2px);
  background-size: 100px 100px, 150px 150px, 120px 120px, 80px 80px, 200px 200px;
  border-radius: 50%;
  opacity: 0.6;
  animation: particles3DOrbit 12s linear infinite;
  z-index: -1;
  transform-style: preserve-3d;
  pointer-events: none;
}

/* Efeito de halo 3D */
.home__car-animation {
  position: relative;
}

.home__car-animation:hover::before {
  animation-duration: 6s;
  opacity: 0.8;
  transform: scale(1.1) rotateZ(180deg);
}

/* Removido o ::before genérico para o carro, mantendo apenas para tech e team */
.home__tech-animation::before,
.home__team-animation::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(45deg, #2a2a2a, #404040, #1a1a1a, #2a2a2a);
  border-radius: 20px;
  opacity: 0.4;
  animation: borderRotate 8s linear infinite;
  z-index: -1;
}

.home__tech-animation img,
.home__team-animation img {
  width: 700px !important;
  height: 500px !important;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 
    0 20px 60px rgba(68, 178, 239, 0.3),
    0 0 40px rgba(255, 0, 150, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(68, 178, 239, 0.3);
  position: relative;
  transition: all 0.3s ease;
}

.home__tech-animation img:hover,
.home__team-animation img:hover {
  transform: scale(1.05);
  box-shadow: 
    0 30px 80px rgba(68, 178, 239, 0.4),
    0 0 60px rgba(255, 0, 150, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(68, 178, 239, 0.6);
}

.home__tech-animation img::after,
.home__team-animation img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(68, 178, 239, 0.1) 0%, transparent 50%, rgba(255, 0, 150, 0.1) 100%);
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home__tech-animation:hover img::after,
.home__team-animation:hover img::after {
  opacity: 1;
}

@keyframes float {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -20px, 0);
  }
}

@keyframes borderRotate {
  0% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  100% {
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

/* Animações 3D para o carro BMW */
@keyframes car3DFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotateY(0deg);
  }
  25% {
    transform: translate3d(0, -15px, 20px) rotateY(2deg);
  }
  50% {
    transform: translate3d(0, -25px, 0) rotateY(0deg);
  }
  75% {
    transform: translate3d(0, -15px, -20px) rotateY(-2deg);
  }
}

@keyframes car3DRotate {
  0%, 100% {
    transform: rotateY(0deg) rotateX(0deg) translateZ(0px);
  }
  25% {
    transform: rotateY(3deg) rotateX(1deg) translateZ(10px);
  }
  50% {
    transform: rotateY(0deg) rotateX(2deg) translateZ(20px);
  }
  75% {
    transform: rotateY(-3deg) rotateX(1deg) translateZ(10px);
  }
}

/* Nova animação 3D dramática */
@keyframes dramatic3DRotate {
  0% {
    transform: rotateY(-12deg) rotateX(-5deg) translateZ(0px) scale(1);
  }
  25% {
    transform: rotateY(8deg) rotateX(8deg) translateZ(60px) scale(1.02);
  }
  50% {
    transform: rotateY(12deg) rotateX(-3deg) translateZ(40px) scale(1.05);
  }
  75% {
    transform: rotateY(-8deg) rotateX(6deg) translateZ(80px) scale(1.02);
  }
  100% {
    transform: rotateY(-12deg) rotateX(-5deg) translateZ(0px) scale(1);
  }
}

@keyframes container3DFloat {
  0%, 100% {
    transform: rotateY(0deg) rotateX(0deg) translateZ(0px);
  }
  33% {
    transform: rotateY(2deg) rotateX(1deg) translateZ(20px);
  }
  66% {
    transform: rotateY(-2deg) rotateX(-1deg) translateZ(10px);
  }
}

@keyframes reflectionPulse {
  0%, 100% {
    opacity: 0.2;
    transform: rotateX(180deg) translateZ(-1px) scaleY(0.8);
  }
  50% {
    opacity: 0.4;
    transform: rotateX(180deg) translateZ(-1px) scaleY(1);
  }
}

@keyframes particles3DOrbit {
  0% {
    transform: rotateZ(0deg) rotateY(0deg) rotateX(0deg);
  }
  25% {
    transform: rotateZ(90deg) rotateY(5deg) rotateX(2deg);
  }
  50% {
    transform: rotateZ(180deg) rotateY(0deg) rotateX(5deg);
  }
  75% {
    transform: rotateZ(270deg) rotateY(-5deg) rotateX(2deg);
  }
  100% {
    transform: rotateZ(360deg) rotateY(0deg) rotateX(0deg);
  }
}

.home__controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  position: relative;
  z-index: 3;
}

.home__control {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  will-change: transform, box-shadow, border-color;
  transition: all var(--transition-medium);
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.home__control::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease;
}

.home__control:hover {
  border-color: var(--accent-color);
  box-shadow: 0 0 20px rgba(68, 178, 239, 0.5);
  transform: scale3d(1.2, 1.2, 1);
}

.home__control.active {
  background: rgba(68, 178, 239, 0.2);
  border-color: var(--accent-color);
  box-shadow: 0 0 25px rgba(68, 178, 239, 0.6);
}

.home__control.active::before {
  transform: translate(-50%, -50%) scale(1);
}

/*SERVICES PREVIEW*/
.services-preview {
  background: var(--white-color);
}

.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/*SERVICE CARDS ANIMATIONS*/
@keyframes cardFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -5px, 0);
  }
}

@keyframes cardGlow {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 1px 8px rgba(0, 0, 0, 0.06);
  }
  50% {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12), 0 5px 15px rgba(0, 0, 0, 0.08);
  }
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* ===== SERVICE CARDS FLUTUANTES ===== */
.service-card {
  background: var(--white-color);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 1px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  animation: cardFloat 6s ease-in-out infinite;
  animation-delay: calc(var(--card-index, 0) * 0.2s);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    var(--primary-color) 0%, 
    rgba(68, 178, 239, 0.8) 50%, 
    var(--accent-color) 100%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 1;
}

.service-card .shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(68, 178, 239, 0.2),
    rgba(255, 255, 255, 0.3),
    rgba(68, 178, 239, 0.2), 
    transparent);
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(var(--primary-color-rgb), 0.2);
}

.service-card:hover::before {
  left: 0;
  opacity: 0.03;
}

.service-card:hover::after {
  opacity: 1;
  top: -25%;
  right: -25%;
}

.service-card__icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 2rem;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--white-color);
  position: relative;
  z-index: 3;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  animation: iconPulse 4s ease-in-out infinite;
  animation-delay: calc(var(--card-index, 0) * 0.3s);
}

.service-card:hover .service-card__icon {
  transform: scale(1.1) rotateY(10deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-card__title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
  color: var(--primary-color);
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

.service-card:hover .service-card__title {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.service-card__description {
  color: var(--text-light);
  margin-bottom: 2rem;
  position: relative;
  z-index: 3;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.service-card:hover .service-card__description {
  color: var(--text-color);
}

.service-card__link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  border: 2px solid var(--accent-color);
  display: inline-block;
  background: transparent;
}

.service-card__link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--accent-color);
  border-radius: 25px;
  transition: width 0.3s ease;
  z-index: -1;
}

.service-card__link:hover {
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-card__link:hover::before {
  width: 100%;
}

/* ===== BEFORE AFTER SECTION ===== */
.before-after {
  background: linear-gradient(135deg, #0a2a54 0%, #1a1a2e 25%, #44b2ef 50%, #44b2ef 75%, #0a2a54 100%);
  color: var(--white-color);
  position: relative;
  overflow: hidden;
}

.before-after::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(68, 178, 239, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 150, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 255, 127, 0.05) 0%, transparent 50%);
  animation: backgroundPulse 8s ease-in-out infinite;
  z-index: 1;
}

.before-after::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="futuristicGrid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(68,178,239,0.1)" stroke-width="0.5"/><circle cx="0" cy="0" r="1" fill="rgba(68,178,239,0.3)"/><circle cx="50" cy="50" r="1" fill="rgba(255,0,150,0.3)"/></pattern></defs><rect width="100" height="100" fill="url(%23futuristicGrid)"/></svg>');
  opacity: 0.4;
  animation: gridMove 20s linear infinite;
  z-index: 1;
}

.before-after .section__title {
  color: var(--white-color);
  position: relative;
  z-index: 2;
}

.before-after__gallery {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.before-after__row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: center;
}

.before-after__item {
  flex: 1;
  max-width: 280px;
}

.before-after__comparison {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  transition: transform 0.3s ease;
}

.before-after__comparison:hover {
  transform: translateY(-5px);
}

.before-after__comparison img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.before-img {
  position: relative;
  z-index: 1;
}

.after-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
  transition: clip-path 0.5s ease;
}

.before-after__comparison:hover .after-img {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.before-after__comparison::before {
  content: 'ANTES';
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 193, 7, 0.9);
  color: #1a1a1a;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 3;
  text-transform: uppercase;
}

.before-after__comparison::after {
  content: 'DEPOIS';
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(40, 167, 69, 0.9);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 3;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.before-after__comparison:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .before-after__row {
    flex-direction: column;
    align-items: center;
  }
  
  .before-after__item {
    max-width: 100%;
    width: 100%;
  }
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
  background: var(--background-color);
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white-color);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
}

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

.feature-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--white-color);
}

.feature-card__title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.feature-card__description {
  color: var(--text-light);
}

.why-choose__cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.why-choose__cta .btn {
  min-width: 220px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: var(--font-weight-semibold);
  border-radius: var(--border-radius-lg);
  transition: var(--transition-medium);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.why-choose__cta .btn--large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.why-choose__cta .btn--primary {
  background: var(--gradient-primary);
  color: var(--white-color);
  border: none;
  box-shadow: var(--shadow-medium);
}

.why-choose__cta .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.why-choose__cta .btn--outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.why-choose__cta .btn--outline:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(68, 178, 239, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(10, 42, 84, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 2;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials__header .section__subtitle {
  color: var(--text-light);
  font-size: 1.125rem;
  margin-top: 1rem;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.1),
    0 1px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: testimonialFadeIn 0.8s ease-out forwards;
  animation-delay: calc(var(--card-index) * 0.1s);
  opacity: 0;
  transform: translateY(30px);
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 8px 16px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 20px 20px 0 0;
}

.testimonial-card__quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--accent-color);
  font-size: 2rem;
  opacity: 0.3;
}

.testimonial-card__content {
  margin-bottom: 1.5rem;
}

.testimonial-card__content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin: 0;
  font-style: italic;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.testimonial-card__avatar:hover {
  transform: scale(1.1);
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__author {
  flex: 1;
}

.testimonial-card__author h4 {
  font-weight: var(--font-weight-semibold);
  color: var(--primary-color);
  margin: 0 0 0.25rem 0;
  font-size: 1.125rem;
}

.testimonial-card__author span {
  color: var(--text-light);
  font-size: var(--small-font-size);
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-card__rating {
  display: flex;
  gap: 0.25rem;
  color: #FFD700;
  font-size: 0.875rem;
}

.testimonial-card__service {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonials__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Animations */
@keyframes testimonialFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-card__content p {
    font-size: 0.95rem;
  }
  
  .testimonials__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .testimonials__header .section__subtitle {
    font-size: 1rem;
  }
  
  .testimonial-card {
    padding: 1.25rem;
  }
  
  .testimonial-card__footer {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .testimonials__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
}

/* ===== BLOG PREVIEW ===== */
.blog-preview {
  background: var(--background-color);
}

.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
}

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

.blog-card__image {
  position: relative;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition-medium);
}

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

.blog-card__content {
  padding: 1.5rem;
}

.blog-card__title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-card__excerpt {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.blog-card__link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  transition: var(--transition-fast);
}

.blog-card__link:hover {
  color: var(--primary-color);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 110px;
  height: 110px;
  background: #25D366;
  color: var(--white-color);
  font-size: 4.5rem;
  text-decoration: none;
  box-shadow: var(--shadow-medium);
  border-radius: 50%;
  z-index: 999;
  transition: var(--transition-fast);
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float:hover {
  background: #1DA851;
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float i {
    font-size: 4.5rem;
}

/* ===== SERVICE PAGE STYLES ===== */
.hero-service {
  background: linear-gradient(135deg, #0a2a54 0%, #1a1a2e 25%, #44b2ef 50%, #44b2ef 75%, #0a2a54 100%);
  padding: 8rem 0 4rem;
  padding-top: calc(var(--header-height) + 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(68, 178, 239, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 150, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 255, 127, 0.05) 0%, transparent 50%);
  animation: backgroundPulse 8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--white-color);
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--white-color);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--white-color) !important;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--white-color) !important;
  text-align: center;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.service-hero {
  background: linear-gradient(135deg, #0a2a54 0%, #1a1a2e 25%, #44b2ef 50%, #44b2ef 75%, #0a2a54 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Ajuste para páginas com header fixo */
.main-with-fixed-header .service-hero,
.main-with-fixed-header .hero-service {
  padding-top: 0;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(68, 178, 239, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 150, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 255, 127, 0.05) 0%, transparent 50%);
  animation: backgroundPulse 8s ease-in-out infinite;
}

.service-hero__content {
  position: relative;
  z-index: 2;
}

.service-hero__title {
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--white-color) !important;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

.service-hero__subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--white-color) !important;
  text-align: center;
  line-height: 1.6;
}

.service-hero__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.service-hero__actions .btn {
  min-width: 200px;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  border-radius: var(--border-radius);
  transition: var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-medium);
}

.service-hero__actions .btn--primary {
  background: #25D366;
  color: var(--white-color);
  border: 2px solid #25D366;
}

.service-hero__actions .btn--primary:hover {
  background: #1DA851;
  border-color: #1DA851;
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.service-hero__actions .btn--outline {
  background: transparent;
  color: var(--white-color);
  border: 2px solid var(--white-color);
}

.service-hero__actions .btn--outline:hover {
  background: var(--white-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.service-intro {
  padding: 4rem 0;
  background: var(--white-color);
}

.service-intro__content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.service-intro__content h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
}

.service-intro__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto 2rem auto;
  text-align: center;
}

.service-process {
  padding: 4rem 0;
  background: var(--light-gray);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step-number {
  background: var(--gradient-accent);
  color: var(--white-color);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-medium);
}

.process-step {
  background: var(--white-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  border-left: 4px solid var(--accent-color);
  transition: var(--transition-fast);
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.process-step h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
  text-align: center;
}

.process-step p {
  color: var(--text-color);
  line-height: 1.6;
  flex-grow: 1;
  text-align: center;
}

.process-step__header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.process-step__number {
  background: var(--gradient-accent);
  color: var(--white-color);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: 1.25rem;
  margin-right: 1rem;
}

.process-step__title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-color);
}

.process-step__list {
  list-style: none;
  padding: 0;
}

.process-step__list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
  color: var(--text-color);
}

.process-step__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.process-substeps {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}

.process-substep {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 3px solid var(--accent-color);
}

.process-substep h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: var(--font-weight-semibold);
}

.process-substep p {
  color: var(--text-color);
  margin: 0;
  line-height: 1.6;
}

.service-benefits {
  padding: 4rem 0;
  background: var(--white-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--white-color);
  padding: 2rem;
  border-radius: var(--border-radius-large);
  text-align: center;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-color);
  transition: var(--transition-medium);
}

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

.benefit-card__icon {
  background: var(--gradient-accent);
  color: var(--white-color);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.benefit-card__title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.benefit-card__text {
  color: var(--text-color);
  line-height: 1.6;
}

.service-contact {
  padding: 4rem 0;
  background: var(--light-gray);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.contact-item i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.contact-item h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
}

.contact-item p {
  color: var(--text-color);
  margin: 0;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: var(--transition-fast);
  margin-top: 0.5rem;
}

.contact-link--whatsapp {
  background: #25D366;
  color: var(--white-color);
}

.contact-link--whatsapp:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.contact-link--instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white-color);
}

.contact-link--instagram:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  filter: brightness(1.1);
}

.service-special {
  padding: 4rem 0;
  background: var(--white-color);
}

.special-offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.special-offer {
  text-align: center;
  padding: 2rem;
  background: var(--light-gray);
  border-radius: var(--border-radius-large);
  border: 2px solid var(--accent-color);
}

.special-offer i {
  color: var(--accent-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.special-offer h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: var(--font-weight-semibold);
}

.special-offer p {
  color: var(--text-color);
  margin: 0;
}

.service-cta {
  padding: 4rem 0;
  background: var(--gradient-primary);
  color: var(--white-color);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: var(--font-weight-bold);
}

.cta-text {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.service-notes {
  padding: 3rem 0;
  background: var(--light-gray);
}

.notes-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  border-left: 4px solid var(--warning-color);
}

.notes-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: var(--font-weight-semibold);
}

.notes-content p {
  line-height: 1.6;
  color: var(--text-color);
}

/* Responsive Design for Service Pages */
@media screen and (max-width: 768px) {
  .hero-service,
  .service-hero {
    padding: 5rem 0 3rem;
    padding-top: calc(var(--header-height) + 6rem) !important;
  }
  
  /* Sobrescrever a regra que zera o padding-top no mobile */
  .main-with-fixed-header .service-hero,
  .main-with-fixed-header .hero-service {
    padding-top: calc(var(--header-height) + 6rem) !important;
  }

  .service-hero__title,
  .hero-text h1,
  .hero-title {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 1.25rem;
  }

  .service-hero__subtitle,
  .hero-text p,
  .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .service-hero__actions,
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0 1rem;
  }

  .service-hero__actions .btn,
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    min-width: auto;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  /* Seção Home Mobile */
  .home {
    padding-top: calc(var(--header-height) + 2rem);
  }

  .home__container {
    padding: 0 1rem;
  }

  .home__slide {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .home__content {
    order: 2;
    padding: 0 1rem;
  }

  .home__image {
    order: 1;
    margin-bottom: 2rem;
  }

  .home__title {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .home__description {
    font-size: 1rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .home__buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .home__buttons .btn {
    width: 100%;
    max-width: 280px;
    padding: 1rem 1.5rem;
  }

  /* Imagens da seção home mobile */
  .home__car-animation,
  .home__tech-animation,
  .home__team-animation {
    padding: 20px;
    margin: 20px 0;
  }

  .home__car-animation img,
  .home__tech-animation img,
  .home__team-animation img {
    width: 100% !important;
    max-width: 400px !important;
    height: auto !important;
    min-height: 250px;
    object-fit: cover;
    border-radius: 15px;
  }

  /* Navegação mobile */
  .nav__logo-img {
    height: 60px;
    max-width: 180px;
  }

  .nav__actions {
    gap: 0.75rem;
  }

  .nav__cta {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .nav__phone,
  .nav__whatsapp {
    width: 2rem;
    height: 2rem;
    font-size: 0.9rem;
  }
  
  .process-grid,
  .services-preview__grid,
  .benefits-grid,
  .testimonials-grid,
  .blog-preview__grid,
  .tips-grid,
  .contact-info,
  .structure-area__grid,
  .structure-certifications__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card,
  .feature-card,
  .testimonial-card,
  .blog-card,
  .tip-card {
    margin-bottom: 1rem;
  }

  .before-after__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .before-after__image {
    max-width: 100%;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--primary-color);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem 0;
    transition: var(--transition-fast);
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: 1rem 0;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
  }
  
  .dropdown-menu a {
    color: var(--white-color);
  }
  
  .process-step {
    padding: 1.5rem;
  }
  
  .process-step__header {
    flex-direction: column;
    text-align: center;
  }
  
  .process-step__number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  

}
  
  .special-offers {
    grid-template-columns: 1fr;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
  padding: 4rem 0;
  background: var(--light-gray);
}

.why-choose-us h2 {
  text-align: center;
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  background: var(--white-color);
  padding: 2rem;
  border-radius: var(--border-radius-large);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
  border: 1px solid var(--border-color);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white-color);
  font-size: 1.5rem;
}

.benefit-item h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
  text-align: center;
}

.benefit-item p {
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 4rem 0;
  background: var(--gradient-primary);
  color: var(--white-color);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--white-color);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* ===== TIPS SECTION ===== */
.tips-section {
  padding: 4rem 0;
  background: var(--white-color);
}

.tips-section h2 {
  text-align: center;
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.tip-item {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: var(--border-radius-large);
  text-align: center;
  transition: var(--transition-medium);
  border: 1px solid var(--border-color);
}

.tip-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-light);
}

.tip-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white-color);
  font-size: 1.25rem;
}

.tip-item h3 {
  color: var(--primary-color);
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
  text-align: center;
}

.tip-item p {
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* ===== CONTACT BUTTONS ===== */
.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white-color);
  border: none;
}

.btn-whatsapp:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white-color);
  border: none;
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  filter: brightness(1.1);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-color);
  color: var(--white-color);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
  color: var(--white-color);
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-section ul li a:hover {
  color: var(--accent-color);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section i {
  color: var(--accent-color);
  width: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: var(--font-weight-bold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: invert(1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Estilos de social-link movidos para seção específica de contato */

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: var(--font-weight-bold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer__logo img {
  filter: invert(1) brightness(1);
  width: 80px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

.footer__logo i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.footer__description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer__social-link:hover {
  transform: translateY(-3px);
}

.footer__title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.75rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer__links a:hover {
  color: var(--accent-color);
}

.footer__contact p,
.footer__hours p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__contact i {
  color: var(--accent-color);
  width: 16px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 768px) {
  :root {
    --h1-font-size: 2rem;
    --h2-font-size: 1.75rem;
    --section-padding: 3rem 0;
    --header-height: 3.5rem; /* Altura ligeiramente reduzida para mobile */
  }

  .nav {
    padding: 0 1rem;
    height: var(--header-height);
  }

  .nav__logo {
    position: static;
    z-index: 1002;
  }

  .nav__logo-img {
    height: 60px; /* Altura ajustada para evitar distorção no mobile */
    max-width: 200px; /* Largura máxima ajustada para melhor proporção no mobile */
    width: auto; /* Manter proporção automática */
    object-fit: contain; /* Garantir que a imagem não seja distorcida */
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(68, 178, 239, 0.95) 0%, rgba(52, 152, 219, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 6rem 1.5rem 2rem;
    transition: var(--transition-medium);
    z-index: 1003;
    overflow-y: auto;
  }

  .nav__menu.show-menu {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
    margin: 0;
    padding: 0;
  }

  .nav__link {
    font-size: 1.3rem !important;
    padding: 1.2rem 1.5rem !important;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 0.3rem;
    margin-left: 0;
    display: block;
  }

  .nav__dropdown-menu {
    position: static;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .nav__dropdown-link {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    border-bottom: none;
    border-radius: 6px;
    margin: 0.2rem 0;
  }

  .nav__close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.75rem;
    z-index: 1002;
  }

  .nav__toggle {
    display: block;
    position: absolute;
    right: 1rem;
    z-index: 1002;
    font-size: 1.5rem;
  }

  .nav__actions {
    position: static;
    gap: 0.75rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav__phone,
  .nav__whatsapp {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.1rem;
    text-decoration: none;
  }

  .nav__cta {
    display: inline-flex;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: var(--border-radius-lg);
    margin-top: 1rem;
  }

  .home__slide {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .home__buttons {
    justify-content: center;
  }

  .home__car-animation {
    width: auto;
    height: auto;
  }

  .home__car-animation iframe {
    max-width: 100%;
    height: auto;
  }

  .home__tech-animation {
    width: auto;
    height: auto;
  }

  .home__tech-animation img {
    max-width: 100%;
    height: auto;
  }

  .home__team-animation {
    width: 150px;
    height: 150px;
    font-size: 3rem;
  }

  .services-preview__grid {
    grid-template-columns: 1fr;
  }

  .why-choose__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .blog-preview__grid {
    grid-template-columns: 1fr;
  }

  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }


}

@media screen and (max-width: 480px) {
  :root {
    --h1-font-size: 1.75rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 0.9rem;
    --section-padding: 2.5rem 0;
    --header-height: 4rem;
  }

  .nav__logo-img {
    height: 50px; /* Altura ainda menor para dispositivos pequenos */
    max-width: 160px; /* Largura máxima reduzida */
  }

  /* Garantir espaçamento adequado para service-hero em dispositivos pequenos */
  .hero-service,
  .service-hero {
    padding-top: calc(var(--header-height) + 5rem) !important;
  }
  
  .main-with-fixed-header .service-hero,
  .main-with-fixed-header .hero-service {
    padding-top: calc(var(--header-height) + 5rem) !important;
  }

  .container {
    padding: 0 0.75rem;
  }

  .nav {
    height: var(--header-height);
  }

  .nav__logo-img {
    height: 90px;
    max-width: 250px;
  }

  .nav__menu {
    padding: 7rem 1.5rem 2rem;
  }

  .nav__link {
    font-size: 1.4rem !important;
    padding: 1.2rem 0 !important;
  }

  .nav__dropdown-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }

  .nav__actions {
    margin-top: 1.5rem;
    gap: 0.5rem;
  }

  .nav__phone,
  .nav__whatsapp {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }

  .nav__cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }

  .home__buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .before-after__image img {
    height: 250px;
  }

  .section__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  h1 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }

  h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .tips-hero__title {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .tips-hero__subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .service-card,
  .feature-card,
  .testimonial-card,
  .blog-card,
  .tip-card {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }

  .process-step {
    padding: 1.5rem 1rem;
  }

  .process-step__number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .before-after__image img {
    height: 200px;
  }

  .structure-area__item,
  .certification-item {
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .structure-area__icon,
  .certification-item__icon {
    margin-bottom: 1rem;
    font-size: 2rem;
  }

  .contact-form-container {
    padding: 2rem 1.5rem;
    margin: 0 0.5rem;
  }

  .contact-form__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 0.875rem;
    font-size: 1rem;
    border-radius: 8px;
  }

  .form-textarea {
    min-height: 100px;
  }

  .form-label {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }

  .btn--full {
    padding: 1rem;
    font-size: 1rem;
    border-radius: 8px;
  }

  .home__image,
  .about-story__image,
  .team-member__image,
  .warranty-image,
  .structure-area__image {
    margin-bottom: 2rem;
  }

  .home__image img,
  .about-story__image img,
  .team-member__image img,
  .warranty-image img,
  .structure-area__image img,
  .blog-card__image img,
  .tip-article__image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
  }

  .testimonial-card__avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }

  .team-card__image {
    height: 200px;
    overflow: hidden;
  }

  .team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .logo-img,
  .nav__logo-img {
    max-width: 320px;
    height: 120px;
  }

  .footer__logo img {
    max-width: 120px;
    height: auto;
  }
}

/* ===== TIPS PAGE STYLES ===== */
.tips-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, #0a2a54 0%, #1a1a2e 25%, #44b2ef 50%, #44b2ef 75%, #0a2a54 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
}

.tips-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(68, 178, 239, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 150, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 127, 0.05) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

.tips-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.tips-hero .container {
    position: relative;
    z-index: 3;
}

.tips-hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white-color) !important;
}

.tips-hero__subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.tips-main {
    padding: 4rem 0;
}

.tips-grid {
    display: grid;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.tip-article {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.tip-article:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.tip-article__image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tip-article__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.tip-article:hover .tip-article__image img {
    transform: scale(1.05);
}

.tip-article__category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tip-article__content {
    padding: 2rem;
}

.tip-article__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tip-article__meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.tip-article__excerpt {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tip-article__full-content {
    color: var(--text-color);
    line-height: 1.6;
}

.tip-article__full-content h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
}

.tip-article__full-content ul,
.tip-article__full-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.tip-article__full-content li {
    margin-bottom: 0.5rem;
}

.tip-article__cta {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
}

.read-more-btn {
    margin-top: 1rem;
}

.pressure-table {
    background: var(--background-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.pressure-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.pressure-row:last-child {
    border-bottom: none;
}

.oil-intervals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.oil-type {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.oil-type h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.oil-price {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

.warning-signs {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.warning-sign {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--background-color);
    padding: 1rem;
    border-radius: 10px;
}

.warning-sign i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.warning-sign h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.consequences {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.consequence-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.consequence-item:last-child {
    border-bottom: none;
}

.consequence-time {
    font-weight: 600;
    color: var(--primary-color);
}

.consequence-effect {
    color: var(--text-color);
}

.quick-tips {
    background: var(--background-color);
    padding: 4rem 0;
}

.quick-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-tip {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.quick-tip:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.quick-tip__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.quick-tip__title {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.quick-tip__text {
    color: var(--text-color);
    line-height: 1.6;
}

.maintenance-calendar {
    padding: 4rem 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.calendar-period {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    border-top: 4px solid var(--accent-color);
}

.calendar-period__title {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.calendar-period__list {
    list-style: none;
    padding: 0;
}

.calendar-period__list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.calendar-period__list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.calendar-period__list li:last-child {
    border-bottom: none;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    background-color: var(--white-color); /* Alterado para branco */
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0); /* Removido o gradiente/animação e definido como transparente */
    z-index: 1;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    animation: none; /* Removido qualquer animação de fundo */
}

.contact-hero__title,
.contact-hero__subtitle {
    position: relative;
    z-index: 2;
    color: black; /* Forçando para preto */
}

.contact-hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero__subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-main {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.contact-form__title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(68, 178, 239, 0.1);
}

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

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-error {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

.form-link {
    color: var(--accent-color);
    text-decoration: none;
}

.form-link:hover {
    text-decoration: underline;
}

.btn--full {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
}

.contact-info {
    padding: 2rem 0;
}

.contact-info__title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-info-grid {
    display: grid;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
}

.contact-info-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.contact-info-item__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item__content h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-info-item__content p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-link.emergency {
    color: #e74c3c;
}

.hours-list {
    display: grid;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.hours-item:last-child {
    border-bottom: none;
}

.social-section {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--background-color) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-light);
}

.social-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
}

.social-section h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.social-link i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

.social-link.facebook:hover { 
    color: #44b2ef;
  border-color: #44b2ef;
  background: rgba(68, 178, 239, 0.05);
}
.social-link.instagram:hover { 
    color: #e4405f; 
    border-color: #e4405f;
    background: rgba(228, 64, 95, 0.05);
}
.social-link.youtube:hover { 
    color: #ff0000; 
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.05);
}
.social-link.linkedin:hover { 
    color: #44b2ef;
  border-color: #44b2ef;
  background: rgba(68, 178, 239, 0.05);
}

@media screen and (max-width: 768px) {
    .social-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .social-link {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .social-section {
        padding: 2rem 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .social-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.map-section {
    padding: 4rem 0;
    background: var(--background-color);
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    max-width: 300px;
}

.map-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-info p {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.quick-actions {
    padding: 4rem 0;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-action {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
}

.quick-action:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.quick-action__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.quick-action__title {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.quick-action__text {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn--danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.btn--danger:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
}

.faq-section {
    padding: 4rem 0;
    background: var(--background-color);
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--background-color);
}

.faq-question h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, #0a2a54 0%, #1a1a2e 25%, #44b2ef 50%, #44b2ef 75%, #0a2a54 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(68, 178, 239, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 150, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 127, 0.05) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about-hero .container {
    position: relative;
    z-index: 3;
}

.about-hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white-color) !important;
}

.about-hero__subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-story {
    padding: 4rem 0;
    background: white;
}

.about-story__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story__content {
    padding-right: 2rem;
}

.about-story__text {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-story__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--background-color);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-medium);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat__label {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.about-story__image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.about-story__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.mission-vision {
    padding: 4rem 0;
    background: var(--background-color);
}

.mission-vision__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mission-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.mission-card__icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

.mission-card__title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mission-card__text {
    color: var(--text-color);
    line-height: 1.6;
}

.team-section {
    padding: 4rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.team-member__image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.team-member__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.team-member:hover .team-member__image img {
    transform: scale(1.1);
}

.team-member__content {
    padding: 2rem;
}

.team-member__name {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member__role {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member__bio {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ===== SERVICES PAGE STYLES ===== */
.services-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
}

.services-hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-hero__subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-main {
    padding: 4rem 0;
}

.services-categories {
    display: grid;
    gap: 4rem;
}

.service-category {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.service-category__header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    text-align: center;
}

.service-category__icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.service-category__title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-category__subtitle {
    opacity: 0.9;
}

.service-category__content {
    padding: 3rem;
}

.service-category__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition-medium);
}

.service-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-item__title {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-item__title i {
    color: var(--accent-color);
}

.service-item__description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-item__features {
    list-style: none;
    padding: 0;
}

.service-item__features li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-item__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-item__price {
    background: var(--background-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
    text-align: center;
}

.service-item__price-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.service-item__price-value {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-detail-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    border: 1px solid var(--border-color);
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-color);
}

.service-detail-card__header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.service-detail-card__icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.service-detail-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.service-detail-card__content {
    padding: 2rem;
}

.service-detail-card__description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.service-detail-card__list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-detail-card__list li {
    color: var(--text-color);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-detail-card__list li i {
    color: var(--accent-color);
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.service-detail-card__price {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    text-align: center;
}

.price-label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price-value {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1024px) {
    .container {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-overlay {
        position: static;
        margin-top: 2rem;
        max-width: none;
    }

    .about-story__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-story__content {
        padding-right: 0;
    }

    .about-story__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-vision__grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .service-category__grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-hero__title,
    .services-hero__title,
    .tips-hero__title,
    .contact-hero__title {
        font-size: 2.5rem;
    }
}

/* About Page - Values Section */
.about-values {
    background: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.value-card__icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.value-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-card__text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About Page - Team Section */
.about-team {
    background: var(--bg-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.team-card__image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.team-card__content {
    padding: 1.5rem;
}

.team-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.team-card__role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card__description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-card__certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.certification {
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* About Page - Certifications Section */
.about-certifications {
    background: var(--bg-secondary);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.certification-item {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: left;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.certification-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.certification-item__icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.certification-item__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
}

.certification-item__text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About Page - Differentials Section */
.about-differentials {
    background: var(--bg-primary);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.differential-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.differential-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.differential-card__icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: white;
}

.differential-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.differential-card__text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services Page - Additional Services Section */
.services-additional {
    background: var(--bg-secondary);
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.additional-service {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.additional-service:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.additional-service__icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
}

.additional-service__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.additional-service__description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.additional-service__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background: var(--bg-secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    display: inline-block;
}

/* Services Page - Warranty Section */
.services-warranty {
    background: var(--bg-secondary);
    padding: 5rem 0;
}

.warranty-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.warranty-text {
    padding-right: 2rem;
}

.warranty-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.warranty-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.warranty-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.warranty-feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.warranty-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

.warranty-feature span {
    font-weight: 600;
    color: var(--text-primary);
}

.warranty-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.warranty-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.warranty-image:hover img {
    transform: scale(1.05);
}

/* Services Page - Packages Section */
.services-packages {
    background: var(--bg-primary);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.package-card--featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.package-card__badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 3rem;
    font-size: 0.875rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 1;
}

.package-card__header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    text-align: center;
}

.package-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.package-card__price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-old {
    font-size: 1rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.price-new {
    font-size: 2rem;
    font-weight: 700;
}

.package-card__content {
    padding: 2rem;
}

.package-card__list {
    list-style: none;
    margin-bottom: 2rem;
}

.package-card__list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.package-card__list i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

@media screen and (max-width: 768px) {
  .about-story__stats {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-card__content {
    padding: 1.5rem;
  }

  .about-hero__title,
  .services-hero__title,
  .tips-hero__title,
  .contact-hero__title {
    font-size: 2rem;
  }

  .about-hero,
  .services-hero,
  .tips-hero,
  .contact-hero {
    padding: 6rem 0 3rem;
  }

  .mission-card,
  .service-detail-card {
    margin-bottom: 1rem;
  }

  .price-value {
    font-size: 1.5rem;
  }

  .values-grid,
   .certifications-grid,
   .differentials-grid,
   .additional-services-grid,
   .packages-grid {
     grid-template-columns: 1fr;
   }

   .warranty-content {
     grid-template-columns: 1fr;
     gap: 2rem;
   }

   .warranty-text {
     padding-right: 0;
     text-align: center;
   }

   .warranty-features {
     grid-template-columns: 1fr;
   }

   .warranty-image img {
     height: 300px;
   }

  .package-card--featured {
    transform: none;
  }

  .value-card,
  .team-card__content,
  .certification-item,
  .differential-card,
  .additional-service,
  .package-card__content {
    padding: 1.5rem;
  }

  .price-new {
    font-size: 1.75rem;
  }
}

/* ===== RESPONSIVIDADE PARA TÍTULOS ===== */
@media screen and (max-width: 768px) {
  /* Títulos responsivos */
  h1, h2, h3, h4, h5, h6 {
    padding: 0 1rem;
  }

  .service-hero__title {
    font-size: 2.5rem !important;
    padding: 0 1rem;
    color: var(--white-color) !important;
  }

  .service-hero__subtitle {
    color: var(--white-color) !important;
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2.5rem !important;
    color: var(--white-color) !important;
    padding: 0 1rem;
  }

  .hero-subtitle {
    color: var(--white-color) !important;
    padding: 0 1rem;
  }

  .service-intro__content h2,
  .why-choose-us h2,
  .cta-content h2,
  .tips-section h2 {
    font-size: 2rem !important;
    padding: 0 1rem;
  }

  .service-intro__content,
  .cta-content {
    padding: 0 1rem;
  }

  .benefits-grid,
  .tips-grid {
    padding: 0 1rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
}

@media screen and (max-width: 480px) {
  .service-hero__title {
    font-size: 2rem !important;
    color: var(--white-color) !important;
  }

  .service-hero__subtitle {
    color: var(--white-color) !important;
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2rem !important;
    color: var(--white-color) !important;
    padding: 0 1rem;
  }

  .hero-subtitle {
    color: var(--white-color) !important;
    padding: 0 1rem;
  }

  .service-intro__content h2,
  .why-choose-us h2,
  .cta-content h2,
  .tips-section h2 {
    font-size: 1.75rem !important;
  }

  .process-step h3,
  .benefit-item h3,
  .tip-item h3 {
    font-size: 1.125rem !important;
  }

  /* Seção Home Mobile 480px */
  .home__title {
    font-size: 1.875rem !important;
    padding: 0 0.5rem;
    line-height: 1.2;
  }

  .home__description {
    font-size: 0.95rem;
    padding: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .home__buttons .btn {
    max-width: 260px;
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }

  /* Imagens ainda menores para 480px */
  .home__car-animation img,
  .home__tech-animation img,
  .home__team-animation img {
    max-width: 320px !important;
    min-height: 200px;
    border-radius: 12px;
  }

  .home__car-animation,
  .home__tech-animation,
  .home__team-animation {
    padding: 15px;
    margin: 15px 0;
  }

  /* Navegação ainda menor */
  .nav__logo-img {
    height: 110px;
    max-width: 300px;
  }

  .nav__cta {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }

  .nav__phone,
  .nav__whatsapp {
    width: 1.8rem;
    height: 1.8rem;
    font-size: 0.8rem;
  }

  .nav__actions {
    gap: 0.5rem;
  }
}

/* Process Section Styles */
.process-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--white-color);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-color);
  line-height: 1.6;
}

/* Benefits Section Styles */
.benefits-section {
  padding: 80px 0;
  background: var(--white-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
  background: var(--light-bg);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
  font-size: 2rem;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.benefit-item h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.benefit-item p {
  color: var(--text-color);
  line-height: 1.6;
}

/* Communication Section Styles */
.communication-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tip-item {
  padding: 2rem;
  background: var(--white-color);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
  font-size: 1.5rem;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.tip-item h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.tip-item p {
  color: var(--text-color);
  line-height: 1.6;
  font-style: italic;
}

/* Responsive Styles for New Sections */
@media screen and (max-width: 768px) {
  .process-steps {
    gap: 1.5rem;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .benefits-grid,
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .benefit-icon,
  .tip-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .process-section,
  .benefits-section,
  .communication-section {
    padding: 60px 0;
  }
  
  .step-item,
  .benefit-item,
  .tip-item {
    padding: 1.25rem;
  }
  
  .step-content h3,
  .benefit-item h3,
  .tip-item h3 {
    font-size: 1.125rem;
  }
}

/* Video Showcase Section */
.video-showcase {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
  position: relative;
  overflow: hidden;
}

.video-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.video-showcase__header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.video-showcase__header .section__title {
  color: #1f2937;
  margin-bottom: 1rem;
}

.video-showcase__header .section__subtitle {
  color: #6b7280;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.video-showcase__content {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.video-showcase__player {
  position: relative;
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.video-embed {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 65%; /* Increased aspect ratio for larger video */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  background: #000;
  border: 2px solid rgba(0, 0, 0, 0.1);
  transform: scale(1.05) translateY(-60px);
  margin: 1rem 0;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-showcase__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  order: 1;
}

.video-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.video-info-card:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.video-info-card__icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.video-info-card__content h3 {
  color: #1f2937;
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.5rem;
}

.video-info-card__content p {
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.video-showcase__cta {
  margin-top: 1rem;
}

.video-showcase__cta .btn {
  width: 100%;
  justify-content: center;
}

.video-showcase__cta .btn--primary {
  background: var(--gradient-primary);
  color: var(--white-color);
  border: none;
  box-shadow: var(--shadow-medium);
  font-weight: var(--font-weight-semibold);
}

.video-showcase__cta .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
  background: linear-gradient(135deg, #44b2ef 0%, #44b2ef 50%, #44b2ef 100%);
}

.video-showcase__cta .btn--large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  gap: 0.75rem;
}

.video-showcase__cta .btn i {
  font-size: 1.2rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .video-showcase__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .video-showcase__header {
    margin-bottom: 2.5rem;
  }
  
  .video-info-card {
    padding: 1.25rem;
  }
  
  .video-info-card__icon {
    width: 45px;
    height: 45px;
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 480px) {
  .video-showcase {
    padding: 60px 0;
  }
  
  .video-showcase__content {
    gap: 2rem;
  }
  
  .video-showcase__header {
    margin-bottom: 2rem;
  }
  
  .video-info-card {
    padding: 1rem;
    gap: 0.75rem;
  }
  
  .video-info-card__icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .video-info-card__content h3 {
    font-size: 1rem;
  }
}

/* ===== SERVICES LIST STYLES ===== */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
  border: 1px solid var(--border-color);
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-color);
}

.service-item i {
  color: var(--accent-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-item span {
  font-size: 1rem;
  color: var(--text-color);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
}

.cta-message {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--light-gray);
  border-radius: var(--border-radius);
  text-align: center;
  border-left: 4px solid var(--accent-color);
}

.cta-message p {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: var(--text-color);
}

.cta-message p:last-child {
  margin-bottom: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

/* Responsive adjustments for services list */
@media screen and (max-width: 768px) {
  .services-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-item {
    padding: 1rem;
  }
  
  .service-item span {
    font-size: 0.9rem;
  }
  
  .cta-message {
    padding: 1.5rem;
  }
  
  .cta-message p {
    font-size: 1rem;
  }
  
  .cta-message p:last-child {
    font-size: 1.125rem;
  }
}

/* ===== PROCESS GRID STYLES ===== */
.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process__step {
  background: var(--white-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  border-left: 4px solid var(--accent-color);
  transition: var(--transition-fast);
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.process__step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.process__number {
  background: var(--gradient-accent);
  color: var(--white-color);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: 1.25rem;
  margin: 0 auto 1rem auto;
  box-shadow: var(--shadow-medium);
}

.process__title {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
  text-align: center;
}

.process__description {
  color: var(--text-color);
  line-height: 1.6;
  flex-grow: 1;
  text-align: center;
}

/* Responsive adjustments for process grid */
@media screen and (max-width: 768px) {
  .process__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .process__step {
    padding: 1.5rem;
  }
  
  .process__number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
  
  .process__title {
    font-size: 1.125rem;
  }
}

/* =============== ESTRUTURA OFICINA PAGE =============== */

/* Structure Main Section */
.structure-main {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

/* Structure Intro */
.structure-intro {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.structure-intro__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.structure-intro__description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Structure Areas */
.structure-areas {
  margin-bottom: 4rem;
}

.structure-area {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  text-align: center;
}

.structure-area:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

/* Regras de reverse removidas - layout agora é sempre vertical */

.structure-area__image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.structure-area__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

.structure-area:hover .structure-area__image img {
  transform: scale(1.05);
}

.structure-area__content {
  padding: 1rem;
}

.structure-area__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.structure-area__icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}

.structure-area__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  display: inline-flex;
  align-items: center;
}

.structure-area__description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.structure-area__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.structure-area__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

.structure-area__features li i {
  color: var(--success-color);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Structure Certifications */
.structure-certifications {
  text-align: center;
  margin-bottom: 4rem;
}

.structure-certifications__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.structure-certifications__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Structure CTA */
.structure-cta {
  background: var(--gradient-primary);
  border-radius: var(--border-radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  color: white;
  box-shadow: var(--shadow-lg);
}

.structure-cta__title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.structure-cta__description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.structure-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.structure-cta .btn--outline {
  background: transparent;
  color: white;
  border-color: white;
}

.structure-cta .btn--outline:hover {
  background: white;
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .structure-intro__title {
    font-size: 2rem;
  }
  
  .structure-area {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  
  .structure-area--reverse .structure-area__image,
  .structure-area--reverse .structure-area__content {
    order: unset;
  }
  
  .structure-area__image img {
    height: 250px;
  }
  
  .structure-area__title {
    font-size: 1.5rem;
  }
  
  .structure-certifications__title {
    font-size: 1.875rem;
  }
  
  .structure-certifications__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .structure-cta {
    padding: 3rem 2rem;
  }
  
  .structure-cta__title {
    font-size: 1.875rem;
  }
  
  .structure-cta__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .structure-cta__actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .structure-intro__title {
    font-size: 1.75rem;
  }
  
  .structure-area {
    padding: 1.5rem;
  }
  
  .structure-area__header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .structure-area__title {
    font-size: 1.25rem;
  }
  
  .structure-certifications__grid {
    grid-template-columns: 1fr;
  }
  
  .structure-cta {
    padding: 2rem 1.5rem;
  }
  
  .structure-cta__title {
    font-size: 1.5rem;
  }
}

/* ===== WHATSAPP BUTTON MOBILE STYLES ===== */
@media screen and (max-width: 768px) {
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }

  .whatsapp-float i {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 480px) {
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .whatsapp-float i {
    font-size: 1.2rem;
  }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 4rem 0;
  background: var(--light-gray);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition-fast);
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  width: 40px;
  text-align: center;
}

.contact-item h3 {
  color: var(--primary-color);
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.25rem;
  text-align: left;
}

.contact-item p {
  color: var(--text-color);
  margin: 0;
  text-align: left;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.contact-buttons .btn {
  min-width: 180px;
}