/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
  --text-color: #232323;
  --text-color-sec: #333;
  --text-color-slide: white;
  --text-color-cartilla: white;
  --primario: #0B497E;
  --primario-rgb: 17, 112, 183;
  --secundario: #444;
  --dark: #183864;
  --muted: #6c757d;
  --accent: #198754;
  --bg: #EDEDED;
  --bg-card: #FAFAFA;
  /* Escalas de encabezados en rem */
  --h1-size: 4.5rem;
  --h2-size: 4rem;
  --h3-size: 2.4rem;
  --h4-size: 2rem;
  --h5-size: 1.6rem;
  --h6-size: 1.4rem;
  --p-size: 1.8rem;
  --boton-size: 1.6rem;
  /* ####################### */
  --size-titulo-desktop: 3.5rem;
  --size-titulo-movil: 2.5rem;
  --size-texto-desktop: 1.8rem;
  --size-texto-movil: 1.6rem;
  --size-titulo-cartilla-desktop: 2.5rem;
  --size-titulo-cartilla-movil: 2.2rem;
  --size-texto-cartilla-desktop: 1.7rem;
  --size-texto-cartilla-movil: 1.6rem;
  --weight-titulo-desktop: 500;
  --weight-titulo-movil: 500;
  --weight-texto-desktop: 400;
  --weight-texto-movil: 100;
/*  */
  --size-titulo-producto: 4rem;
  --size-desc-corta-producto: 2rem;
  --size-etiqueta-producto: 1.5rem;
  --size-desc-producto: 1.7rem;
  --size-boton-producto: 1.5rem;
/* 	 */
  --size-titulo-producto-movil: 3.5rem;
  --size-desc-corta-producto-movil: 1.8rem;
  --size-desc-producto-movil: 1.6rem;
/* 	 */
  --container-max: 1200px;
  --radius:12px;
  --vh: 1vh;              /* fallback, actualizado por JS */
  --header-height: 1.4rem;/* fallback visual razonable */
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}
body {
  background:var(--bg);
  color: #222;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

body, * {
  font-family: "Roboto", sans-serif;
}

a {
  color:var(--primary);
  text-decoration:none;
}

img {
  max-width:100%;
  display:block;
}

/* ======== NAVBAR FLOTANTE ======== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
}

.wrapper-menu {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px; 
}

/* Logo */
.logo img {
  height: 45px;
  width: auto;
}

/* ======== MENU ESCRITORIO ======== */
.navbar ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  position: relative;
}

.navbar ul li a {
  display: block;
  padding: 1rem 2rem;
  text-decoration: none;
  color: white;
  font-size: 2rem;
  border-radius: 0.5rem;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  background: var(--primario);
}

/* ======== SUBMENÚ ======== */
.navbar ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 0.5rem;
  min-width: 200px;
}

.navbar ul li:hover ul {
  display: block;
}

.navbar ul li ul li {
	width: 100%
}

.navbar ul li ul li a {
  color: white;
}

.navbar ul li ul li a:hover {
  color: white;
}

/* --- SCROLLED (al hacer scroll o abrir menú) --- */

/* cambia color de fondo del submenú */
.wrapper-menu.scrolled #menu > li > a.active,
.wrapper-menu.scrolled #menu > li:hover > a {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.wrapper-menu.scrolled #menu ul {
  background: #f7f7f7;
}

.wrapper-menu.scrolled #menu ul li a:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */

/* Chevron dentro del link */
.chevron-productos {
    font-size: 2rem;
    margin-left: .5rem;
    transition: transform .3s ease, color .2s ease;
	color: inherit;
}

/* ESCRITORIO — solo decorativo */
@media (min-width: 769px) {
    .chevron-productos {
        pointer-events: none; /* No se puede hacer clic */
    }
}

/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */


/* =======================
     MENÚ MÓVIL
======================= */
.hamburger {
  display: none;
  font-size: 3rem;
  cursor: pointer;
  color: white;
  z-index: 2200;
  transition: color .25s ease;
}

