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

:root {
  --primary: #1a365d;
  --primary-light: #2c5282;
  --accent: #38b2ac;
  --accent-light: #4fd1c5;
  --white: #ffffff;
  --gray-50: #f7fafc;
  --gray-100: #edf2f7;
  --gray-200: #e2e8f0;
  --gray-600: #718096;
  --gray-800: #2d3748;
  --gray-900: #1a202c;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
}

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

/* Header */
.header {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 1px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.logo-icon {
  width: 50px;
  height: 50px;
  color: var(--primary);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.1;
  color: var(--gray-800);
}

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

.logo-subtitle {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 2px;
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 30px;
  font-size: 18px;
}

.nav a {
  text-decoration: none;
  color: var(--gray-800);
  font-weight: 500;
  transition: color 0.3s;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  padding: 20px;
  z-index: 999;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  padding: 15px;
  text-decoration: none;
  color: var(--gray-800);
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-nav a:hover {
  color: var(--accent);
  background: var(--gray-50);
}

/* Hero Section */
.hero {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--accent-light);
}

.hero-content p {
  font-size: 18px;
  color: var(--gray-200);
  margin-bottom: 30px;
}

.hero-content ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin-bottom: 30px;
  padding: 0;
}

.hero-content li {
  font-size: 16px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}

.hero-content li::before {
  content: "✓";
  color: var(--accent-light);
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn svg {
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.store {
  padding: 100px 0;
  background: var(--gray-50);
}

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

.product-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.product-image {
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.product-image:hover img {
  transform: scale(1.08);
}

.product-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-content h3 {
  font-size: 22px;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.product-brand,
.product-power {
  color: var(--gray-600);
  font-size: 14px;
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.product-specs {
  display: none;
  background: var(--gray-100);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--gray-200);
  margin-top: 12px;
}

.product-specs.active {
  display: block;
}

.product-specs ul {
  list-style: disc;
  padding-left: 18px;
  color: var(--gray-700);
}

.product-specs li {
  margin-bottom: 8px;
}

.store-partner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: rgba(248, 250, 252, 0.9);
  padding: 24px 28px;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
}

.store-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-logo {
  max-height: 64px;
  width: auto;
  display: block;
}

.store-plus {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
}

.store-note {
  color: var(--gray-800);
  font-size: 16px;
  line-height: 1.7;
  max-width: 640px;
  font-weight: 500;
}

.store-plus {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.store-note {
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.6;
  max-width: 640px;
}

.hero-image {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--gray-50);
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 50px;
}

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

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 15px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Brands Section */
.brands {
  padding: 100px 0;
  background: var(--white);
}

.brands .section-title,
.brands .section-subtitle {
  text-align: center;
}

.brands-slider {
  margin-top: 40px;
  overflow: hidden;
  position: relative;
}

.brands-track {
  display: flex;
  gap: 18px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.brand-card {
  flex: 0 0 160px;
  min-width: 160px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 14px;
  font-weight: 700;
  color: var(--gray-800);
  text-align: center;
  white-space: normal;
}

.brands-slider::before,
.brands-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--white) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.brands-slider::after {
  right: 0;
  transform: rotate(180deg);
}

.brands-slider::before {
  left: 0;
}

@media (max-width: 992px) {
  .brand-card {
    flex: 0 0 140px;
    min-width: 140px;
  }
}

@media (max-width: 768px) {
  .brands-slider::before,
  .brands-slider::after {
    display: none;
  }
  .brand-card {
    flex: 0 0 120px;
    min-width: 120px;
  }
  .store-grid {
    grid-template-columns: 1fr;
  }
  .product-image img {
    height: 220px;
  }
}

@media (max-width: 992px) {
  .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* About Section */
.about {
  padding: 100px 0;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
}

.about-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 30px;
  line-height: 1.8;
}

.about-list {
  list-style: none;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 16px;
  color: var(--gray-800);
}

.about-list svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Form Section */
.form-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
}

.form-section .section-title,
.form-section .section-subtitle {
  color: var(--white);
}

.service-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s;
}

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

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

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--gray-50);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.contact-card {
  background: var(--white);
  padding: 28px 22px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.contact-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.contact-icon.whatsapp {
  background: var(--whatsapp);
}

.contact-icon.instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.contact-icon.phone {
  background: var(--primary);
}

.contact-icon.email {
  background: #6d5dfc;
}

.contact-icon.location {
  background: var(--accent);
}

.contact-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  word-break: break-word;
  white-space: normal;
}

/* Footer */
.footer {
  background: var(--gray-900);
  padding: 40px 0;
}

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

.footer-logo {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

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

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

.footer p {
  color: var(--gray-600);
  font-size: 14px;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: all 0.3s;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

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

/* Responsive */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 300px;
  }

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

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

  .about-image {
    order: -1;
  }

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

@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .header .container {
    padding: 6px 14px;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .logo-img {
    width: 140px;
  }

  .menu-toggle span {
    width: 22px;
    height: 2.8px;
  }

  .mobile-nav {
    top: 58px;
    padding: 14px;
  }

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

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-content ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

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

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

  .service-form {
    padding: 30px 20px;
  }

  .about-content h2 {
    font-size: 28px;
  }

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

  .product-image img {
    height: auto;
  }

  .product-actions {
    flex-direction: column;
  }

  .store-partner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .store-partner .store-logo {
    max-width: 140px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
}

/* =========================
   JOBS GALLERY
========================= */
.jobs-gallery {
  padding: 100px 0;
  background: var(--white);
}

.jobs-slider {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.jobs-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.job-slide {
  min-width: 100%;
  width: 100%;
  flex: 0 0 100%;
}

.job-slide img {
  width: 100%;
  height: 450px;
  display: block;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow);
}

/* Mobile */
@media (max-width: 768px) {
  .job-slide img {
    height: 260px;
  }
}
