@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #1e3a8a;
  --secondary-blue: #2563eb;
  --light-blue: #3b82f6;
  --accent-orange: #f97316;
  --dark-blue: #0f172a;
  --white: #ffffff;
  --light-gray: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar com fundo azul e animações melhoradas */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--primary-blue);
  box-shadow: 0 2px 20px rgba(30, 58, 138, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: var(--dark-blue);
  box-shadow: 0 5px 30px rgba(15, 23, 42, 0.4);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-orange);
  transition: all 0.3s ease;
  animation: rotate-logo 20s linear infinite;
}

@keyframes rotate-logo {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.logo:hover img {
  border-color: var(--white);
  animation-play-state: paused;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-link {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-orange);
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hero section com fundo azul gradiente e mais animações */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--light-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  animation: float-particles 15s ease-in-out infinite;
}

@keyframes float-particles {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.hero-content {
  text-align: center;
  color: var(--white);
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 25px;
  border-radius: 50px;
  margin-bottom: 30px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-badge i {
  color: var(--accent-orange);
  font-size: 20px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2);
  line-height: 1.6;
  opacity: 0.95;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-feature:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.hero-feature i {
  color: var(--accent-orange);
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

.btn-primary {
  background: var(--accent-orange);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
  background: #ea580c;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.5);
}

.btn-primary.pulse {
  animation: pulse-button 2s ease-in-out infinite;
}

@keyframes pulse-button {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
  }
  50% {
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.6);
  }
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-blue);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: var(--light-gray);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  text-align: center;
  animation: bounce-scroll 2s infinite;
}

.scroll-indicator span {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.scroll-indicator i {
  font-size: 2rem;
}

@keyframes bounce-scroll {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-15px);
  }
  60% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
  animation: fadeIn 1s ease-out 0.2s backwards;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 1s ease-out 0.4s backwards;
}

.animate-fade-in-delay-3 {
  animation: fadeIn 1s ease-out 0.6s backwards;
}

.animate-fade-in-delay-4 {
  animation: fadeIn 1s ease-out 0.8s backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Seções com melhor espaçamento e design */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-badge.light {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-title.light {
  color: var(--white);
}

.section-description {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
  margin: 0 auto 30px;
  border-radius: 2px;
}

.title-underline.light {
  background: linear-gradient(90deg, var(--accent-orange), var(--white));
}

/* About section com fundo branco e melhor layout */
.about {
  background: var(--white);
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-text {
  text-align: center;
}

.about-intro {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 25px;
  font-weight: 500;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.highlight-item {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: var(--light-gray);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary-blue);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  font-size: 1.8rem;
  color: var(--white);
}

.highlight-content h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.highlight-content p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Why Us section com cards numerados */
.why-us {
  background: var(--light-gray);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-blue);
}

.why-number {
  position: absolute;
  top: -15px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-orange), #ea580c);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.why-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  transform: rotateY(360deg);
}

.why-icon i {
  font-size: 2rem;
  color: var(--white);
}

.why-card h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.why-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Stats section com fundo azul e animações */
.stats {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  position: relative;
  overflow: hidden;
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 50px 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.stat-card:hover::before {
  left: 100%;
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-orange);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-orange), #ea580c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.stat-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 1.1rem;
  color: var(--white);
  opacity: 0.9;
}

.stat-bar {
  width: 0;
  height: 4px;
  background: var(--accent-orange);
  margin: 20px auto 0;
  border-radius: 2px;
  transition: width 1s ease;
}

.stat-card:hover .stat-bar {
  width: 80%;
}

/* Services section com cards melhorados */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-blue);
}

.service-card.featured {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--white);
  grid-column: span 3;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.2);
}

.service-card:hover .service-icon {
  transform: rotateY(360deg);
}

.service-card.featured .service-icon {
  background: var(--white);
}

.service-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.service-card.featured .service-icon i {
  color: var(--primary-blue);
}

.service-badge-top {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent-orange);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-orange);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
  animation: pulse-badge 2s ease-in-out infinite;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-card.featured .service-title {
  color: var(--white);
}

.service-price {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--text-light);
}

.service-price span {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-orange);
}

.service-card.featured .service-price {
  color: rgba(255, 255, 255, 0.9);
}

.service-card.featured .service-price span {
  color: var(--white);
}

.service-description {
  margin-bottom: 25px;
  color: var(--text-light);
  line-height: 1.7;
}

.service-card.featured .service-description {
  color: rgba(255, 255, 255, 0.9);
}

.service-list {
  list-style: none;
  margin: 25px 0;
}

