/* =========================
   HOME PAGE
========================= */

.home-page {
  display: block;
}

/* =========================
   HERO SECTION
========================= */

.home-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0f172a;
}

.hero-slider {
  position: relative;
  min-height: 620px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.03);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0 90px;
}

.hero-text {
  max-width: 920px;
  color: #ffffff;
  animation: heroFadeUp 0.9s ease;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(242, 197, 92, 0.14);
  border: 1px solid rgba(242, 197, 92, 0.35);
  color: #f2c55c;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
}

.hero-text h1 {
  margin: 0 0 14px;
  font-size: 64px;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -1.6px;
  text-wrap: balance;
  text-shadow: 0 10px 25px rgba(0,0,0,0.22);
}

.hero-text p {
  margin: 0 auto 34px;
  max-width: 760px;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
}

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

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 15px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn-primary {
  background: #0b8aa5;
  color: #ffffff;
}

.hero-btn-primary:hover {
  background: #08758d;
}

.hero-btn-secondary {
  background: rgba(255,255,255,0.96);
  color: #0b8aa5;
  border: 2px solid #ffffff;
}

.hero-btn-secondary:hover {
  background: #0b8aa5;
  color: #ffffff;
  border-color: #0b8aa5;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
  backdrop-filter: blur(4px);
}

.hero-arrow:hover {
  background: rgba(255,255,255,0.3);
}

.hero-arrow-left {
  left: 24px;
}

.hero-arrow-right {
  right: 24px;
}

.hero-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.hero-dot:hover {
  transform: scale(1.08);
}

.hero-dot.is-active {
  background: #f2c55c;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* placeholders secciones */
.home-best-sellers,
.home-featured-categories,
.home-electrical-materials,
.home-newsletter,
.home-contact-info,
.home-company-verification {
  padding: 50px 0;
}

/* responsive */
@media (max-width: 1100px) {
  .hero-slider,
  .hero-content {
    min-height: 540px;
  }

  .hero-text h1 {
    font-size: 50px;
  }

  .hero-text p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .hero-slider,
  .hero-content {
    min-height: 460px;
  }

  .hero-content {
    padding: 40px 0 80px;
  }

  .hero-text h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .hero-text p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero-kicker {
    font-size: 12px;
    padding: 8px 14px;
  }

  .hero-btn {
    min-width: 180px;
    padding: 13px 20px;
    font-size: 14px;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
    font-size: 26px;
  }

  .hero-arrow-left {
    left: 12px;
  }

  .hero-arrow-right {
    right: 12px;
  }
}

/* =========================
   HOME - BEST SELLERS
========================= */

.home-best-sellers {
  background: #f8fafc;
  padding: 72px 0;
}

.best-sellers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.best-sellers-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.best-sellers-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #0b8aa5;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.best-sellers-title-wrap h2 {
  margin: 0;
  color: #0b8aa5;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
}

.best-sellers-more {
  color: #0b8aa5;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.best-sellers-more:hover {
  color: #08758d;
}

.best-sellers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.best-seller-card {
  min-width: 0;
}

.best-seller-card-inner {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  position: relative;
}

.best-seller-card-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.best-seller-discount {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #0b8aa5;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 8px;
  border-radius: 8px;
}

.best-seller-discount strong {
  background: #ffffff;
  color: #0b8aa5;
  border-radius: 6px;
  padding: 2px 5px;
  font-size: 11px;
  line-height: 1;
}

.best-seller-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px 20px 16px;
  min-height: 220px;
  background: #ffffff;
  text-decoration: none;
}

