/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background-color: #0a0e1a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* Variáveis CSS */
:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #0d1525;
  --bg-card: #0d1a30;
  --blue-primary: #0066ff;
  --blue-light: #0088ff;
  --blue-dark: #0044cc;
  --green-whatsapp: #25d366;
  --green-whatsapp-hover: #20bd5a;
  --border-color: #1e3a5f;
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-muted-light: rgba(255, 255, 255, 0.5);
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  padding: 16px 24px;
  background-color: rgba(10, 14, 26, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-container {
  position: absolute;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 110px;
}

.nav {
  display: none;
  
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;

}

.nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #ffffff;
}

.nav a.active {
  color: #ffffff;
  font-weight: 500;
  border-bottom: 2px solid #0066ff;
  padding-bottom: 4px;
}

.header-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #0066ff;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.header-btn:hover {
  background-color: #0055dd;
}

.header-btn svg {
  width: 18px;
  height: 18px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 85vh;
  padding: 120px 24px 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0e1a 0%, #0d1525 50%, #0a1628 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(0, 102, 255, 0.3) 0%,
    transparent 70%
  );
  filter: blur(40px);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: #0088ff;
}

.hero-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-banner {
  position: relative;
  padding: 140px 24px 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0e1a 0%, #0d1525 50%, #0a1628 100%);
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(0, 102, 255, 0.15) 100%
  );
  pointer-events: none;
}

.hero-banner-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-banner-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    90deg,
    rgba(0, 102, 255, 0.2) 0%,
    rgba(0, 102, 255, 0.1) 100%
  );
  border: 1px solid rgba(0, 102, 255, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #0088ff;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-banner-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-banner-title .highlight {
  color: #0088ff;
}

.hero-banner-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25d366;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #20bd5a;
}

.btn-primary svg {
  width: 18px;
  height: 18px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: #0088ff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #0066ff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: rgba(0, 102, 255, 0.1);
}

.hero-banner-image {
  display: none;
  position: relative;
  justify-content: center;
  align-items: center;
}

.ac-unit-hero {
  position: relative;
  width: 100%;
  max-width: 450px;
}

