/* ==================== FUENTES ==================== */
@font-face {
  font-family: 'DIN Pro';
  src: url('../fonts/DINPRO-REGULAR.OTF') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'DIN Pro';
  src: url('../fonts/DINPRO-MEDIUM.OTF') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'DIN Pro';
  src: url('../fonts/DINPRO-BOLD.OTF') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'DIN Pro';
  src: url('../fonts/DINPRO-BLACK.OTF') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Museo Sans';
  src: url('../fonts/FONNTS.COM-MUSEO_SANS.OTF') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Museo Sans';
  src: url('../fonts/FONNTS.COM-MUSEO_SANS_300_ITALIC.OTF') format('opentype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HELR45W.TTF') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HELR46W.TTF') format('truetype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HELR65W.TTF') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HELR66W.TTF') format('truetype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HELR67W.TTF') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HELR68W.TTF') format('truetype');
  font-weight: 700;
  font-style: italic;
}

/* ==================== BASE ==================== */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Museo Sans', 'DIN Pro', system-ui, sans-serif;
  margin: 0;
  padding: 0;
}

/* ==================== BORDE ROJO SUPERIOR ==================== */
.top-red-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  background: #c8102e;
  z-index: 2000;
}

/* ==================== ÁREA DERECHA SUPERIOR ==================== */
.top-right-wrapper {
  position: fixed;
  top: 7px;
  right: 0;
  z-index: 1050;
  display: flex;
  align-items: stretch;
  gap: 0;
  bottom: auto;
}


.area-cliente-box {
  /* background: #c8102e; */
  /* min-width: 200px; */
  position: relative;
  /* display: flex;
  flex-direction: column;
  justify-content: center; */
  /* height: 115px; */
}

.btn-area-cliente {
  display: flex;
  align-items: center;
  background: #c8102e;
  color: #fff;
  padding: 8px 20px;
  font-family: 'DIN Pro', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: auto;
}

.btn-area-cliente:hover {
  background: #c40011;
  color: #fff;
}

.btn-area-cliente .arrow-icon {
  font-size: 0.6rem;
  margin-right: 10px;
}

.submenu-links {
  padding: 8px 0 12px;
  background: #e30613;
}