/* Structure mobile */
@media (max-width: 768px) {

	.logo img {
	  height: 35px;
	}
	
  .hamburger {
    display: block;
  }

  #menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding-top: 7rem;
    transition: right 0.32s cubic-bezier(.2,.9,.2,1);
    overflow-y: auto;
  }

  #menu.active {
    right: 0;
  }

  #menu li a {
    padding: 1.2rem 2rem;
    font-size: 1.8rem;
  }
	
  #menu > li > a {
    color: var(--primario) !important;
	font-weight: 500;
  }

  /* Chevron toggle */
  .productos-item {
/*     display: flex;
    flex-direction: column; */
    position: relative;
  }
	
    .productos-item + li {
        margin-top: 20rem;
    }

    .productos-link {
        position: relative;
        padding-right: 4rem !important;
    }

    .chevron-productos {
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
		pointer-events: auto;
		display: none;
    }

  /* Ocultar submenu por defecto */
  .submenu-productos {
/*     display: none; */
	display: flex !important;
    flex-direction: column;
    background: #f4f4f4;
	  width: 100%;
  }
	
	#menu .submenu-productos li a {
		margin-left: 2rem;
		font-size: 1.7rem;
	}

/*   .submenu-productos.open {
    display: flex;
  } */
	
    /* Chevron rotado cuando está abierto */
    .chevron-productos.rotate {
        transform: translateY(-50%) rotate(180deg);
    }
}

/*############################################
############/* SLIDER PRINCIPAL /*############
############################################*/
.slider-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-wrapper .slider-item {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: 0% center;
  z-index: 1;
}

.slider-wrapper .slider-item::after {
  position: absolute;
  content: "";
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.slider-wrapper .slider-item .slide-content {
  position: relative;
  color: var(--text-color);
  width: 100%;
  padding: 0 10rem 0;
  max-width: 90rem;
  z-index: 3;
/*   background: yellowgreen; */
}

.slider-item .slide-content .slide-title {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: var(--text-color-slide);
}

.slider-item .slide-content .slide-subtitle {
  font-size: 3rem;
  color: var(--text-color-slide);
  /* font-size: calc(2.5rem + 0.3vw); */
}

.slider-item .slide-content .slide-button {
  background: var(--primario);
  color: var(--text-color-slide);
  width: 25rem;
  padding: 1rem 0;
  display: block;
  margin-top: 4.5rem;
  font-size: 1.7rem;
  font-weight: 600;
  text-align: center;
/*   letter-spacing: 1px; */
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--primario);
  transition: 0.7s ease;
  border-radius: 3rem;
}

.slider-item .slide-content .slide-button:hover {
  background: var(--secundario);
  border-color: var(--secundario);
	color: white;
}

.swiper-pagination {
  --swiper-pagination-color: var(--text-color-slide);
  --swiper-pagination-bullet-inactive-color: rgba(255,255,255,0.1);
  --swiper-pagination-bullet-inactive-opacity: 7;
}

.swiper-button-prev,
.swiper-button-next {
  --swiper-navigation-color: var(--text-color-slide);
  --swiper-navigation-size: 30px;
}

@media (max-width: 768px) {

  .slider-wrapper .slider-item .slide-content {
    padding: 0 3rem 0rem;
    max-width: 70rem;
  }

  .slider-item .slide-content .slide-title {
    font-size: 3.5rem;
    margin: 2rem 0 2rem;
  }

.slider-item .slide-content .slide-subtitle {
    font-size: 2.5rem;
  }

  .slider-item .slide-content .slide-button {
    width: 220px;
    padding: 9px 0;
    margin-top: 25px;
    font-size: 1.3rem;
    font-weight: 500;
  }

  .slider-item .slide-content .slide-description {
    font-size: 1.6rem;
  }
}

/*##############################################
#################/* PORTADA /*##################
##############################################*/
.portada {
  position: relative;
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  z-index: 0;
}

.portada::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

.portada-contenido {
  position: relative;
  max-width: 900px;
  padding: 0 20px;
  z-index: 2;
  /* background: yellowgreen; */
}