.best-seller-image img {
  max-width: 100%;
  max-height: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.best-seller-card-inner:hover .best-seller-image img {
  transform: scale(1.04);
}

.best-seller-body {
  padding: 0 18px 20px;
}

.best-seller-title {
  margin: 0 0 14px;
  min-height: 46px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  text-transform: uppercase;
}

.best-seller-title a {
  color: #0b8aa5;
  text-decoration: none;
}

.best-seller-title a:hover {
  color: #08758d;
}

.best-seller-prices {
  margin-bottom: 16px;
}

.best-seller-original-price {
  font-size: 13px;
  color: #94a3b8;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.best-seller-current-price {
  font-size: 28px;
  line-height: 1.1;
  color: #0b8aa5;
  font-weight: 800;
  margin-bottom: 8px;
}

.best-seller-tax-label,
.best-seller-tax-price {
  font-size: 11px;
  color: #64748b;
  line-height: 1.4;
}

.best-seller-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.best-seller-btn,
.best-seller-actions .button,
.best-seller-actions .added_to_cart {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 12px;
  background: #0b8aa5;
  color: #ffffff !important;
  border: none;
  border-radius: 10px;
  text-decoration: none !important;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.best-seller-btn:hover,
.best-seller-actions .button:hover,
.best-seller-actions .added_to_cart:hover {
  background: #08758d;
  transform: translateY(-1px);
}

.best-sellers-empty {
  padding: 30px;
  background: #ffffff;
  border-radius: 16px;
  text-align: center;
  color: #64748b;
}

@media (max-width: 1200px) {
  .best-sellers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .best-sellers-title-wrap h2 {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .home-best-sellers {
    padding: 56px 0;
  }

  .best-sellers-header {
    margin-bottom: 24px;
  }

  .best-sellers-grid {
    grid-template-columns: 1fr;
  }

  .best-seller-current-price {
    font-size: 24px;
  }
}

/* =========================
   HOME - FEATURED CATEGORIES
========================= */

.home-featured-categories {
  padding: 88px 0;
  background: #ffffff;
}

.home-featured-categories .section-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 44px;
}

.section-heading h2{
  margin:0 0 14px;
  font-size:48px;
  line-height:1.05;
  font-weight:800;
  color:#0b8aa5;
  letter-spacing:-0.5px;
  text-align:center;
}

.home-featured-categories .section-heading p {
  margin:0 auto;
  max-width:820px;
  font-size:18px;
  line-height:1.45;
  color:#64748b;
  text-align:center;
}

.featured-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.featured-category-card {
  position: relative;
  display: block;
  min-height: 430px;
  border-radius: 22px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.featured-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.16);
}

.featured-category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.10) 0%,
    rgba(0, 0, 0, 0.22) 45%,
    rgba(0, 0, 0, 0.58) 100%
  );
  transition: background 0.3s ease;
}

.featured-category-card:hover .featured-category-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.14) 0%,
    rgba(0, 0, 0, 0.28) 45%,
    rgba(0, 0, 0, 0.62) 100%
  );
}

.featured-category-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.featured-category-card:hover .featured-category-content {
  transform: translateY(-4px);
}

.featured-category-content h3 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  text-wrap: balance;
}

.featured-category-content p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.featured-category-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f2b544;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(242, 181, 68, 0.28);
}

.featured-category-border {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: 22px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.featured-category-card:hover .featured-category-border {
  border-color: rgba(11, 138, 165, 0.35);
}

@media (max-width: 1200px) {
  .home-featured-categories .section-heading h2 {
    font-size: 46px;
  }

  .home-featured-categories .section-heading p {
    font-size: 20px;
  }

  .featured-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .home-featured-categories {
    padding: 64px 0;
  }

  .home-featured-categories .section-heading {
    margin-bottom: 28px;
  }

  .home-featured-categories .section-heading h2 {
    font-size: 34px;
  }

  .home-featured-categories .section-heading p {
    font-size: 17px;
    line-height: 1.5;
  }

  .featured-category-card {
    min-height: 360px;
  }

  .featured-category-content {
    padding: 22px 20px;
  }

  .featured-category-content h3 {
    font-size: 22px;
  }

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

@media (max-width: 640px) {
  .featured-categories-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   HOME - ELECTRICAL MATERIALS
========================= */

.home-electrical-materials {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background: linear-gradient(135deg, rgba(11,138,165,0.07) 0%, #ffffff 48%, rgba(11,138,165,0.04) 100%);
}

.electrical-materials-bg-shape {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.electrical-materials-shape-1 {
  top: 28px;
  left: 40px;
  width: 110px;
  height: 110px;
  border: 2px solid rgba(11,138,165,0.18);
}

.electrical-materials-shape-2 {
  right: 70px;
  bottom: 70px;
  width: 92px;
  height: 92px;
  border: 2px solid rgba(242,197,92,0.22);
}

.electrical-materials-shape-3 {
  top: 50%;
  left: 35%;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(11,138,165,0.16);
}

.electrical-materials-container {
  position: relative;
  z-index: 2;
}

.electrical-materials-inner {
  min-height: 420px;
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  align-items: center;
  gap: 70px;
}

.electrical-materials-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.electrical-orbit-wrapper {
  position: relative;
  width: 340px;
  height: 340px;
}

.electrical-orbit {
  position: absolute;
  inset: 0;
  border-radius: 999px;
}

.outer-orbit {
  background: linear-gradient(
    135deg,
    rgba(242,197,92,0.18),
    rgba(11,138,165,0.08),
    rgba(11,138,165,0.12)
  );
  animation: slowSpin 10s linear infinite;
}

.middle-orbit {
  inset: 16px;
  border: 2px solid rgba(11,138,165,0.18);
  animation: pulseRing 2.5s ease-in-out infinite;
}

.orb {
  position: absolute;
  border-radius: 999px;
}

.orb-top {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: #0b8aa5;
  animation: floatUpDown 1.8s ease-in-out infinite;
}

.orb-right {
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: rgba(11,138,165,0.65);
  animation: pulseSoft 1.8s ease-in-out infinite;
}

.orb-bottom {
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  background: #f2c55c;
  animation: floatUpDownBottom 2s ease-in-out infinite;
}

.orb-left {
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: rgba(11,138,165,0.45);
  animation: pulseSoft 2.2s ease-in-out infinite;
}

.electrical-center {
  position: absolute;
  inset: 30px;
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.64), rgba(242,197,92,0.10));
  border: 1px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 38px rgba(15,23,42,0.10);
}

.electrical-center-number {
  margin-bottom: 8px;
  font-size: 60px;
  line-height: 1;
  font-weight: 800;
  color: #0b8aa5;
}

.electrical-center-text {
  font-size: 15px;
  line-height: 1.35;
  color: #64748b;
}

.particle {
  position: absolute;
  border-radius: 999px;
}

.particle-1 {
  top: 34px;
  right: 38px;
  width: 8px;
  height: 8px;
  background: rgba(11,138,165,0.30);
  animation: particlePulse 1.8s ease-in-out infinite;
}

.particle-2 {
  bottom: 52px;
  left: 56px;
  width: 11px;
  height: 11px;
  background: rgba(242,197,92,0.42);
  animation: particlePulse 2.1s ease-in-out infinite;
}

.particle-3 {
  top: 76px;
  left: 32px;
  width: 7px;
  height: 7px;
  background: rgba(11,138,165,0.26);
  animation: particlePulse 1.9s ease-in-out infinite;
}

.particle-4 {
  bottom: 64px;
  right: 74px;
  width: 7px;
  height: 7px;
  background: rgba(11,138,165,0.26);
  animation: particlePulse 2.3s ease-in-out infinite;
}

.electrical-materials-content {
  max-width: 760px;
}

.electrical-materials-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(11,138,165,0.10);
  color: #0b8aa5;
  font-size: 16px;
  font-weight: 700;
}

.electrical-materials-content h2 {
  margin: 0 0 22px;
  font-size: 48px;
  line-height: 1.02;
  font-weight: 800;
  color: #0b8aa5;
  letter-spacing: -1.6px;
  text-wrap: balance;
}

.electrical-materials-content p {
  margin: 0 0 48px;
  max-width: 760px;
  font-size: 22px;
  line-height: 1.55;
  color: #64748b;
}

.electrical-materials-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  min-height: 66px;
  padding: 16px 34px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0b8aa5 0%, #08758d 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(11,138,165,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.electrical-materials-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(11,138,165,0.24);
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulseRing {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.01); }
}