.submenu-links a {
  display: block;
  padding: 4px 20px;
  color: #fff;
  font-family: 'DIN Pro', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.submenu-links a:hover {
  text-decoration: underline;
}

/* Hamburger/CONTATO Button */
.hamburger-wrapper {
  background: #ccc;
  display: none; /* Oculto en pantallas > 900px */
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  height: 115px;
}

.hamburger-wrapper:hover {
  background: #f5f5f5;
}

.hamburger-label {
  color: #1a1a1a;
  font-family: 'DIN Pro', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: none;
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: 35px;
  height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 4px;
  background: #1a1a1a;
  border-radius: 0;
  transition: all 0.3s;
}

/* ==================== HEADER ==================== */
.top-header {
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 5px;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 15px 0;
}

.top-header .container-fluid {
  padding-right: 320px; /* Espacio para área cliente + hamburger */
}

.main-nav {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  margin-left: 3rem;
  padding-bottom: 5px;
}

.flags-header {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-left: 1.5rem;
  padding-bottom: 8px;
}

.flags-header .flag-icon {
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.2s;
}

.flags-header .flag-icon:hover {
  transform: scale(1.1);
}

.top-header .nav-link {
  font-family: 'DIN Pro', sans-serif;
  font-weight: bold;
  color: #1a1a1a;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
}

.top-header .nav-link:hover,
.top-header .nav-link--active {
  color: #e30613;
}

/* Triángulo animado */
.main-nav {
  position: relative;
}

.nav-indicator {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #e30613;
  transition: transform 0.3s ease, left 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  opacity: 0;
}

.nav-indicator.visible {
  opacity: 1;
}

/* Flags */
.flag-icon {
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.2s;
}

.flag-icon:hover {
  transform: scale(1.1);
}

/* Mobile nav */
.mobile-nav {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 0.5rem 1rem 1rem;
  position: absolute;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  /* Efecto slide drawer desde arriba */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.3s ease, padding 0.3s ease;
  padding-top: 0;
  padding-bottom: 0;
}

.mobile-nav.active {
  max-height: 400px;
  opacity: 1;
  transform: translateY(0);
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

.mobile-nav a {
  padding: 0.5rem 0;
  color: #1a1a1a;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'DIN Pro', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
}

.mobile-nav a:hover {
  color: #e30613;
}

.mobile-nav hr {
  margin: 0.5rem 0;
  border-color: #eee;
}

.mobile-nav-ingresar {
  background: #c8102e;
  color: #fff !important;
  padding: 0.75rem 1rem !important;
  margin-top: 0.5rem;
  border-radius: 4px;
  text-align: center;
}

.mobile-nav-ingresar:hover {
  background: #a00d24;
  color: #fff !important;
}

/* ==================== HERO ==================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #e8ecf0;
  background-image: url('../img/fondo_general_grande.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 3rem;
}

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

.hero-title {
  font-family: 'DIN Pro', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  font-style: normal;
  transform: skewX(-8deg);
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1.15;
  margin: 0;
  display: flex;
  align-items: flex-start;
  padding-left: 13px;
}

.hero-slashes {
  color: #e85d04;
  font-style: italic;
  font-weight: 300;
  margin-right: 8px;
  flex-shrink: 0;
  font-size: 1em;
  display: inline-block;
  letter-spacing: -2px;
}

.hero-title-text {
  display: inline;
  padding-left:10px;
}

.hero-subtitle {
  font-family: 'DIN Pro', sans-serif;
  font-size: 1.8rem;
  color: #666;
  font-style: italic;
  font-weight: 600;
  margin: -5px 0 0 0;
  padding-left: 35px;
  letter-spacing: 0.3px;
}

/* ==================== PRODUCTS ==================== */
.products-section {
  background: #e30613;
  padding: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.product-card {
  background: #e30613;
  color: #fff;
  padding: 2.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s;
  min-height: 230px;
  border: none;
  position: relative;
}

.product-card::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.product-card:last-child::after {
  display: none;
}

.product-card:hover {
  background: #c40011;
  color: #fff;
}

.product-card--active {
  background: #fff;
  color: #e30613;
  border-radius: 8px 8px 0 0;
  margin-top: -12px;
  padding-top: calc(2.5rem + 12px);
}

.product-card--active::after {
  display: none;
}

.product-card--active:hover {
  background: #fff;
  color: #c40011;
}

.product-icon-wrapper {
  margin-bottom: 1rem;
  width: 80px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon {
  max-height: 65px;
  max-width: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.product-card--active .product-icon {
  filter: invert(16%) sepia(95%) saturate(6932%) hue-rotate(355deg) brightness(89%) contrast(101%);
}

.product-title {
  margin: 0;
  font-family: 'DIN Pro', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* ==================== SOBRE SECTION ==================== */
.sobre-section {
  padding: 80px 0;
  background-image: url('../img/sobre_fondo.png');
  background-size: cover;
  background-position: center;
  background-color: #f5f5f5;
}

.sobre-content-left {
  padding-right: 2rem;
}

.sobre-content-right {
  padding: 0;
  min-height: 100%;
}

.sobre-right-bg {
  padding: 0;
  margin-bottom: 1rem;
}

.sobre-block {
  margin-bottom: 2rem;
}


.sobre-title {
  font-family: 'DIN Pro', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  font-style: normal;
  transform: skewX(-8deg);
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1.15;
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
}


.sobre-title .double-slash {
  margin-right: 10px;
  height: 28px;
  top: 0;
}

.sobre-title .double-slash::before,
.sobre-title .double-slash::after {
  height: 28px;
  top: 0;
}

.double-slash-white::before,
.double-slash-white::after {
  background: #cc0000 !important;
}

.sobre-title-text {
  display: inline;
}

.sobre-subtitle {
  font-family: 'DIN Pro', sans-serif;
  font-size: 1.5rem;
  color: #666;
  font-style: italic;
  font-weight: 500;
  margin: 0 0 1.5rem 0;
  padding-left: 35px;
}

.sobre-text {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: justify;
}

.sobre-text strong {
  color: #1a1a1a;
}


/* Iconos de sobre */
.sobre-icons {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  justify-content: flex-start;
}

.sobre-icon-item {
  width: 80px;
  height: 80px;
  border: 2px solid #e30613;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: #fff;
}

.sobre-icon-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Imagen principal */
.sobre-image-main {
  margin-bottom: 2rem;
}

.sobre-image-main img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

/* Imagen vehículos */
.sobre-vehiculos {
  margin-top: 2rem;
}

.sobre-vehiculos img {
  width: 100%;
  height: auto;
}

/* Responsive sobre */
@media (max-width: 991.98px) {
  .sobre-content-left {
    padding-right: 0;
    margin-bottom: 2rem;
  }

.sobre-content-right {
    padding: 0;
  }

  .sobre-icons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .sobre-icon-item {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 575.98px) {
  .sobre-section {
    padding: 40px 0;
  }

  .sobre-title {
    font-size: 1.5rem;
  }

  .sobre-subtitle {
    font-size: 1.2rem;
    padding-left: 25px;
  }

  .sobre-icon-item {
    width: 60px;
    height: 60px;
    padding: 8px;
  }
}

/* ==================== PRODUTOS SECTION (TABS) ==================== */
.produtos-section {
  padding: 80px 0;
  background-color: #f5f5f5;
  background-image: url('../img/sol_fondo_general.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.produtos-header {
  margin-bottom: 2rem;
}

.produtos-title {
  font-family: 'DIN Pro', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  font-style: normal;
  transform: skewX(-8deg);
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1.15;
  margin: 0 0 -0.3rem 0;
  display: flex;
  align-items: center;
}

.produtos-title .double-slash {
  margin-right: 10px;
  height: 35px;
  top: 0;
}

.produtos-title .double-slash::before,
.produtos-title .double-slash::after {
  height: 35px;
  top: 0;
}

.produtos-title-text {
  display: inline;
}

.produtos-subtitle {
  font-family: 'DIN Pro', sans-serif;
  font-size: 1.8rem;
  color: #666;
  font-style: italic;
  font-weight: 500;
  margin: 0;
  padding-left: 35px;
}

/* Tabs Produtos */
.produtos-tabs {
  margin-bottom: 2.5rem;
  border-bottom: 3px solid #ddd;
}

.produtos-tabs-nav {
  display: flex;
  position: relative;
  justify-content: center;
  gap: 3rem;
}

.produtos-tab {
  font-family: 'DIN Pro', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  color: #1a1a1a;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1rem 0;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.produtos-tab:hover {
  color: #e30613;
}

.produtos-tab--active {
  color: #e30613;
}

.produtos-tab--active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #e30613;
}

/* Panel contenido */
.produtos-content {
  min-height: 450px;
}

.produtos-panel {
  display: none;
}

.produtos-panel--active {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* Lista de productos */
.produtos-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.produtos-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
}

.produtos-list .list-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.produtos-list .list-content strong {
  font-family: 'DIN Pro', sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
  color: #1a1a1a;
}

.produtos-list .list-content span {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
}

/* Imagen productos */
.produtos-image {
  text-align: center;
}

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

/* Responsive Produtos */
@media (max-width: 991.98px) {
  .produtos-section {
    padding: 50px 0;
  }

  .produtos-title {
    font-size: 2rem;
  }

  .produtos-subtitle {
    font-size: 1.2rem;
    padding-left: 30px;
  }

  .produtos-tabs-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .produtos-tab {
    padding: 0.5rem 0;
    font-size: 0.85rem;
  }

  .produtos-content {
    min-height: auto;
  }

  .produtos-image {
    margin-top: 2rem;
  }

  /* Invertir orden en temperatura para mobile */
  [data-panel="temperatura"] .row {
    flex-direction: column-reverse;
  }

  [data-panel="temperatura"] .produtos-image {
    margin-top: 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  .produtos-tabs-nav {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .produtos-tab {
    font-size: 0.8rem;
  }
}

/* ==================== SOLUÇÕES SECTION ==================== */
.solucoes-section {
  padding: 80px 0;
  background-color: #f5f5f5;
  background-image: url('../img/sol_fondo_general.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.solucoes-header {
  margin-bottom: 2rem;
}

.solucoes-title {
  font-family: 'DIN Pro', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  font-style: normal;
  transform: skewX(-8deg);
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1.15;
  margin: 0 0 -0.3rem 0;
  display: flex;
  align-items: center;
}

.solucoes-title .double-slash {
  margin-right: 10px;
  height: 35px;
  top: 0;
}

.solucoes-title .double-slash::before,
.solucoes-title .double-slash::after {
  height: 35px;
  top: 0;
}

.solucoes-title-text {
  display: inline;
}

.solucoes-subtitle {
  font-family: 'DIN Pro', sans-serif;
  font-size: 1.8rem;
  color: #666;
  font-style: italic;
  font-weight: 500;
  margin: 0;
  padding-left: 0px;
}

/* Tabs */
.solucoes-tabs {
  margin-bottom: 2.5rem;
  border-bottom: 3px solid #ddd;
}

.solucoes-tabs-nav {
  display: flex;
  position: relative;
  justify-content: space-between;
  width: 100%;
}

.solucoes-tab {
  font-family: 'DIN Pro', sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
  color: #1a1a1a;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1rem 0;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.solucoes-tab:first-child {
  text-align: left;
}

.solucoes-tab:last-child {
  text-align: right;
}

.solucoes-tab:hover {
  color: #e30613;
}

.solucoes-tab--active {
  color: #e30613;
}

/* Triángulo indicador de tabs */
.solucoes-tab-indicator {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #e30613;
  transition: left 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

@media (max-width: 900px) {
  .solucoes-tab-indicator {
    display: none;
  }
}

/* Contenido de tabs */
.solucoes-content {
  min-height: 400px;
}

.solucoes-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.solucoes-panel--active {
  display: block;
}

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

/* Lista de características */
.solucoes-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.solucoes-list li {
  font-family: 'DIN Pro', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1a1a;
  text-transform: uppercase;
  padding: 0.6rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Lista de tecnología con viñetas rojas a la derecha */
.tecnologia-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.tecnologia-list li {
  font-family: 'DIN Pro', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  color: #1a1a1a;
  text-transform: uppercase;
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  gap: 0.5rem;
}

.dash-icon {
  display: inline-block;
  width: 8px;
  height: 4px;
  background: #e30613;
  border-radius: 0;
  flex-shrink: 0;
}

/* CTA sin italic para tecnología */
.solucoes-cta .cta-highlight {
  font-weight: 700;
  font-style: normal;
}

/* Lista detallada para RASTCAM */
.solucoes-list--detailed li {
  align-items: flex-start;
  padding: 0.8rem 0;
}

.solucoes-list--detailed .check-icon {
  margin-top: 0.15rem;
}

.solucoes-list--detailed .list-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.solucoes-list--detailed .list-content strong {
  font-family: 'DIN Pro', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  color: #1a1a1a;
  text-transform: uppercase;
}

.solucoes-list--detailed .list-content span {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: #555;
  text-transform: none;
  line-height: 1.4;
}

/* Descripción RASTCAM */
.rastcam-description {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
  margin: 1.5rem 0;
  padding-left: 42px;
}

/* CTA RASTCAM alineado */
[data-panel="rastcam"] .solucoes-cta {
  margin-left: 42px;
}

/* BENEFÍCIOS - Caja roja */
.beneficios-box {
  background: #e30613;
  border-radius: 12px;
  padding: 2rem 2.5rem;
}

.beneficios-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.beneficios-list li {
  font-family: 'DIN Pro', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  text-transform: uppercase;
  padding: 0.6rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check-icon-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.check-icon-white i {
  line-height: 1;
}

/* DIFERENCIAIS - Grid de tarjetas */
[data-panel="diferenciais"] {
  overflow: hidden;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  padding: 4rem 3rem;
  background-image: url('../img/diferencias_img_atras_cards.png');
  background-size: 110% auto;
  background-position: right center;
  background-repeat: no-repeat;
}

.diferencial-card {
  background: #fff;
  border-radius: 8px;
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.diferencial-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.diferencial-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.diferencial-arrow {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #e30613;
  margin: 0.5rem 0 1rem;
}

.diferencial-title {
  font-family: 'DIN Pro', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  color: #1a1a1a;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
}

/* Responsive diferenciais */
@media (max-width: 991.98px) {
  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .diferenciais-grid {
    grid-template-columns: 1fr;
  }

  .diferencial-card {
    padding: 2rem 1rem 1.5rem;
  }

  .diferencial-icon {
    width: 100px;
    height: 100px;
  }
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: transparent;
  color: #e30613;
  border: 2px solid #e30613;
  border-radius: 50%;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.check-icon i {
  line-height: 1;
}

/* CTA */
.solucoes-cta {
  background: #e30613;
  color: #fff;
  padding: 0.6rem 2.5rem;
  border-radius: 8px;
  font-family: 'DIN Pro', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  display: inline-block;
}

.cta-highlight {
  font-weight: 700;
  font-style: italic;
}

/* Highlight text con barra roja */
.solucoes-highlight {
  margin-top: 1.5rem;
}

.solucoes-highlight p {
  font-family: 'DIN Pro', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #e30613;
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.highlight-bar {
  display: inline-block;
  width: 3px;
  min-width: 3px;
  height: 1.2em;
  background: #e30613;
  margin-top: 0.15em;
}

.highlight-bar + .highlight-bar {
  margin-left: -0.20rem;
}

/* Imagen */
.solucoes-image {
  text-align: center;
}

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

/* Panel titles */
.panel-title {
  font-family: 'DIN Pro', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.panel-text {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Responsive soluções */
@media (max-width: 991.98px) {
  .solucoes-tab {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }

  .solucoes-subtitle {
    font-size: 1.4rem;
    padding-left: 35px;
  }
}

@media (max-width: 767.98px) {
  .solucoes-section {
    padding: 50px 0;
  }

  .solucoes-title {
    font-size: 2rem;
  }

  .solucoes-subtitle {
    font-size: 1.2rem;
    padding-left: 30px;
  }

  .solucoes-tabs-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .solucoes-tab {
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
  }

  .solucoes-list li {
    font-size: 0.85rem;
  }

  .solucoes-content {
    min-height: auto;
  }
}

/* ==================== GENERAL SECTIONS ==================== */
section {
  scroll-margin-top: 80px;
}

/* ==================== LARGE SCREENS (>1400px) ==================== */
@media (min-width: 1400px) {
  .product-card {
    min-height: 280px;
    padding: 3rem 1.5rem;
  }

  .product-icon-wrapper {
    width: 90px;
    height: 75px;
  }

  .product-icon {
    max-height: 75px;
    max-width: 90px;
  }

  .product-title {
    font-size: 1.1rem;
  }
}

/* ==================== CONTATO ==================== */
/* Mapa */
.contato-mapa {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
}

.contato-mapa img {
  /* width: 100%;
  height: 100%;
  object-fit: cover;
  */
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.mapa-red-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: #e30613;
}

/* Sección Contato */
.contato-section {
  position: relative;
  background-color: #f5f5f5;
  background-image: url('../img/sol_fondo_general.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0;
  overflow: hidden;
}

.contato-bg-pattern {
  display: none;
}

.contato-section .container {
  position: relative;
  z-index: 1;
}

/* Título */
.contato-title {
  font-family: 'DIN Pro', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  font-style: normal;
  transform: skewX(-8deg);
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1.15;
  margin: 0 0 -0.3rem 0;
  display: flex;
  align-items: center;
}

.contato-title .double-slash {
  margin-right: 10px;
  height: 35px;
  top: 0;
}

.contato-title .double-slash::before,
.contato-title .double-slash::after {
  height: 35px;
  top: 0;
}

.contato-title-text {
  display: inline;
}

.contato-subtitle {
  font-family: 'DIN Pro', sans-serif;
  font-size: 1.8rem;
  color: #666;
  font-style: italic;
  font-weight: 500;
  margin: 0 0 1.5rem 0;
  padding-left: 0;
}

/* Formulario */
.contato-form-wrapper {
  padding-right: 2rem;
  max-width: 520px;
}

.contato-form .form-group {
  margin-bottom: 0.75rem;
}

.contato-form .form-row {
  display: flex;
  gap: 0.75rem;
}

.contato-form .form-group-half {
  flex: 1;
}

.contato-form .form-control {
  border: 1px solid #b0b0b0;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  color: #333;
  background: #fff;
  transition: border-color 0.3s ease;
  width: 100%;
}

.contato-form .form-control::placeholder {
  color: #888;
}

.contato-form .form-control:focus {
  outline: none;
  border-color: #e30613;
  box-shadow: none;
}

.contato-form textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

/* Botón Enviar */
.btn-enviar {
  display: inline-block;
  background: #fff;
  color: #e30613;
  border: 2px solid #e30613;
  border-radius: 25px;
  padding: 0.75rem 3rem;
  font-family: 'DIN Pro', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-enviar:hover {
  background: #e30613;
  color: #fff;
}

/* Info Box */
.contato-info-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
  padding-top: 2rem;
  position: relative;
}

.contato-info-container {
  position: relative;
  width: 100%;
}

/* Caja de info con imagen de fondo PNG */
.contato-info-box {
  position: relative;
  padding: 5rem 3rem 2.5rem 12rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  background-image: url('../img/contacto_fondo_formas.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.contato-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.contato-info-item:last-child {
  margin-bottom: 0;
}

.contato-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contato-info-text {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.5;
}

.contato-info-text p {
  margin: 0;
}

.contato-info-text a {
  color: #fff;
  text-decoration: none;
}

.contato-info-text a:hover {
  text-decoration: underline;
}

/* Validación */
.contato-form .form-control.error {
  border-color: #e30613;
}

.contato-form label.error {
  display: block;
  color: #e30613;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Responsive Contato */
@media (max-width: 991.98px) {
  .contato-form-wrapper {
    padding-right: 0;
    margin-bottom: 3rem;
    max-width: 100%;
  }

  .contato-info-wrapper {
    justify-content: center;
    padding-top: 0;
  }

  .contato-info-container {
    max-width: 100%;
    width: 100%;
  }

  .contato-info-box {
    padding: 2rem 2rem 2rem 8rem;
    margin-right: 0;
    background-size: 100% 100%;
  }
}

@media (max-width: 1200px) {
  .contato-mapa {
    height: 400px;
  }
}

@media (max-width: 575.98px) {
  .contato-mapa {
    height: 250px;
  }

  .contato-title-text {
    font-size: 2rem;
  }

  .contato-form .form-row {
    flex-direction: column;
    gap: 0;
  }

  .contato-info-box {
    padding: 2.5rem 1.5rem 1.5rem 4rem;
    min-height: 240px;
  }

  .contato-info-item {
    margin-bottom: 1.3rem;
    gap: 0.5rem;
  }

  .contato-info-text {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .contato-info-text p {
    margin-bottom: 0.1rem;
  }

  .contato-icon {
    font-size: 1rem;
  }
}

/* ==================== FOOTER APP SECTION ==================== */
.footer-app-section {
  background: #e8e8e8;
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Contenido izquierdo */
.footer-left-content {
  padding: 2.5rem 2rem 2.5rem 4rem;
}

/* Logo y tagline */
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-logo {
  height: 55px;
  width: auto;
}

.footer-tagline {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.6rem;
  color: #e30613;
  text-transform: uppercase;
  line-height: 1.3;
  max-width: 120px;
  padding-top: 0.3rem;
  font-weight: 500;
}

/* Menú footer */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
}

.footer-nav a::before {
  content: '- ';
}

.footer-nav a {
  font-family: 'DIN Pro', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #1a1a1a;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #e30613;
}

/* Banderas */
.footer-flags {
  display: flex;
  gap: 0.5rem;
}

.footer-flag {
  height: 24px;
  width: auto;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.footer-flag:hover {
  transform: scale(1.15);
}

/* Contenido derecho - App y celular */
.footer-right-content {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 400px;
}

/* Wrapper para caja App con forma roja */
.footer-app-wrapper {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

/* Forma roja diagonal detrás de la caja */
.footer-app-shape {
  position: absolute;
  top: -30px;
  left: -60px;
  width: 160px;
  height: calc(100% + 60px);
  background: #e30613;
  border-radius: 20px;
  transform: skewX(-8deg);
  z-index: -1;
}

/* Caja App */
.footer-app-box {
  background: #fff;
  border: 3px solid #e30613;
  border-radius: 20px;
  padding: 1.5rem 2.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-app-title {
  font-family: 'DIN Pro', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #1a1a1a;
  text-transform: uppercase;
  margin: 0 0 0.25rem 0;
}

.footer-app-arrow {
  color: #e30613;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.footer-app-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.app-store-btn {
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.app-store-btn img {
  height: 38px;
  width: auto;
}

.app-store-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Imagen celular */
.footer-phone-image {
  position: relative;
  z-index: 1;
  margin-left: auto;
  padding-right: 2rem;
}

.footer-phone-image img {
  max-width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
}

/* Botones invisibles sobre la imagen */
.invisible-btn {
  position: absolute;
  display: block;
  cursor: pointer;
  border: none;
  background: transparent;
}

/* Botón Google Play - ajustar posición según la imagen */
.invisible-btn--google {
  width: 12%;
  height: 6%;
  top: 58%;
  left: 8%;
}

/* Botón App Store - ajustar posición según la imagen */
.invisible-btn--apple {
  width: 12%;
  height: 6%;
  top: 58%;
  left: 21%;
}

/* Copyright */
.footer-copyright {
  background-image: url('../img/footer_fondo.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 0.75rem 2rem;
}

.footer-copyright-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-copyright-top {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-copyright-flags {
  display: flex;
  gap: 0.5rem;
}

.footer-copyright-flags img {
  height: 22px;
  width: auto;
  border-radius: 2px;
}

.footer-copyright-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  color: #fff;
}

.footer-brand-name {
  font-weight: 700;
}

.footer-brand-name sup {
  font-size: 0.6em;
}

.footer-separator {
  opacity: 0.7;
}

.footer-copyright-social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.footer-social-link:hover {
  opacity: 0.85;
  color: #fff;
}

.footer-social-link i {
  font-size: 1.1rem;
}

.footer-social-instagram {
  background: transparent;
}

.footer-social-whatsapp {
  background: transparent;
}

/* Responsive Copyright - Mobile (< 900px) */
@media (max-width: 899.98px) {
  .footer-copyright {
    background-image: none;
    padding: 0;
  }

  .footer-copyright-content {
    flex-direction: column;
    gap: 0;
  }

  /* Fila superior: banderas + texto - fondo rojo oscuro */
  .footer-copyright-top {
    background: #8B0000;
    width: 100%;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-copyright-flags {
    justify-content: center;
  }

  .footer-copyright-text {
    margin-left: 0;
    flex-direction: column;
    gap: 0.15rem;
    text-align: center;
  }

  .footer-separator {
    display: none;
  }

  /* Instagram - fondo rojo claro */
  .footer-social-instagram {
    background: #e30613;
    width: 100%;
    padding: 0.6rem 1rem;
    justify-content: center;
  }

  /* WhatsApp - fondo verde */
  .footer-social-whatsapp {
    background: #25D366;
    width: 100%;
    padding: 0.6rem 1rem;
    justify-content: center;
  }

  .footer-copyright-social {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
}

/* Responsive Footer */
@media (max-width: 991.98px) {
  .footer-left-content {
    padding: 2rem;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-flags {
    justify-content: center;
  }

  .footer-right-content {
    flex-direction: column;
    min-height: auto;
    padding: 2rem;
  }

  .footer-app-wrapper {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin-bottom: 2rem;
  }

  .footer-app-shape {
    display: none;
  }

  .footer-phone-image {
    margin: 0 auto;
    padding-right: 0;
  }

  .footer-phone-image img {
    max-height: 300px;
  }
}

@media (max-width: 575.98px) {
  .footer-left-content {
    padding: 1.5rem;
  }

  .footer-app-title {
    font-size: 1.5rem;
  }

  .footer-app-box {
    padding: 1.25rem 1.5rem;
  }

  .app-store-btn img {
    height: 32px;
  }

  .footer-phone-image img {
    max-height: 220px;
  }
}

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

  .product-card {
    padding: 2rem 0.75rem;
  }

  .product-title {
    font-size: 0.75rem;
  }

  .area-cliente-wrapper {
    right: 20px;
  }
}

@media (max-width: 991.98px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-card--active {
    margin-top: 0;
    padding-top: 2.5rem;
    border-radius: 0;
  }

  .top-header .container-fluid {
    padding-right: 15px;
  }

  .main-nav {
    display: none !important;
  }

  .flags-header {
    display: none !important;
  }

  .submenu-links a {
    padding: 6px 15px;
    font-size: 0.7rem;
  }
}

/* Responsive < 900px - Mostrar hamburguesa, ocultar área cliente */
@media (max-width: 900px) {
  .hamburger-wrapper {
    display: flex;
    background: #fff;
    height: 50px;
    width: 50px;
    padding: 0;
    border-radius: 4px;
    /* margin: auto 15px; */
    margin-top:40px;
    margin-right:15px;
  }

  .hamburger-btn {
    gap: 6px;
    width: 24px;
  }

  .hamburger-btn span {
    height: 2px;
  }

  .area-cliente-box {
    display: none;
  }

  .top-right-wrapper {
    height: auto;
    align-items: center;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: auto;
    padding: 120px 0 60px;
    background-position: center center;
  }

  .hero-content {
    text-align: left;
    max-width: 100%;
  }

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

  .hero-subtitle {
    padding-left: 30px;
    font-size: 1.1rem;
  }

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

  .product-card::after {
    top: auto;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    width: auto;
  }

  .top-right-wrapper {
    height: 60px;
  }

  .hamburger-wrapper {
    padding: 0 15px;
  }

  .hamburger-btn {
    width: 24px;
    gap: 5px;
  }

  .hamburger-btn span {
    height: 3px;
  }

  .flags-header {
    display: none;
  }

  .area-cliente-box {
    min-width: 160px;
  }

  .btn-area-cliente {
    padding: 10px 15px;
    font-size: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .product-card {
    padding: 1.5rem 0.5rem;
    min-height: 150px;
  }

  .product-icon {
    height: 40px;
  }

  .product-title {
    font-size: 0.7rem;
  }

  .top-right-wrapper {
    height: 55px;
  }


  .area-cliente-box {
    min-width: 130px;
  }

  .btn-area-cliente {
    padding: 8px 10px;
    font-size: 0.65rem;
    height: 35px;
  }

  .submenu-links {
    padding: 5px 0 8px;
  }

  .submenu-links a {
    padding: 3px 10px;
    font-size: 0.6rem;
  }

  .hamburger-wrapper {
    padding: 0 12px;
  }

  .hamburger-btn {
    width: 22px;
    gap: 4px;
  }

  .hamburger-btn span {
    height: 2px;
  }
}


/* base: mobile */

@media (min-width: 900px) {
  /* desktop */
}

@media (min-width: 900px) and (max-width: 1300px) {
  /* rango específico */
  .marginFooterInstagram {
    margin-right: 100px;
  }

  .marginFooterWhatsapp {
    margin-right:20px;
  }
}

@media (min-width: 1301px) and (max-width: 2000px) {
  /* rango específico */
  .marginFooterInstagram {
    margin-right: 200px;
  }

  .marginFooterWhatsapp {
    margin-right:-125px;
  }
}