* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #f39c12;
  --secondary-color: #e67e22;
  --dark-bg: #1a252f;
  --darker-bg: #0f1419;
  --light-bg: #2d3748;
  --text-light: #ffffff;
  --text-dark: #333333;
  --gradient-primary: linear-gradient(135deg, #f39c12, #e67e22);
  --gradient-dark: linear-gradient(135deg, #1a252f, #2d3748);
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  scroll-behavior: smooth;
}

/* Header Simplificado */
header {
  background: var(--gradient-dark);
  color: var(--text-light);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%; /* garante ocupar toda largura do pai */
  padding: 0 20px; /* um pouco de espaço nas laterais para não grudar demais, ajuste se quiser */
  box-sizing: border-box; /* para que o padding não aumente largura */
}
.logo {
  background-image: url("/img/Proverá.png"); /* ajuste o caminho se necessário */
  background-repeat: no-repeat;
  background-size: 300px auto; /* mantém a proporção da imagem */
  background-position: center left; /* alinha à esquerda */

  width: 250px; /* largura visível da logo */
  height: 60px; /* altura da faixa que a imagem respeita */

  display: block;
  flex-shrink: 0; /* evita que diminua em layouts flex */
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

#home,
#services,
#about,
#contact {
  scroll-margin-top: 92px;
}

html {
  scroll-behavior: smooth;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--text-light);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section Simplificado */
.hero {
  position: relative;
  min-height: 80vh;
  padding: 80px 20px;

  background-image: url("/img/Banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  color: white;
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/img/Banner.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.1); /* leve zoom */
  z-index: -1;
  will-change: transform;
}

.hero-content {
  max-width: 1200px; /* <- Aumenta a largura máxima do conteúdo */
  width: 100%; /* <- Garante que ocupe toda a área disponível */
  padding: 0 40px; /* <- Um pouco de respiro nas laterais */
  color: white;
  font-family: "Montserrat", sans-serif;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 400; /* <- Tira o negrito */
  letter-spacing: 3px; /* <- Aumenta o espaçamento horizontal */
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero p {
  font-size: 1.2rem;
  font-weight: 300; /* <- Deixa o parágrafo ainda mais leve */
  letter-spacing: 1.5px; /* <- Mais espaçamento horizontal */
  line-height: 1.8;
  text-transform: none; /* <- Deixa como no texto original */
}

.hero .subtitle {
  font-size: clamp(1rem, 2vw, 1.4rem);
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button.whatsapp {
  background-color: #25d3658a;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-button.whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  background-color: #1ebc5836;
}

.cta-button.whatsapp i {
  font-size: 1.3rem;
}

.cta-button {
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

.cta-secondary {
  background: rgba(243, 156, 18, 0.3);
  border: none;
  color: white;
  font-weight: 600;
}

.cta-secondary:hover {
  background: rgba(243, 157, 18, 0.219);
  box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
  color: var(--text-light);
  border: none;
}

.electrical-highlight {
  color: var(--primary-color);
  font-weight: 400;
}

/* Stats Section */
.stats {
  background: var(--darker-bg);
  color: var(--text-light);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  color: var(--dark-bg);
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.section-title-light {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  color: var(--primary-color);
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 10px auto 0;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--text-light);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(243, 156, 18, 0.2);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.service-card h3 {
  color: var(--dark-bg);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--text-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(243, 156, 18, 0.05);
  transform: translateY(-5px);
}

.feature-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: var(--text-light);
}

/* About Section */
.about {
  position: relative;
  min-height: 80vh;
  padding: 80px 20px;
  background-image: url("/img/Banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  color: var(--text-light);
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/img/Banner.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.1); /* leve zoom */
  z-index: -1;
  will-change: transform;
  filter: brightness(0.6); /* escurece o fundo se quiser mais contraste */
}

.about-content {
  max-width: 1200px;
  width: 100%;
  padding: 0 40px;
  position: relative;
  z-index: 1;
  color: white;
  font-family: "Montserrat", sans-serif;
}

.about-text {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  line-height: 1.8;
  text-transform: none;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 5rem;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--gradient-dark);
  color: var(--text-light);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(0, 0, 0, 0.3);
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.submit-btn {
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(243, 156, 18, 0.1);
}

.contact-item-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  min-width: 40px;
}

.contact-item strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient-dark);
  color: var(--text-light);
  padding: 20px 0;
  z-index: 10000;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: all 0.5s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-text p {
  opacity: 0.9;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.cookie-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 120px;
  justify-content: center;
  font-size: 0.95rem;
}

.cookie-btn-accept {
  background: var(--gradient-primary);
  color: var(--text-light);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-settings {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-settings:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--primary-color);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--gradient-dark);
  color: var(--text-light);
  padding: 2rem;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-modal-header h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
}

.cookie-close {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-category h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 25px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle.active {
  background: var(--primary-color);
}

.cookie-toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 21px;
  height: 21px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(25px);
}

.cookie-modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
  background: var(--darker-bg);
  color: var(--text-light);
  text-align: center;
  padding: 2rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  opacity: 0.8;
}

.instagram-fixo {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 64px;
  height: 64px;
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
  text-decoration: none;
  padding: 0; /* Sem espaçamento interno */
  overflow: hidden;
}

.instagram-fixo i {
  font-size: 52px; /* Quase o tamanho total do botão */
  line-height: 1;
  display: block;
}

.instagram-fixo:hover {
  transform: scale(1.1);
}

/* ============================================
             MEDIA QUERIES - RESPONSIVIDADE
      ============================================ */