@keyframes floatUpDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}

@keyframes floatUpDownBottom {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(4px); }
}

@keyframes pulseSoft {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.8; }
  50% { transform: translateY(-50%) scale(1.12); opacity: 1; }
}

@keyframes particlePulse {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.35); }
}

@media (max-width: 1200px) {
  .electrical-materials-inner {
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 40px;
  }

  .electrical-orbit-wrapper {
    width: 300px;
    height: 300px;
  }

  .electrical-materials-content h2 {
    font-size: 52px;
  }

  .electrical-materials-content p {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .electrical-materials-inner {
    grid-template-columns: 1fr;
    gap: 42px;
    text-align: center;
  }

  .electrical-materials-content {
    margin: 0 auto;
  }

  .electrical-materials-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .home-electrical-materials {
    padding: 72px 0;
  }

  .electrical-orbit-wrapper {
    width: 260px;
    height: 260px;
  }

  .electrical-center-number {
    font-size: 42px;
  }

  .electrical-materials-content h2 {
    font-size: 38px;
  }

  .electrical-materials-content p {
    font-size: 17px;
  }

  .electrical-materials-btn {
    min-width: 190px;
    min-height: 52px;
    padding: 14px 24px;
    font-size: 18px;
  }
}

/* =========================
   HOME - CONTACT INFO
========================= */

.home-contact-info {
  padding: 88px 0;
  background: #ffffff;
}

.home-contact-info .section-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 42px;
}

.home-contact-info .section-heading h2{
  font-size:48px;
  font-weight:800;
  color:#0b8aa5;
  letter-spacing:-0.5px;
}

.home-contact-info .section-heading p{
  font-size:18px;
  color:#64748b;
}

.contact-info-grid {
  display: grid;
  grid-template-columns:1.2fr 0.8fr;
  gap: 34px;
  align-items: stretch;
}

.contact-map-card{
  position:relative;
  min-height:480px;
  border-radius:24px;
  overflow:hidden;
  background:#f1f5f9;

  box-shadow:
  0 30px 60px rgba(0,0,0,0.08),
  0 10px 20px rgba(0,0,0,0.05);

  border:1px solid rgba(0,0,0,0.04);
}

