/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0077B6;
  --primary-dark: #005f8f;
  --primary-light: #90E0EF;
  --accent: #2D9F6F;
  --accent-light: #4EC98B;
  --white: #FFFFFF;
  --light: #F0F7FA;
  --light-gray: #E8EEF2;
  --gray: #6B7B8D;
  --dark: #1A2B3C;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.3;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.logo i {
  font-size: 1.6rem;
}

.nav-menu {
  display: flex;
  gap: 8px;
}

.nav-menu a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0077B6 0%, #00A8CC 50%, #2D9F6F 100%);
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  font-weight: 300;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 600px;
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  font-size: 1.1rem;
  padding: 18px 40px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* ===== DIFERENCIAIS ===== */
.diferenciais {
  background: var(--white);
  padding: 60px 0;
  margin-top: -40px;
  position: relative;
  z-index: 3;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.diferencial-item {
  text-align: center;
  padding: 30px 16px;
  border-radius: var(--radius);
  background: var(--light);
  transition: var(--transition);
}

.diferencial-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.diferencial-item i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.diferencial-item h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 48px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ===== SOBRE ===== */
.sobre {
  padding: 80px 0;
  background: var(--light);
}

.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.sobre-text p {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8;
}

.sobre-text strong {
  color: var(--primary);
}

.mvv-item {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mvv-item h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mvv-item p {
  color: var(--gray);
  font-size: 0.95rem;
}

.valores-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.valores-tags span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ===== SERVIÇOS ===== */
.servicos {
  padding: 80px 0;
  background: var(--white);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.servico-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}

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

.servico-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.servico-icon i {
  font-size: 1.8rem;
  color: var(--white);
}

.servico-card h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.servico-card ul {
  list-style: none;
}

.servico-card li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--gray);
  font-size: 0.95rem;
}

.servico-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== ÁREA DE ATENDIMENTO ===== */
.area {
  padding: 80px 0;
  background: var(--light);
}

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

.area-icon {
  margin-bottom: 20px;
}

.area-icon i {
  font-size: 3rem;
  color: var(--primary);
}

.area-content > p {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 32px;
}

.area-mapa {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  padding: 80px 0;
  background: var(--white);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.depoimento-card {
  background: var(--light);
  padding: 32px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.depoimento-card:hover {
  box-shadow: var(--shadow);
}

.depoimento-stars {
  margin-bottom: 16px;
}

.depoimento-stars i {
  color: #f5a623;
  font-size: 1rem;
}

.depoimento-card p {
  font-size: 1rem;
  color: var(--gray);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-weight: 600;
}

.depoimento-autor i {
  font-size: 1.8rem;
  color: var(--primary);
}

/* ===== CONTATO ===== */
.contato {
  padding: 80px 0;
  background: linear-gradient(135deg, #0077B6 0%, #2D9F6F 100%);
}

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

.contato .section-title::after {
  background: rgba(255, 255, 255, 0.5);
}

.contato-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.contato-item i {
  font-size: 1.8rem;
  color: var(--white);
}

.contato-item h4 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 400;
  margin-bottom: 2px;
}

.contato-item a {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition);
}

.contato-item a:hover {
  opacity: 0.8;
}

.contato-cta {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.contato-cta p {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 24px;
}

/* ===== RODAPÉ ===== */
.footer {
  background: var(--dark);
  padding: 60px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-about h3 i {
  color: var(--accent-light);
}

.footer-about p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer-cnpj, .footer-endereco {
  font-size: 0.85rem;
  opacity: 0.6;
}

.footer-links h4,
.footer-social h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
}

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

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
  opacity: 0.5;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float i {
  font-size: 1.8rem;
  color: var(--white);
}

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

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

/* ===== FADE IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
  .diferenciais-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: var(--transition);
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-menu a {
    display: block;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

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

  .sobre-content {
    grid-template-columns: 1fr;
  }

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

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

  .contato-content {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .btn-whatsapp {
    padding: 16px 32px;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

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

  .diferencial-item {
    padding: 20px 12px;
  }

  .diferencial-item i {
    font-size: 1.8rem;
  }

  .diferencial-item h3 {
    font-size: 0.8rem;
  }
}