/* Tablets grandes e desktops pequenos (1024px e abaixo) */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

  .container_topo {
    padding: 0 15px;
  }

  nav {
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 2.4rem;
    letter-spacing: 2px;
  }

  .hero p {
    font-size: 1.1rem;
    letter-spacing: 1.2px;
  }

  .hero-content {
    padding: 0 30px;
  }

  .about-content {
    padding: 0 30px;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Tablets (768px e abaixo) */
@media (max-width: 768px) {
  /* Header/Navigation */
  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gradient-dark);
    flex-direction: column;
    padding: 20px;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    text-align: center;
    padding: 12px 20px;
    border-radius: 10px;
  }

  /* Logo ajustes */
  .logo {
    background-size: 200px auto;
    width: 180px;
    height: 50px;
  }

  /* Hero Section */
  .hero {
    min-height: 70vh;
    padding: 60px 15px;
    background-attachment: scroll;
  }

  .hero::before {
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 2rem;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
  }

  .hero p {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    width: auto;
    min-width: 200px;
    justify-content: center;
  }

  /* Stats */
  .stats {
    padding: 40px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  /* Services */
  .services {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem;
  }

  /* Features */
  .features {
    padding: 60px 0;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  /* About */
  .about {
    min-height: 60vh;
    padding: 60px 15px;
    background-attachment: scroll;
  }

  .about::before {
    background-attachment: scroll;
  }

  .about-content {
    padding: 0 20px;
  }

  .about-text {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }

  /* Contact */
  .contact {
    padding: 60px 0;
  }

  .contact-form {
    padding: 2rem;
  }

  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    min-width: 100px;
  }

  /* Cookie Modal */
  .cookie-modal-content {
    padding: 1.5rem;
    margin: 10px;
  }

  .cookie-modal-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  /* Instagram fixo */
  .instagram-fixo {
    width: 56px;
    height: 56px;
    bottom: 15px;
    left: 15px;
  }

  .instagram-fixo i {
    font-size: 44px;
  }
}

/* Smartphones (480px e abaixo) */
@media (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 10px;
  }

  .container_topo {
    padding: 0 10px;
  }

  /* Header */
  nav {
    padding: 0 10px;
  }

  .logo {
    background-size: 160px auto;
    width: 140px;
    height: 40px;
  }

  /* Hero */
  .hero {
    min-height: 60vh;
    padding: 40px 10px;
  }

  .hero h1 {
    font-size: 1.6rem;
    letter-spacing: 1px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }

  .hero-content {
    padding: 0 15px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: 180px;
  }

  /* Stats */
  .stats {
    padding: 30px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .stat-item {
    padding: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  /* Services */
  .services {
    padding: 40px 0;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    font-size: 3rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  /* Features */
  .features {
    padding: 40px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  /* About */
  .about {
    min-height: 50vh;
    padding: 40px 10px;
  }

  .about-content {
    padding: 0 15px;
  }

  .about-text {
    font-size: 1rem;
    letter-spacing: 0.5px;
    line-height: 1.6;
  }

  .btn-outline {
    padding: 10px 25px;
    font-size: 0.9rem;
    margin-top: 2rem;
  }

  /* Contact */
  .contact {
    padding: 40px 0;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .submit-btn {
    padding: 10px 25px;
    font-size: 1rem;
  }

  .contact-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .contact-item-icon {
    font-size: 1.3rem;
    min-width: auto;
  }

  /* Cookie Banner */
  .cookie-banner {
    padding: 15px 0;
  }

  .cookie-content {
    padding: 0 10px;
  }

  .cookie-text h4 {
    font-size: 1rem;
  }

  .cookie-text p {
    font-size: 0.9rem;
  }

  .cookie-btn {
    padding: 8px 15px;
    font-size: 0.85rem;
    min-width: 80px;
  }

  /* Footer */
  footer {
    padding: 1.5rem 0;
  }

  .footer-content {
    gap: 1rem;
  }

  .footer-section h3 {
    font-size: 1.1rem;
  }

  /* Instagram fixo */
  .instagram-fixo {
    width: 50px;
    height: 50px;
    bottom: 10px;
    left: 10px;
    border-radius: 12px;
  }

  .instagram-fixo i {
    font-size: 38px;
  }
}

/* Smartphones muito pequenos (360px e abaixo) */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.4rem;
  }

  .hero p {
    font-size: 0.85rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cta-button {
    min-width: 160px;
    font-size: 0.85rem;
  }

  .service-card {
    padding: 1.2rem;
  }

  .contact-form {
    padding: 1.2rem;
  }

  .cookie-btn {
    font-size: 0.8rem;
    padding: 7px 12px;
  }

  .instagram-fixo {
    width: 45px;
    height: 45px;
  }

  .instagram-fixo i {
    font-size: 34px;
  }
}

/* Ajustes para orientação paisagem em tablets */
@media (max-width: 1024px) and (orientation: landscape) {
  .hero {
    min-height: 60vh;
  }

  .about {
    min-height: 50vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .stats {
    padding: 40px 0;
  }

  .services,
  .features,
  .contact {
    padding: 50px 0;
  }
}

/* Ajustes para telas muito altas */
@media (min-height: 900px) {
  .hero {
    min-height: 90vh;
  }

  .about {
    min-height: 70vh;
  }
}

/* Ajustes para hover em dispositivos touch */
@media (hover: none) and (pointer: coarse) {
  .service-card:hover,
  .feature-item:hover,
  .stat-item:hover {
    transform: none;
  }

  .cta-button:hover,
  .submit-btn:hover,
  .btn-outline:hover {
    transform: none;
  }

  .instagram-fixo:hover {
    transform: none;
  }
}

/* Menu mobile - animação do hamburger */
@media (max-width: 768px) {
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}
