/* ==============================
   VARIABLES GLOBALES
============================== */
:root {
  /* Colores */
  --color-primary: #01b4b5;
  --color-secondary: #00d2d3;
  --color-accent: #01d1ff;
  --color-text: #000;
  --color-bg: #fff;
  --color-footer-bg: #000;
  --color-footer-text: #fff;
  --color-hover: #01b4b5;
  --color-shadow: rgba(0, 0, 0, 0.5);
  --color-label-bg: rgba(0, 0, 0, 0.7);
  --color-gold: #d4af37;
  --color-gold-light: #fff8e1;
  --color-gold-shadow: rgba(212, 175, 55, 0.3);
  --color-gold-shadow-hover: rgba(212, 175, 55, 0.6);

  /* Tipografía */
  --font-base: Arial, sans-serif;
  --font-size-small: 0.85rem;
  --font-size-base: 1rem;
  --font-size-large: 1.1rem;
  --font-size-huge: 2rem;

  /* Espaciados */
  --space-xs: 5px;
  --space-sm: 10px;
  --space-md: 15px;
  --space-lg: 20px;
  --space-xl: 30px;
  --space-xxl: 40px;

  /* Radios y sombras */
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 50%;
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 5px 10px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* ==============================
   RESET Y ESTILOS BASE
============================== */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* 🔑 Evita desbordamiento horizontal */
  width: 100%;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-base);
 background: linear-gradient(135deg, #ffffff 0%, #f0eeee 25%, #dfdfdf 50%, #ffffff 100%);
  background-size: 200% 200%;
  background-attachment: fixed;
  animation: boldShift 10s ease-in-out infinite;  
}