.portada-contenido h2 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.1;
  /* letter-spacing: 1px; */
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.portada-contenido p {
  font-size: 2.5rem;
}

.portada-contenido a {
  background: var(--primario);
  color: var(--text-color-slide);
  width: 25rem;
  padding: 1rem 0;
  display: block;
  margin-top: 4.5rem;
  font-size: 1.7rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--primario);
  transition: 0.7s ease;
  border-radius: 3rem;
}

.portada-contenido a:hover {
  background: var(--secundario);
  border-color: var(--secundario);
  color: white;
}

/* .portada-button {
  background: var(--primario);
  color: var(--text-color-slide);
  width: 25rem;
  padding: 1rem 0;
  display: block;
  margin-top: 4.5rem;
  font-size: 1.7rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--primario);
  transition: 0.7s ease;
  border-radius: 3rem;
}

.portada-button:hover {
  background: var(--secundario);
  border-color: var(--secundario);
  color: white;
} */

@media (max-width: 768px) {
    .portada-contenido {
        padding: 0 3rem 0rem;
        max-width: 70rem;
    }

    .portada-contenido h2 {
        font-size: 3.5rem;
        margin: 2rem 0 2rem;
    }

    .portada-contenido p {
        font-size: 1.6rem;
    }
}
/*############################################
#################/* SECCIÓN /*################
############################################*/
.section {
  width: 80%;
  margin: 0 auto;
  padding-top: 4rem;
}

.section-black {
  width: 80%;
  margin: 0 auto;
  padding: 5rem 0 5rem 0;
}

.section-productos {
  width: 90%;
  margin: 0 auto;
  padding-top: 4rem;
}

.section-blog {
  background: #f1f1f1;
}

.section .section-title {
  font-size:var(--size-titulo-desktop);
  font-weight:var(--weight-titulo-desktop);
  margin-bottom:18px;
  text-align: center;
  color: var(--primario);
}

.section-description {
  text-align: center;
  font-size: var(--size-texto-desktop);
  color: var(--text-color);
}

.card-feature {
  border-radius:12px;
  padding:18px;
  background:white;
  box-shadow: 0 6px 18px rgba(18,38,63,0.06);
}



.contenedor-botones {
  display: flex;
  justify-content: center;
}