.service-list li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  border-bottom: 1px solid var(--light-gray);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-card.featured .service-list li {
  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.service-list i {
  color: var(--primary-blue);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.service-card.featured .service-list i {
  color: var(--accent-orange);
}

.btn-service {
  width: 100%;
  margin-top: 25px;
  background: var(--primary-blue);
  color: var(--white);
  justify-content: center;
}

.btn-service:hover {
  background: var(--secondary-blue);
}

.service-card.featured .btn-service {
  background: var(--white);
  color: var(--primary-blue);
}

.service-card.featured .btn-service:hover {
  background: var(--accent-orange);
  color: var(--white);
}

/* Location section melhorada */
.location {
  background: var(--light-gray);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-blue);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.info-icon i {
  font-size: 1.8rem;
  color: var(--white);
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.info-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.info-card a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-card a:hover {
  color: var(--accent-orange);
}

.info-badge {
  display: inline-block;
  background: rgba(30, 58, 138, 0.1);
  color: var(--primary-blue);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 500px;
}

/* Contact section com cards interativos */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-card {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--white);
  padding: 50px 35px;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.contact-card:hover::before {
  width: 500px;
  height: 500px;
}

.contact-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.contact-icon {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotateY(360deg);
  background: rgba(255, 255, 255, 0.3);
}

.contact-icon i {
  font-size: 2.5rem;
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.contact-card p {
  margin-bottom: 15px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.contact-link {
  font-weight: 700;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.contact-arrow {
  margin-top: 20px;
  font-size: 1.5rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-card:hover .contact-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Footer melhorado */
.footer {
  background: var(--dark-blue);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: var(--white);
  position: relative;
  padding-bottom: 15px;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-orange);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-orange);
}

.footer-section p {
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 20px;
}

.footer-certifications {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-certifications span {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-certifications i {
  color: var(--accent-orange);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-section ul li a:hover {
  opacity: 1;
  color: var(--accent-orange);
  padding-left: 5px;
}

.footer-section ul li a i {
  font-size: 12px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.footer-contact i {
  color: var(--accent-orange);
  font-size: 1.1rem;
  width: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent-orange);
  transform: translateY(-5px) rotate(360deg);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  opacity: 0.7;
  margin-bottom: 10px;
}

.footer-dev {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.footer-dev i {
  color: var(--accent-orange);
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Modal melhorado */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: var(--white);
  margin: 3% auto;
  padding: 50px;
  border-radius: 25px;
  max-width: 650px;
  position: relative;
  animation: slideDown 0.3s ease;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-modal {
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 2.5rem;
  cursor: pointer;
  color: var(--text-light);
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-modal:hover {
  color: var(--accent-orange);
  background: var(--light-gray);
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 40px;
}

.modal-header i {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.modal-header h2 {
  color: var(--text-dark);
  margin-bottom: 10px;
  font-size: 2rem;
}

.modal-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 15px;
}

.form-group label i {
  color: var(--primary-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-block {
  width: 100%;
  margin-top: 15px;
  font-size: 1.1rem;
  padding: 18px;
}

.form-note {
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-note i {
  color: var(--primary-blue);
}

/* WhatsApp float button melhorado */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-text {
  position: absolute;
  right: 75px;
  background: var(--dark-blue);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-text {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulse-whatsapp {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
  }
}

/* Scroll Animations */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design melhorado */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card.featured {
    grid-column: span 2;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: var(--primary-blue);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow);
    padding: 30px 0;
    gap: 20px;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 15px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    grid-column: span 1;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .location-content {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }

  .modal-content {
    margin: 10% 20px;
    padding: 35px 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 1.8rem;
  }

  .whatsapp-text {
    display: none;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #1e3a8a;
  --secondary-blue: #2563eb;
  --light-blue: #3b82f6;
  --accent-orange: #f97316;
  --dark-blue: #0f172a;
  --white: #ffffff;
  --light-gray: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar com fundo branco e texto azul */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-blue);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-blue);
  transition: all 0.3s ease;
  animation: rotate-logo 20s linear infinite;
}

@keyframes rotate-logo {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.logo:hover img {
  border-color: var(--accent-orange);
  animation-play-state: paused;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-link {
  text-decoration: none;
  color: var(--primary-blue);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-orange);
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-blue);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hero section com fundo azul corrigido sem parallax bugado */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--light-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  animation: float-particles 15s ease-in-out infinite;
}

@keyframes float-particles {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.hero-content {
  text-align: center;
  color: var(--white);
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 25px;
  border-radius: 50px;
  margin-bottom: 30px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-badge i {
  color: var(--accent-orange);
  font-size: 20px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2);
  line-height: 1.6;
  opacity: 0.95;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-feature:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