.contact-map-card iframe{
  width:100%;
  height:100%;
  min-height:480px;
  border:0;
  display:block;
  filter:contrast(1.02) saturate(1.02);
}

.contact-map-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:24px;
  pointer-events:none;

  box-shadow:inset 0 0 0 1px rgba(255,255,255,0.4);
}

.contact-info-card {
  background: #0b8aa5;
  color: #ffffff;
  border-radius: 22px;
  padding: 30px 34px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.contact-info-logo {
  margin-bottom: 28px;
}

.contact-info-logo img {
  max-height: 56px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.contact-info-list {
  display: grid;
  gap: 20px;
}

.contact-info-item {
  display: grid;
  grid-template-columns:24px 1fr;
  gap:12px;
  align-items: start;
}

.contact-info-icon{
  width:22px;
  height:22px;
  color:#ff9d1e;
}

.contact-info-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-info-item h3 {
  margin: 0 0 6px;
  font-size:18px;
  font-weight:700;
  line-height: 1.2;
  color: #ffffff;
}

.contact-info-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
}

.contact-social-block {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.contact-social-block h3 {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-social-links a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s ease;
}

.contact-social-links a:hover {
  background: #ffffff;
  color: #0b8aa5;
}

@media (max-width: 1100px) {
  .home-contact-info .section-heading h2 {
    font-size: 46px;
  }

  .home-contact-info .section-heading p {
    font-size: 20px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-card,
  .contact-map-card iframe {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .home-contact-info {
    padding: 64px 0;
  }

  .home-contact-info .section-heading {
    margin-bottom: 28px;
  }

  .home-contact-info .section-heading h2 {
    font-size: 34px;
  }

  .home-contact-info .section-heading p {
    font-size: 17px;
    line-height: 1.5;
  }

  .contact-info-card {
    padding: 24px;
  }

  .contact-info-item {
    grid-template-columns: 28px 1fr;
    gap: 12px;
  }

  .contact-info-icon {
    width: 24px;
    height: 24px;
  }

  .contact-info-item h3 {
    font-size: 18px;
  }

  .contact-info-item p {
    font-size: 15px;
  }

  .contact-social-links a {
    width: 40px;
    height: 40px;
  }
}

/* =========================
   HOME - NEWSLETTER
========================= */

.home-newsletter {
  padding: 88px 0;
  background: #0b8aa5;
  color: #ffffff;
}

.newsletter-box {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-intro {
  margin-bottom: 34px;
}

.newsletter-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  color: #f2c55c;
}

.newsletter-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.newsletter-intro h2 {
  margin: 0 0 14px;
  font-size: 48px;
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.newsletter-intro p {
  margin: 0 auto;
  max-width: 760px;
  font-size: 22px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 0;
  height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 15px;
  outline: none;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.65);
}

.newsletter-form input[type="email"]:focus {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}

.newsletter-form button {
  min-width: 170px;
  height: 54px;
  padding: 0 24px;
  border: none;
  border-radius: 12px;
  background: #f2c55c;
  color: #0f172a;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.newsletter-note {
  margin: 16px 0 0;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.newsletter-stats {
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.newsletter-stat {
  text-align: center;
}

.newsletter-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  color: #f2c55c;
}

.newsletter-stat span {
  display: block;
  font-size: 16px;
  color: rgba(255,255,255,0.82);
}

@media (max-width: 768px) {
  .home-newsletter {
    padding: 64px 0;
  }

  .newsletter-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
  }

  .newsletter-intro h2 {
    font-size: 34px;
  }

  .newsletter-intro p {
    font-size: 17px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
  }

  .newsletter-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .newsletter-stat strong {
    font-size: 32px;
  }
}

/* =========================
   HOME - COMPANY VERIFICATION
========================= */

.home-company-verification{
  padding:48px 0;
  background:#f8fafc;
  border-top:1px solid #e5e7eb;
}

.company-verification-wrapper{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:40px;
}

@media(min-width:992px){
.company-verification-wrapper{
flex-direction:row;
gap:80px;
}
}

.company-certificates{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
  justify-content:center;
}

.certificate-card{
  background:white;
  padding:16px 22px;
  border-radius:10px;

  box-shadow:
  0 8px 20px rgba(0,0,0,0.06);

  display:flex;
  align-items:center;
  justify-content:center;
}

.certificate-card img{
  height:48px;
  width:auto;
}

.company-afip{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.afip-card{
  background:white;
  padding:14px;
  border-radius:10px;

  box-shadow:
  0 8px 20px rgba(0,0,0,0.06);
}

.afip-card img{
  width:96px;
  height:auto;
}

.company-afip p{
  font-size:14px;
  color:#64748b;
  font-weight:600;
}