.botones {
  display: inline-block;
  background: var(--primario);
  font-size: var(--boton-size);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 0.6rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.botones:hover {
  background: var(--secundario);
  color: white;
}

.botonesSec {
  display: inline-block;
  background: #ddd;
  color: var(--text-color);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 16px;
  font-size: 1.7rem;
  transition: background 0.3s;
  margin: 3rem 2rem 0;
}

.botonesSec:hover {
  /* background: var(--secundario); */
  background: #aaa;
}

/* Estilos para etiquetas */
.wrapper-etiqueta {
    padding-bottom: 3rem;
}
.contenedor-etiqueta {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}
.etiqueta {
    background-color: #f0f0f0;
    color: var(--text-color);
	font-size: 1.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 0.7rem;
    display: inline-block;
    margin-bottom: 0;
}

.etiqueta i {
	font-size: 2rem;
	margin-right: 1rem;
}

@media (max-width: 768px) {
    .section {
    width: 90%;
    padding-top: 2rem;
    }

    .section .section-title {
    font-size: var(--size-titulo-movil);
    font-weight:var(--weight-titulo-movil);
    margin-bottom:18px;
    }

    .section-description {
    font-size: var(--size-texto-movil);
    }
	
    .contenedor-etiqueta{
		margin-top: 0px;
        padding-top: 0px;
        gap: 10px;
	}
}


/*##############################################
################/* CARTILLAS /*#################
##############################################*/
.section-cartillas {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 5rem;
}

.cartillas-section {
	  display: grid;
  grid-template-columns: repeat(3, 1fr);
	  gap: 2rem;
/* 	  padding: 4rem; */
/*   background-color: #f3f3f3; */
}

/* --- ESTILO DE CADA FICHA --- */
.cartilla {
/*   background: linear-gradient(145deg, #0B497E, #0d5c9c); */
	background: var(--secundario);
  color: #fff;
/* 	border: 2px solid var(--primario); */
  border-radius: 2rem;
  padding: 2rem 2rem 3rem 2rem;
  text-align: center;
/*   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25); */
/*   transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

/* .cartilla:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
} */

/* --- TÍTULO --- */
.cartilla h3 {
  font-size: var(--size-titulo-cartilla-desktop);
  margin-bottom: 1rem;
  font-weight: 500;
	color: var(--text-color-cartilla);
}

/* --- DESCRIPCIÓN --- */
.cartilla p {
  font-size: var(--size-texto-cartilla-desktop);
	color: var(--text-color-cartilla);
  line-height: 1.5;
  margin-bottom: 2rem;
}

/* --- IMAGEN CIRCULAR --- */
.imagen-circular {
  width: 90%;
  aspect-ratio: 1 / 1; 
  margin: 0 auto 4rem auto;
  border-radius: 50%;
  overflow: hidden;
/*   border: 1px solid #fff; */
/*   box-shadow: 0 0 10px rgba(255,255,255,0.4); */
  background-size: cover;
  background-repeat: no-repeat;
}

/* --- BOTÓN --- */
.btn-cartilla {
  background-color: #fff;
  color: var(--primario);
  border: none;
  padding: 1rem 2.5rem;
  border: 1px solid #fff;
  border-radius: 3rem;
  font-size: var(--boton-size);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cartilla:hover {
  background-color: var(--primario);
  color: #fff;
  border: 1px solid #fff;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
	.section-cartillas {
	  width: 95%;
	  padding-bottom: 2rem;
	}
	
  .cartillas-section {
    grid-template-columns: repeat(1, 1fr);
	padding: 20px;
    gap: 1.5rem;
  }

  .cartilla {
    padding: 20px;
  }

  .cartilla h3 {
    font-size: var(--size-titulo-cartilla-movil);
  }

  .cartilla p {
    font-size: var(--size-texto-cartilla-movil);
  }
}

/*##############################################
#################/* PRODUCTOS /*################
##############################################*/
.barra-horizontal {
  width: 100%;
  height: 10rem;
  background-color: #232323;
  transition: background-color 0.6s ease;
}

.barra-horizontal.scrolled {
  background-color: #fff;
}

/* ==== Grid de productos ==== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 4rem;
  margin: 5rem 0;
}

.products-grid-blog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin: 5rem 0;
}

/* ==== Card individual ==== */
.card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.175);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ==== Imagen con aspect-ratio ==== */
.card-img-container {
  aspect-ratio: 4 / 1;
  overflow: hidden;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none; /* desactiva clics sobre la imagen */
  user-select: none; /* evita selección */
}

.card-img-container-blog {
  aspect-ratio: 2.5 / 1;
  overflow: hidden;
}

.card-img-container-blog img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none; /* desactiva clics sobre la imagen */
  user-select: none; /* evita selección */
}

/* ==== Contenido ==== */
.card-body {
  padding: 1rem 1.5rem;
}

.card-titulo-main {
  font-size: var(--h3-size);
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 1.2rem;
  text-align: center;
}

.card-descripcion-main {
  font-size: var(--p-size);
  color: var(--text-color-sec);
  margin-bottom: 1.5rem;
  text-align: center;
}

@media (max-width: 768px) {
	.card-img-container {
	  aspect-ratio: 2 / 1;
	}
	
	.card-titulo-main {
	  font-size: var(--h4-size);
	  font-weight: 500;
	}

	.card-descripcion-main {
	  font-size: var(--size-texto-movil);
	}
	
	.products-grid-blog {
	  grid-template-columns: repeat(1, 1fr);
	}
}

/*##############################################
##############/* VIDEO PORTADA /*###############
##############################################*/
.video-container {
	position: relative;
    justify-content: center;
/*     background-image: url('https://www.proyectcom.com/wp-content/uploads/2024/01/Radios-Digitales-Hytera-de-Dos-Vias-scaled.jpg'); */
    background-size: cover;
    background-position: 100% center;
}
        
video {
    width: 100%;
	height: 60vh;
/*     aspect-ratio: 4/1; */
    object-fit: cover;
    object-position: center 65%;
    display: block;
    z-index: 1;
}
    
.overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.overlay h1 {
    color: white;
    font-size: 6rem;
    font-weight: bold;
    text-align: center;
    margin: 0;
    padding: 20px;
}
        
@media (max-width: 768px) {
	video {
		aspect-ratio: 16/9;
	}
    .overlay h1 {
        font-size: 2rem;
        padding: 10px;
	}
}


/*##############################################
##############/* CARD PRODUCTOS /*##############
##############################################*/
.card-contenedor-productos,
.card-contenedor-ferreteria {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 5rem 5.5rem;
  /* background: yellowgreen; */
}

.card-list .card-item {
  color: black;
  width: 100%;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.175);
  box-sizing: border-box;
}