@keyframes boldShift {
  0%, 100% { background-position: 0% 0%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s;

padding: 8px 0;
  line-height: 2.6;
}

a:hover,
a:active {
  color: var(--color-text);
}

/* ==============================
   LISTAS DE BUSCADORES
============================== */
.list-item {
  display: flex;
  align-items: flex-start;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.list-item .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.list-item .info a {
  color: #212121;
  text-decoration: none;
  margin-bottom: 6px;
  
}

.list-item .info a:hover {
  color: #000;
}

.vip {
  background: linear-gradient(135deg, var(--color-gold-light), #fff3cd);
  border-left: 6px solid var(--color-gold);
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px var(--color-gold-shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 15px;

  /* 🔑 Hacemos que sea un contenedor flex horizontal */
  display: flex;
  align-items: flex-start;
  gap: 16px; /* Espacio entre logo y texto */

}

/* Logo */
.vip img.thumbbuscadores {
  width: 80px;   /* Ajusta según necesidad */
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0; /* Evita que se achique */
}

/* Info (nombre + redes) */
.vip .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1; /* Ocupa todo el espacio restante */

}

.vip .info a {
  color: #212121;
  text-decoration: none;
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: bold;
  padding: 2px 0;
  line-height: 1.2;
}

.vip .info a:hover {
  color: #000;
}

/* Redes sociales */
.vip .redes {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.vip .redes a {
  font-size: 20px;
  color: #0097a7;
  transition: color 0.2s ease;
}

.vip .redes a:hover {
  color: #00bcd4;
}

.base {
  background-color: #f0fafa;
  border-left: 6px solid #00bcd4;
  padding: 14px;
  border-radius: 10px;
}

.gratis {
  border-bottom: 1px solid #e0e0e0;
}

.thumbbuscadores {
  width: 120px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.redes {
  margin-top: 6px;
  display: flex;
  gap: 16px;
}

.redes a {
  font-size: 25px;
  color: #0097a7;
  transition: color 0.2s ease;
}

.redes a:hover {
  color: #00bcd4;
}

.categoria-principal {
  background: linear-gradient(90deg, #00bcd4, #0097a7);
  color: #fff;
  font-weight: bold;
  padding: 16px;
  margin-bottom: 14px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  font-size: 18px;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease;
}

.categoria-principal:hover {
  transform: scale(1.02);
}

.categoria-principal a {
  color: #fff;
  text-decoration: none;
    padding: 2px 0;
  line-height: 1.2;
}

.categoria-principal a:hover {
  text-decoration: underline;
}





/* ==============================
  WIDGET CLIMA
============================== */

.widget-clima {margin-top:-60px;margin-bottom: 50px;}












/* ==============================
   HEADER & NAV
============================== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
  top: 20px;
}

.header .logo img {
  height: 84px;
  width: auto;
  margin-top: 14px;
}

.nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.nav ul li {
  margin: 0 15px;
}

.nav ul li a {
  color: var(--color-text);
  font-size: var(--font-size-large);
  font-weight: bold;
  position: relative;
  transition: color 0.3s;
}



.nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0; right: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav ul li a:hover::after,
.nav ul li a.active::after {
  transform: scaleX(1);
}

.nav ul li a:hover,
.nav ul li a.active {
  color: var(--color-hover);
}

.nav ul li a i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.nav-toggle,
.nav ul li.close-nav {
  display: none;
}

@media (max-width: 768px) {
  .nav ul {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px 0; /* 👈 padding vertical, no horizontal */
    box-sizing: border-box;
  }

  .nav ul.nav-open {
    display: flex;
  }

  .nav ul li {
    margin: 20px 0;
  }

  .nav ul li a {
    font-size: 1.5rem;
    color: var(--color-accent);
  }

  .nav ul li a:hover {
    color: var(--color-bg);
  }

  .nav-toggle {
    display: block;
    margin-left: 100px;
  }

  .nav ul li.close-nav {
    display: block;
    position: absolute;
    top: 20px; right: 20px;
    cursor: pointer;
    color: var(--color-bg);
    font-size: 2rem;
    z-index: 10000;
  }
}




















.navblanca ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.navblanca ul li {
  margin: 0 15px;
}

.navblanca ul li a {
  color: #fff;
  font-size: var(--font-size-large);
  font-weight: bold;
  position: relative;
  transition: color 0.3s;
}



.navblanca ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0; right: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.navblanca ul li a:hover::after,
.navblanca ul li a.active::after {
  transform: scaleX(1);
}

.navblanca ul li a:hover,
.navblanca ul li a.active {
  color: var(--color-hover);
}

.navblanca ul li a i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.navblanca-toggle,
.navblanca ul li.close-navblanca {
    color: #fff;
  display: none;
}

@media (max-width: 768px) {
  .navblanca ul {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px 0; /* 👈 padding vertical, no horizontal */
    box-sizing: border-box;
  }

  .navblanca ul.navblanca-open {
    display: flex;
  }

  .navblanca ul li {
    margin: 20px 0;
  }

  .navblanca ul li a {
    font-size: 1.5rem;
    color: var(--color-accent);
  }

  .navblanca ul li a:hover {
    color: var(--color-bg);
  }

  .navblanca-toggle {  color: #fff;
    display: block;
    margin-left: 100px;
    font-size: 1.5rem;
    
  }

  .navblanca ul li.close-navblanca {
    display: block;
    position: absolute;
    top: 20px; right: 20px;
    cursor: pointer;
    color: var(--color-bg);
    font-size: 2rem;
    z-index: 10000;
  }


.widget-clima {margin-top:-100px;margin-bottom: 50px;}




}



















/* ==============================
   HERO & BUSCADOR
============================== */
.hero {
  position: relative;
  height: 105vh;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -115px;
  overflow: hidden; /* 👈 Solo hidden */
  width: 100vw; /* 👈 Clave para evitar desbordamiento */
  max-width: 100%;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(1.0) blur(5px);
  transform: scale(1.05);
}

.hero-overlay-light {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.39);
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0 auto 20px;
  max-width: 90%;
  animation: fadeInUp 1.2s ease-out both; 
  font-family: "Arial Black", sans-serif;


;


}




.hero-sub {color: #ffffff;
  animation: fadeInUp 2.2s ease-out both;  


;




}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



.hero-overlay {
  position: relative;
  z-index: 2;
  -webkit-backdrop-filter: blur(10px);
  padding: 30px;
  max-width: 90%;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  margin: 0 20px;
  text-align: center;
}

.hero-overlay h1 {
  margin: 0 0 10px;
  font-size: 2rem;
  color: #000;
}

.hero-overlay p {
  margin: 0 0 20px;
  font-size: 1.1rem;
  color: #333;
}

/* Buscador */
.search-bar {
  margin: 10px;
  padding: 8px;
  background: #ffffff42;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.search-bar input[type="text"] {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  background-color: #ffffff5e;
}

.search-bar button {
  background-color: #000;
  border: none;
  color: #fff;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  margin: 10px;
  transition: background-color 0.3s;
}

.search-bar button:hover {
  background-color: var(--color-primary);
}

.category-section {
  margin: 10px;
  background: #ffffff42;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  padding: 15px;
}

.toggle-button {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.toggle-button i {
  margin-right: 10px;
  color: var(--color-primary);
}

.toggle-icon {
  font-size: 20px;
  color: var(--color-primary);
  transition: transform 0.3s ease;
  margin-left: auto;
}

.toggle-button.active .toggle-icon {
  transform: rotate(180deg);
}

.rubros-content {
  display: none;
  margin-top: 10px;
  max-height: 300px;
  overflow-y: auto;
}

.rubros-content.active {
  display: block;
}

.rubros-list {
  list-style: none;
  padding: 0;
  column-count: 1;
  column-gap: 10px;
}

.rubros-list li {
  margin: 5px 0;
}

.rubros-list a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  transition: color 0.3s;
}

.rubros-list a:hover {
  color: var(--color-primary);
}

/* ==============================
   CAROUSELS
============================== */
.thumbnail-carousel-wrapper,
.icon-carousel-wrapper,
.icon-carousel-wrapper2 {
  width: 100%;
  overflow: hidden;
}

.thumbnail-carousel,
.icon-carousel,
.icon-carousel2 {
  display: flex;
  transition: transform 0.5s ease-in-out;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.thumbnail-item {
  flex: 0 0 auto;
  width: 25%;
  padding: var(--space-md);
  position: relative;
}

.thumbnail-item img {
  width: 100%;
  border-radius: var(--radius-md);
  transition: transform 0.3s;
  box-shadow: var(--shadow-md), 0 2px 2px rgba(0, 0, 0, 0.5);
}

.thumbnail-item img:hover {
  transform: scale(1.05);
}

.thumbnail-labels {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.thumbnail-label {
  background-color: var(--color-label-bg);
  color: var(--color-bg);
  padding: 5px 10px;
  font-size: var(--font-size-small);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  font-weight: bold;
}

.icon-item,
.icon-item2 {
  flex: 0 0 auto;
  border-radius: var(--radius-full);
  text-align: center;
  padding: var(--space-lg);
  background-color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.icon-item i,
.icon-item2 i {
  font-size: 48px;
  color: var(--color-bg);
  margin-bottom: var(--space-sm);
}

.icon-item p,
.icon-item2 p {
  color: var(--color-bg);
  font-size: 20px;
}

.icon-item:hover,
.icon-item2:hover {
  transform: scale(1.1);
}

.icon-carousel-wrapper {
  position: relative;
  margin: var(--space-lg) 0 var(--space-xl);
  padding: var(--space-md) 0;
}

.icon-item {
  width: 220px;
  height: 220px;
  margin-right: var(--space-xl);
}

.icon-carousel-wrapper2 {
  margin: var(--space-lg) 0 calc(var(--space-xl) * -1);
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: center;
}

.icon-item2 {
  width: 200px;
  height: 200px;
  margin-right: var(--space-lg);
}

/* Flechas de navegación para los carousels de thumbnails */
.thumbnail-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin: var(--space-lg) 0;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 1.8rem;

  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.carousel-prev {
  left: 20px; /* A la izquierda del contenedor */
}

.carousel-next {
  right: 20px; /* A la derecha del contenedor */
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}



@media (max-width: 480px) {
  .carousel-prev {
    left: 0;
  }
  .carousel-next {
    right: 0;
  }
}






/* ==============================
   PRECIOS, MODAL, FOOTER, CTA
============================== */
/* (Estos se mantienen igual, pero optimizados en media queries abajo) */
.pricing-section {
  padding: 6rem 2rem;
}

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

.pricing-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.pricing-card {
  background-color: var(--color-bg);
  border: 1px solid #ddd;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 3rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 6px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.pricing-card h3 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  color: #333;
}

.pricing-card .price {
  font-size: 4rem;
  font-weight: bold;
  color: var(--color-primary);
  margin: 1rem 0;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.pricing-card li {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  color: #666;
  background-color: #e9e9e9;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pricing-card li.new-item::before {
  content: '+';
  position: absolute;
  left: 10px;
  width: 30px; height: 30px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-button2 {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-bg);
  background-color: var(--color-primary);
  border-radius: 8px;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button2:hover {
  background-color: var(--color-secondary);
  transform: scale(1.1);
}

.pricing-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  cursor: pointer;
}

.modal-content h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.modal-content p {
  font-size: 1rem;
  margin: 0.5rem 0;
}

.modal-content i {
  color: var(--color-accent);
  margin-right: 0.5rem;
}

.footer {
  background-color: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: var(--space-xxl) var(--space-lg);
  border-top: 5px solid var(--color-accent);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-info,
.footer-links,
.footer-contact,
.footer-social {
  flex: 1;
  min-width: 200px;
  margin-right: 20px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  max-width: 250px;
  margin-top: var(--space-lg);
}

.footer h3,
.footer h4 {
  margin-bottom: var(--space-sm);
}

.footer-info h3 {
  color: var(--color-accent);
  font-size: 24px;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--color-primary);
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--color-footer-text);
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s, text-shadow 0.3s;
}

.footer-links a:hover {
  color: var(--color-primary);
  text-shadow: 0 0 5px rgba(230, 0, 18, 0.5);
}

.footer-contact p,
.footer-info p {
  font-size: 14px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-social a {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-sm);
  color: var(--color-footer-text);
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s, transform 0.3s;
}

.footer-social a i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--color-primary);
}

.footer-social a:hover {
  color: var(--color-primary);
  transform: scale(1.1);
}

.call-to-action {
  background-color: var(--color-secondary);
  color: var(--color-text);
  padding: var(--space-xxl) var(--space-lg);
  text-align: center;
}

.cta-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: bold;
}

.cta-number {
  font-size: 200px;
  font-weight: bold;
  color: var(--color-text);
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background-color: var(--color-bg);
  color: var(--color-text);
  padding: 10px 20px;
  font-size: 16px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: bold;
  transition: color 0.3s;
}

.cta-button:hover {
  color: var(--color-primary);
}

.sindatos {
  width: 1000px;
}

/* ==============================
   MEDIA QUERIES
============================== */
@media (max-width: 480px) {
  .hero {
    height: 70vh;
  }

  .hero-overlay {
    padding: 15px;
    margin: 0 10px;
    margin-top: 120px;
    font-size: 0.9rem;
  }

  .hero-overlay h1 {
    font-size: 1.5rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }

  .header .logo img {
    height: 40px;
  }

  .content {
    padding: 10px;
  }

  .cta-number {
    font-size: 120px;
  }

  .sindatos {
    width: 400px;
  }

  .icon-item,
  .icon-item2 {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    padding: 10px;
  }

  .icon-item i,
  .icon-item2 i {
    font-size: 28px;
  }

  .icon-item p,
  .icon-item2 p {
    font-size: 10px;
  }

  .thumbnail-labels {
    top: 5px; left: 5px;
    gap: 3px;
  }

  .thumbnail-label {
    padding: 3px 7px;
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .nav ul {
    flex-direction: column;
    align-items: center;
  }

  .nav ul li {
    margin: 10px 0;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-info,
  .footer-links,
  .footer-contact,
  .footer-social {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .nav ul li a {
    font-size: 0.9rem;
  }

  .nav ul li a i {
    font-size: 1rem;
  }

  .icon-item,
  .icon-item2 {
    width: 150px;
    height: 150px;
    margin-right: 20px;
    padding: 15px;
  }

  .icon-item i,
  .icon-item2 i {
    font-size: 36px;
  }

  .icon-item p,
  .icon-item2 p {
    font-size: 16px;
  }

  .thumbnail-item {
    width: 75%;
  }

  .carousel-prev,
  .carousel-next {
    font-size: 1.8rem;
  }

  .search-bar,
  .category-section {
    margin: 20px;
    padding: 20px;
  }

  .rubros-list {
    column-count: 1;
  }
}






@media screen and (max-width: 768px) {
  .hero-overlay {
    padding: 20px;
    max-height: none;
    overflow-y: visible;
    margin: 0 10px;
  }

  .hero-title {
    font-size: 1.97rem;
    line-height: 1.2;
    margin-top:100px;
    margin-bottom: 15px;
  }

  .hero-sub {
    font-size: 1.0rem !important;
    line-height: 1.4;
    font-weight: 400 !important;
    margin-bottom: 10px;
    font-family: Arial, sans-serif !important;
  }

  .hero-overlay h1 {
    font-size: 1.3rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }
}












/* 🔑 MEDIA QUERY CLAVE PARA ASUS ZENBOOK FOLD (853px) */
@media (min-width: 769px) and (max-width: 1023px) {
  /* Hero */
  .hero-overlay {
    max-width: 95%;
    margin: 0 15px;
    padding: 25px;
  }

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

  .hero-sub {
    font-size: 1.2rem;
  }

  /* Buscador */
  .search-bar {
    margin: 15px;
    padding: 10px;
  }

  .search-bar input[type="text"] {
    font-size: 16px;
  }

  .search-bar button {
    font-size: 16px;
    padding: 8px 12px;
  }

  /* Categorías */
  .category-section {
    margin: 15px;
    padding: 15px;
  }

  .toggle-button {
    font-size: 26px;
  }

  .rubros-list {
    column-count: 2;
    column-gap: 15px;
  }

  .rubros-list a {
    font-size: 20px;
  }

  /* Iconos */
  .icon-item,
  .icon-item2 {
    width: 180px;
    height: 180px;
    margin-right: 15px;
    padding: 15px;
  }

  .icon-item i,
  .icon-item2 i {
    font-size: 40px;
  }

  .icon-item p,
  .icon-item2 p {
    font-size: 18px;
  }

  /* Thumbnails */
  .thumbnail-item {
    width: 33.33%;
  }

  .thumbnail-labels {
    top: 8px;
    left: 8px;
    gap: 4px;
  }

  .thumbnail-label {
    padding: 4px 8px;
    font-size: 0.8rem;
  }

  /* Footer */
  .footer-info h3,
  .footer-links h4,
  .footer-contact h4 {
    font-size: 20px;
  }

  .footer-links a,
  .footer-contact p,
  .footer-social a {
    font-size: 15px;
  }

  /* Pricing */
  .pricing-card {
    padding: 2.5rem 2rem;
    border-radius: 12px;
  }

  .pricing-card .price {
    font-size: 3.5rem;
  }

  .cta-number {
    font-size: 150px;
  }

  .cta-content h2 {
    font-size: 26px;
  }

  .cta-button {
    font-size: 15px;
    padding: 8px 16px;
  }
}

@media (max-width: 1024px) {
  .pricing-table {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .pricing-card {
    padding: 2.5rem 2rem;
    border-radius: 10px;
  }
}

@media (max-width: 800px) {
  .pricing-table {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .pricing-card {
    padding: 1.5rem 1rem;
  }

  .thumbnail-labels {
    top: 10px; left: 3px;
    gap: 2px;
  }

  .thumbnail-label {
    padding: 2px 5px;
    font-size: 0.65rem;
  }
}

@media (min-width: 1024px) {
  .general-item {
    padding: 30px;
    flex-direction: column;
  }

  .general-logo {
    max-height: 200px;
  }

  .general-name {
    font-size: 30px;
    margin: 20px;
  }

  .general-contact {
    font-size: 24px;
  }

  .general-contact i {
    font-size: 34px;
  }
}

@media (min-width: 1440px) {
  .general-item {
    padding: 40px;
    flex-direction: row;
  }

  .general-logo {
    flex: 0 0 300px;
    height: 200px;
  }

  .general-name {
    font-size: 36px;
  }

  .general-contact {
    font-size: 26px;
    gap: 30px;
  }

  .general-contact i {
    font-size: 40px;
  }
}