.ac-unit-box {
  background: linear-gradient(145deg, #ffffff 0%, #e8e8e8 50%, #d0d0d0 100%);
  border-radius: 16px;
  padding: 30px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(0, 102, 255, 0.15);
}

.ac-unit-vent {
  height: 60px;
  background: linear-gradient(180deg, #c0c0c0 0%, #a0a0a0 100%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
}

.ac-vent-line {
  height: 4px;
  background: linear-gradient(90deg, #888 0%, #999 50%, #888 100%);
  border-radius: 2px;
}

.ac-unit-display {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ac-temp {
  font-size: 28px;
  font-weight: 700;
  color: #0066ff;
  text-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}

.ac-brand {
  font-size: 12px;
  color: #666;
  font-weight: 600;
  letter-spacing: 2px;
}

/* ==================== PROMO BANNER ==================== */
.promo-banner {
  background: linear-gradient(90deg, #0066ff 0%, #0044cc 100%);
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(15deg);
}

.promo-banner-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.promo-banner-text {
  font-size: 16px;
  font-weight: 600;
}

.promo-banner-text strong {
  font-size: 20px;
  font-weight: 800;
}

.promo-banner-btn {
  background-color: #ffffff;
  color: #0066ff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.promo-banner-btn:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
}

/* ==================== PRODUCTS SECTION ==================== */
.products-section {
  padding: 80px 24px;
  background-color: #0a0e1a;
}

.products-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-subtitle {
  display: inline-block;
  color: #0088ff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.product-card {
  background: linear-gradient(180deg, #0d1a30 0%, #0a1220 100%);
  border: 1px solid #1e3a5f;
  border-radius: 20px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  border-color: #0066ff;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(90deg, #ff6b00 0%, #ff8c00 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.product-badge.blue {
  background: linear-gradient(90deg, #0066ff 0%, #0088ff 100%);
}

.product-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.product-camera-body{
  width: 190px;
}

.product-ac-visual {
  width: 100%;
  max-width: 500px;
  height: 130px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-ac-visual::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 25px;
  background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 100%);
  border-radius: 4px;
}

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

.product-brand {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-specs {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.product-price {
  margin-bottom: 20px;
}

.price-old {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-current {
  font-size: 28px;
  font-weight: 800;
  color: #25d366;
}

.price-current span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

.price-installment {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.product-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #0066ff 0%, #0055dd 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-btn:hover {
  background: linear-gradient(90deg, #0077ff 0%, #0066ff 100%);
  transform: scale(1.02);
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #0a0e1a 0%, #0d1525 100%);
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  background: linear-gradient(180deg, #0d1a30 0%, #0a1220 100%);
  border: 1px solid #1e3a5f;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: rgba(0, 102, 255, 0.5);
  transform: translateY(-3px);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0d1f3d 0%, #0a1628 100%);
  border: 1px solid #1e3a5f;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  color: #0088ff;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ==================== BRANDS SECTION ==================== */
.brands-section {
  padding: 60px 24px;
  background-color: #0a0e1a;
}

.brands-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.brands-title {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.brand-item {
  background: linear-gradient(180deg, #0d1a30 0%, #0a1220 100%);
  border: 1px solid #1e3a5f;
  border-radius: 12px;
  padding: 20px 32px;
  transition: all 0.3s ease;
}

.brand-item:hover {
  border-color: #0066ff;
}

.brand-item span {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #0d1525 0%, #0a1628 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 102, 255, 0.15) 0%,
    transparent 70%
  );
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 20px;
  height: 20px;
  color: #0088ff;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* Hero Image */
.hero-image {
  background-image: url("../img/ar-cam.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  height: 400px;
}

.hero-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background-color: rgba(0, 102, 255, 0.2);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-ac {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 280px;
  height: 160px;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: rotate(-6deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-ac-vent {
  width: 240px;
  height: 32px;
  border-radius: 20px;
}

.hero-camera {
  position: absolute;
  bottom: 80px;
  right: 40px;
  width: 200px;
  height: 130px;
}

/* ==================== PROMOTIONS ==================== */
.promotions {
  padding: 32px 24px;
  background-color: #0a0e1a;
}

.promotions-container {
  max-width: 1280px;
  margin: 0 auto;
}

.promotions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.promo-card {
  background: linear-gradient(90deg, #0d1a30 0%, #0f1f3d 100%);
  border: 1px solid #1e3a5f;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.promo-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0066ff 0%, #0044cc 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.promo-icon svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

.promo-image {
  width: 80px;
  height: 56px;
  background: linear-gradient(135deg, #f0f0f0 0%, #d0d0d0 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.promo-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0088ff;
  margin-bottom: 4px;
}

.promo-content.white h3 {
  color: #ffffff;
  font-size: 14px;
}

.promo-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.promo-content.white p {
  font-size: 12px;
}

.promo-badge {
  display: inline-block;
  margin-top: 8px;
  background-color: #0066ff;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ==================== SERVICES ==================== */
.services {
  padding: 48px 24px;
  background-color: #0a0e1a;
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
}

.services-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-card {
  background: linear-gradient(180deg, #0d1a30 0%, #0a1220 100%);
  border: 1px solid #1e3a5f;
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.3s ease;
}

.service-card:hover {
  border-color: rgba(0, 102, 255, 0.5);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0d1f3d 0%, #0a1628 100%);
  border: 1px solid #1e3a5f;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: #0088ff;
}

.service-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.service-btn {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #0066ff;
  color: #0088ff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.service-btn:hover {
  background-color: rgba(0, 102, 255, 0.1);
}

/* Divider */
.services-divider {
  margin-top: 64px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 102, 255, 0.3) 50%,
    transparent 100%
  );
  border-radius: 2px;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #0d1525 0%, #0a1628 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 102, 255, 0.15) 0%,
    transparent 70%
  );
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25d366;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn-primary:hover {
  background-color: #20bd5a;
  transform: translateY(-2px);
}

.cta-btn-primary svg {
  width: 22px;
  height: 22px;
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

/* ==================== CONTATO ==================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-info {
  max-width: 600px;
}

.contact-intro {
  color: var(--text-muted);
  margin-bottom: 24px;
}
.contact-icon-main {
  width: 80px;
}

/* Cards de informação */
.info-cards {
  display: grid;
  gap: 16px;
}

.info-card {
  display: flex;
  gap: 16px;
  background: linear-gradient(180deg, #0d1a30 0%, #0a1220 100%);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 16px;
  transition: 0.3s;
}

.info-card:hover {
  border-color: var(--blue-primary);
  transform: translateY(-3px);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0d1f3d, #0a1628);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue-light);
}

.info-content h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.info-content p {
  font-size: 14px;
}

.info-content span {
  font-size: 12px;
  color: var(--text-muted);
}

/* Formulário */
.contact-form-wrapper {
  background: linear-gradient(180deg, #0d1a30 0%, #0a1220 100%);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
}

.form-card h3 {
  margin-bottom: 8px;
}

.form-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group label {
  font-size: 13px;
  margin-bottom: 6px;
  display: block;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  background: #0a0e1a;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-primary);
  outline: none;
}

.btn-submit {
  background: linear-gradient(90deg, #0066ff, #0088ff);
  border: none;
  padding: 14px;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  transform: scale(1.02);
}

/* Mapa */
.map-wrapper {
  margin-top: 30px;
}

/* Horários */
.schedule-grid {
  display: grid;
  gap: 20px;
}
/* Social links */
.social-link svg {
  width: 20px;
}

.schedule-card {
  background: linear-gradient(180deg, #0d1a30 0%, #0a1220 100%);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
}

.schedule-time {
  font-size: 18px;
  font-weight: bold;
  color: var(--blue-light);
}

/* RESPONSIVO */
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    flex-direction: row;
  }

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

@media (min-width: 1024px) {
  .schedule-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==================== FOOTER ==================== */
.footer {
  padding: 48px 24px 24px;
  background-color: #060810;
  border-top: 1px solid #1e3a5f;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #0088ff;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: #0088ff;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #1e3a5f;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #20bd5a;
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

/* ==================== RESPONSIVE ==================== */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .promotions-grid .promo-card:first-child {
    grid-column: span 2;
  }
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }

  .nav {
    display: block;
  }

  .header {
    padding: 16px 48px;
  }

  .hero {
    padding: 120px 48px 60px;
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
  }

  .hero-image {
    display: block;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .promotions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .promotions-grid .promo-card:first-child {
    grid-column: span 1;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-title {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  .header {
    padding: 16px 48px;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-description {
    font-size: 18px;
  }
}

/* ==================== RESPONSIVE ==================== */
@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }

  .nav {
    display: block;
  }

  .header {
    padding: 16px 48px;
  }

  .hero-banner {
    padding: 160px 48px 100px;
  }

  .hero-banner-container {
    grid-template-columns: 1fr 1fr;
  }

  .hero-banner-image {
    display: flex;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-banner-title {
    font-size: 48px;
  }
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.ac-unit-hero {
  animation: float 4s ease-in-out infinite;
}

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

.hero-glow {
  animation: pulse 3s ease-in-out infinite;
}