.card-list .card-item .card-imagen {
/*   max-width: 200px; */
  height: 200px;
  margin-bottom: 20px;
  object-fit: contain;
/*   border: 1px solid black; */
  pointer-events: none; /* desactiva clics sobre la imagen */
  user-select: none; /* evita selección */
}

.card-list .card-item .card-titulo {
  font-size: var(--h4-size);
  color: var(--text-color);
  font-weight: 600;
  text-align: center;
  /* margin: 10px 0 20px; */
}

.card-list .card-item .card-descripcion {
  font-size: var(--p-size);
  color: var(--text-color-sec);
  /* font-weight: 500; */
  text-align: center;
/*   margin: 10px 0 20px; */
}

.card-list .card-item .card-boton {
  font-size: 1.3rem;
  padding: 0.7rem 2rem;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  background-color: #13653f;
  border: 1px solid transparent;
  transition: 0.2s ease;



  white-space: normal;       /* permite salto de línea */
  text-align: center;
  display: inline-block;
  width: 100%;               /* el botón se adapta al ancho */
  line-height: 1.3;
  word-wrap: break-word;
}

.card-list .card-item .card-boton:hover{
  background-color: #146c43;
}

.swiper-pagination-productos,
.swiper-pagination-ferreteria,
.swiper-pagination-main {
  --swiper-pagination-color: var(--primario);
  --swiper-pagination-bullet-inactive-color: rgba(var(--primario-rgb), 0.15);
  --swiper-pagination-bullet-inactive-opacity: 7;
  /* width: 52px;
  height: 52px; */
}

.swiper-button-prev-productos,
.swiper-button-next-productos,
.swiper-button-prev-ferreteria,
.swiper-button-next-ferreteria,
.swiper-button-prev-main,
.swiper-button-next-main {
  --swiper-navigation-color: var(--primario);
  --swiper-navigation-size: 30px;
}

.swiper-contenedor {
  position: relative;
  margin-top: 3rem;
}

.swiper-controles {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

/* ----- Mostrar swiper solo en móviles ----- */
@media (min-width: 768px) {
  /* Oculta los controles del Swiper en tablet y escritorio */
  .swiper-controles-ferreteria {
    display: none !important;
  }

  /* Convierte el contenedor en un grid estático */
  .card-contenedor-ferreteria {
    overflow: visible !important;
  }

  .card-list-ferreteria {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
}

/*##############################################
##############/* LANDING PAGE /*################
##############################################*/
.contenedor-pregunta {
	margin: 0 auto;
	padding: 2.5rem 0;
	background: #f1f1f1;
}

.pregunta-blog h3 {
  font-size: 2.5rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--text-color);
}

.pregunta-blog p {
  font-size: 2rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--primario);
}

.contenedor-titulo-alt {
	margin: 0 auto;
	padding: 2rem 0;
	background: #f1f1f1;
}

.titulo-alt-blog {
  font-size: 3rem;
  font-weight: 500;
  font-style: italic;
  text-align: center;
  color: var(--text-color);
}

.titulo-alt-blog span {
  color: var(--primario);
}

.beneficios-wrapper {
  display: flex;
  justify-content: center;
  padding: 5rem 0;
}

.contenedor-beneficios {
  display: flex;
/*   justify-content: space-evenly; */
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
	gap: 5rem;
/*   max-width: 90%; */
  width: 100%;
	
/* 	border: 2px solid red; */
}

/* Imagen */
.beneficios-img {
  width: 100%;
  flex: 0 0 450px;
  display: flex;
  justify-content: center; /* Centra horizontalmente */
  align-items: center;     /* Centra verticalmente */
  aspect-ratio: 7 / 5;
  background-size: cover;
/*   border-radius: 1rem; */
	padding: 5rem;
	
/* 		border: 2px solid green; */
}

/* Contenido */
.beneficios-contenido {
  flex: 0 0 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
	
/* 		border: 2px solid blue; */
}

.beneficios-contenido h3 {
  margin-bottom: 2.5rem;
  font-size: 2.5rem;
}

/* Cada beneficio */
.beneficio-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
}

.beneficio-item i {
  color: var(--primario, #0a84ff);
  font-size: 3rem;
}

.beneficio-item-descripcion {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.7rem;
}

.beneficio-item-descripcion i {
  color: var(--primario, #0a84ff);
  font-size: 3rem;
}

.contenedor-beneficio-item-desccripcion {
	margin: 0.5rem 0 1.5rem 0;
}

.beneficio-item-desccripcion {
	font-size: 1.7rem;
	margin: 0 0 0.5rem 4.5rem;
}

/* Responsive */
@media (max-width: 768px) {
	.titulo-alt-blog {
	  font-size: 2.2rem;
	}
	
	.beneficios-wrapper {
	  padding: 4rem 0;
	}

	.contenedor-beneficios {
	  flex-direction: column;
	  gap: 0.1rem;
	}
	
	.beneficios-img {
	  flex: 0 0 350px;
	  padding: 1rem 0 2rem 0;
	  order: 1;
	}

	.beneficios-contenido {
	  flex: 0 0 350px;
	  order: 2;
	}

	.beneficios-contenido h3 {
	  margin-bottom: 2rem;
	  font-size: var(--size-titulo-movil);
		text-align: center;
	}
	
	.beneficio-item,
	.beneficio-item-descripcion {
	  gap: 1.5rem;
	  margin-bottom: 1rem;
	  font-size: var(--size-texto-movil);
	}

	.beneficio-item i,
	.beneficio-item-descripcion i {
	  font-size: 2.5rem;
	}
	
	.contenedor-beneficio-item-desccripcion {
		margin: 0 0 1rem 0;
	}

	.beneficio-item-desccripcion {
		font-size: var(--size-texto-movil);
		margin: 0 0 0.5rem 4rem;
	}
	
	.contenedor-pregunta {
		padding: 3rem 2rem;
	}

	.pregunta-blog h3 {
	  font-size: 2.2rem;
	  font-weight: 500;
	  margin-bottom: 1rem;
	}

	.pregunta-blog p {
		font-size: 1.8rem;
	  font-weight: 500;
	  margin-bottom: 2rem;
	}

}


/*##############################################
#########/* DATOS PRODUCTOS UNICOS /*###########
##############################################*/
/* === ESTILOS DETALLE DE PRODUCTO === */
.producto-detalle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.contenedor-producto {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 3rem;
  max-width: 80%;
  width: 100%;
}

.producto-imagen {	
  flex: 1 1 40%;
  display: flex;
  justify-content: center; /* Centra horizontalmente */
  align-items: center;     /* Centra verticalmente */
/*   border: 2px solid var(--primario); */
}

.producto-imagen img {
  width: 100%;
  max-width: 45rem;
  height: auto;
/*   border: 2px solid red; */
  pointer-events: none; /* desactiva clics sobre la imagen */
  user-select: none; /* evita selección */
}

.producto-info {
  flex: 1 1 55%;
}

.producto-titulo {
  font-size: var(--size-titulo-producto);
  color: var(--text-color);
  margin-bottom: 0.2rem;
}

.producto-subtitulo {
  font-size: var(--size-desc-corta-producto);
  font-weight: 500;
  color: #666;
  margin-bottom: 2rem;
}

.producto-etiquetas {
  margin-bottom: 1.5em;
}

.producto-tag {
  display: inline-block;
  background: #f2f2f2;
  color: #333;
  font-size: var(--size-etiqueta-producto);
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  margin-right: 0.6rem;
  margin-bottom: 0.6rem;
}

.producto-descripcion {
  color: #444;
/*   line-height: 1.6; */
  margin-bottom: 2rem;
  font-size: var(--size-desc-producto);
}

.producto-botones {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.boton-ficha,
.boton-whatsapp {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  border-radius: 3rem;
  text-decoration: none;
  font-size: var(--size-boton-producto);
  font-weight: 600;
  transition: all 0.3s ease;
}

.boton-ficha {
  background-color: var(--primario);
  border: 0.2rem solid var(--primario);
  color: #fff;
}

.boton-ficha:hover {
  border: 0.2rem solid var(--primario);
  color: var(--primario);
  background-color: transparent;
}

.boton-whatsapp {
  border: 0.2rem solid var(--primario);
  color: var(--primario);
  background-color: transparent;
}

.boton-whatsapp:hover {
  background-color: var(--primario);
  border: 0.2rem solid var(--primario);
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .contenedor-producto {
    flex-direction: column;
    text-align: center;
  }

  .producto-info {
    flex: 1 1 100%;
  }
	
	.producto-titulo {
	  font-size: var(--size-titulo-producto-movil);
	}
	
	.producto-subtitulo {
	  font-size: var(--size-desc-corta-producto-movil);
	}

	.producto-descripcion {
	  font-size: var(--size-desc-producto-movil);
		text-align: left;
	}

  .producto-botones {
    justify-content: center;
	gap: 2rem;
  }

}

/* ======== ESPECIFICACIONES TÉCNICAS ======== */
.eet-section {
  margin: 4rem 0;
  text-align: center;
}

.eet-titulo {
  font-size: var(--size-titulo-desktop);
  color: var(--text-color);
  margin-bottom: 2rem;
/*   text-transform: capitalize; */
}

/* ======== TABLA ======== */
.eet-tabla {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  max-width: 70%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.eet-tabla thead th {
  background-color: #444;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0.8rem;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
}

.eet-tabla tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.eet-tabla tbody tr:hover {
  background-color: #f1f1f1;
}

.eet-tabla td,
.eet-tabla th {
  border: 1px solid #ddd;
  padding: 1rem 1.2rem;
  text-align: left;
}

.eet-tabla td {
  color: var(--text-color);
  font-size: 1.6rem;
}

.eet-tabla td:first-child {
	font-weight: 600;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
	.eet-titulo {
	  font-size: var(--size-titulo-movil);
	}
	.eet-tabla {
	  max-width: 85%;
	}
  .eet-tabla thead {
    display: none;
  }
  .eet-tabla tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
  }
  .eet-tabla td {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    text-align: left;
  }
  .eet-tabla tbody tr:hover {
    background-color: transparent;
  }
/*   .eet-tabla td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #222;
    text-align: left;
  } */
}


/*##############################################
##################/* FOOTER /*##################
##############################################*/
.footer {
  background-color: #222529;
  color: #fff;
  padding: 2rem 0;
  font-size: 1.6rem;
}

.footer-content {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  white-space: nowrap;
}

.footer-right a {
  color: #fff;
  text-decoration: none;
  margin-left: 4rem;
  font-size: var(--p-size);
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: var(--primario);
}

@media (max-width: 768px) {
    .footer {
    font-size: 1.3rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-right {
        width: 80%;
        display: flex;
        justify-content: space-evenly;
    }

    .footer-right a {
        margin: 0;
    }
}