
/* ===============================
   TEMPLATE FRONT CSS UNIFICADO
   =============================== */

/* === BODY === */
body {
  background-image: url('/web/assets/images/bg.png');
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
}

/* === HEADER === */
.contenedor-sticky {
  position: sticky;
  top: 0;
  z-index: 999;
}


/* Allow wrap on smaller screens */
@media (max-width: 992px){
  .nav-fixed{ flex-wrap: wrap; }
  .nav-fixed .nav-item{ min-width: 0; }
}

/* If screen is narrower, allow wrap to avoid overflow */
@media (max-width: 992px){
  .nav-fixed{
    flex-wrap: wrap;
  }
  .nav-fixed .nav-item{
    min-width: 0;
  }
}


/* === HEADER CORPORATIVO: CELESTE CON TEXTO AZUL === */
.bg-template {
  background-color: #d9e6f3 !important;  /* Fondo celeste */
  color: #0e3a6a !important;             /* Texto azul profesional */
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  opacity: 1 !important;
  backdrop-filter: none !important;
  border-bottom: 2px solid #0e5e9b;      /* línea azul sutil para elegancia */
}



/* === DROPDOWN === */
.dropdown-menu {
  background-color: #d9e6f3 !important;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.dropdown-item {
  color: #0e3a6a !important;
  transition: background 0.3s, color 0.3s;
}

.dropdown-item:hover {
  background-color: #ffb200 !important;
  color: #000 !important;
}

/* === BOTÓN DE IDIOMA === */
.btn-outline-light {
  color: #ffffff !important;
  border-color: #0e3a6a !important;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.btn-outline-light:hover {
  background-color: #ffb200 !important;
  color: #000 !important;
  border-color: #ffb200 !important;
}

/* === LOGO === */
.size-logo {
  max-height: 75px !important;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.8)) contrast(110%) brightness(115%);
}

/* === TITULOS Y TEXTOS === */
h1, h2, h3, h4, h5, h6 {
  font-weight: bolder;
  color: #0e5e9b;
}

/* === BOTONES PERSONALIZADOS === */
.bg-celeste-custom {
  background-color: #087dc2 !important;
  border-color: #087dc2 !important;
  color: #ffffff !important;
  border-width: 4px !important;
  transition: background-color 0.5s;
}
.bg-celeste-custom:hover {
  background-color: #d3cec9 !important;
  color: #087dc2 !important;
}
.bg-azul{ 
	background-color: #0e5e9b !important; 
    }
.bg-azul-custom {
  background-color: #17699b !important;
  border-color: #17699b !important;
  color: #ffffff !important;
  border-width: 4px !important;
  transition: background-color 0.5s;
}
.bg-azul-custom:hover {
  background-color: #ffffff !important;
  color: #17699b !important;
}

.bg-amarillo-custom {
  background-color: #ffb200 !important;
  border-color: #ffb200 !important;
  color: #ffffff !important;
  border-width: 4px !important;
  transition: background-color 0.5s;
}
.bg-amarillo-custom:hover {
  background-color: #ffffff !important;
  color: #ffb200 !important;
}

/* === ANIMACIÓN BOTÓN “QUIÉNES SOMOS” === */
button.button-somos {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  background: transparent;
  padding: 0;
  font-size: inherit;
}
button.learn-more {
  width: 12rem;
  height: auto;
}
button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  width: 3rem;
  height: 3rem;
  background: #fff;
  border-radius: 1.625rem;
}
button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  left: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: '';
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #000;
  border-right: 0.125rem solid #000;
  transform: rotate(45deg);
}
button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin-left: 1.85rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
button:hover .circle { width: 100%; }
button:hover .button-text { color: #000; }

/* === PRODUCTOS === */
.contenedor-producto {
  overflow: hidden;
  position: relative;
}
.contenedor-producto .producto:hover {
  transition: all .5s ease-in-out;
  transform: scale(1.3);
  filter: blur(5px);
}
.text-producto {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
}
.boton-producto {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 50;
}
.imagen-borde img {
  border: 10px solid white;
}
                           
/* === FOOTER CORPORATIVO SOBRIO === */
.bg-footer {
  background-color: #d9e6f3 !important;
  border-top: 2px solid #0e5e9b;
}

.footer h6 {
  font-size: 1rem;
  letter-spacing: 1px;
  color: #0e3a6a !important;
}

.footer p, .footer a {
  color: #0e3a6a !important;
  font-size: 0.95rem;
}

.footer a:hover {
  color: #ffb200 !important;
}

.hover-underline:hover {
  text-decoration: underline;
}

.footer hr {
  border-top: 1px solid rgba(14, 58, 106, 0.2);
}

/* === PLANES DE PRECIOS === */
.pricing-wrapper {
  background: #f9faff;
  border-radius: 16px;
  padding: 20px;
}

.plan-card {
  border: 2px solid #e0e8f0;
  border-radius: 12px;
  padding: 20px;
  background: #ffffff;
  transition: all 0.3s ease;
  position: relative;
}

.plan-card:hover {
  box-shadow: 0 6px 18px rgba(0, 51, 102, 0.15);
  transform: scale(1.01);
}

.plan-header h5 {
  font-size: 1.1rem;
}

.old-price {
  text-decoration: line-through;
  color: #777;
  font-size: 0.9rem;
  margin-right: 6px;
}

.discount {
  font-size: 0.9rem;
}

.new-price {
  font-size: 1.6rem;
  color: #003366;
}

/* Botón principal */
.btn-plan {
  display: inline-block;
  background-color: #0e5e9b;
  color: #fff !important;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-plan:hover {
  background-color: #ffb200;
  color: #000 !important;
}

/* Plan destacado */
.highlight {
  border-color: #ffb200 !important;
  background: #fff6e0 !important;
  position: relative;
}

.btn-highlight {
  background-color: #ffb200 !important;
  color: #000 !important;
}

.btn-highlight:hover {
  background-color: #0e5e9b !important;
  color: #fff !important;
}

/* Cinta MEJOR OFERTA */
.ribbon {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ffb200;
  color: #000;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 0 8px 0 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
                           
                           /* === SECCIÓN PLANES GETOVERX === */
.plan-box {
  border: 2px solid #e0e8f0;
  border-radius: 12px;
  background: #ffffff;
  transition: all 0.3s ease;
  overflow: visible; /* <--- Permite que la cinta se muestre completa */
  position: relative; /* Mantiene la cinta posicionada correctamente */
}


.plan-box:hover {
  box-shadow: 0 6px 18px rgba(0, 51, 102, 0.15);
  transform: translateY(-5px);
}

.plan-header {
  border-bottom: 2px solid #e0e8f0;
}

.old-price {
  text-decoration: line-through;
  color: #777;
  font-size: 0.9rem;
}

.discount {
  font-size: 0.85rem;
  display: block;
  margin-top: 2px;
}

.new-price {
  font-size: 1.8rem;
  color: #003366;
}

.btn-plan {
  display: inline-block;
  background-color: #0e5e9b;
  color: #fff !important;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-plan:hover {
  background-color: #ffb200;
  color: #000 !important;
}

/* Destacado */
.highlight {
  border-color: #ffb200;
  background: #fff6e0;
}

.btn-highlight {
  background-color: #ffb200 !important;
  color: #000 !important;
}

.btn-highlight:hover {
  background-color: #0e5e9b !important;
  color: #fff !important;
}

/* Cinta */
.ribbon {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ffb200;
  color: #000;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 0 8px 0 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* === SYSTEM REQUIREMENTS STYLING === */
.container ul li {
  font-size: 0.95rem;
  color: #333;
}

.border {
  border-color: #0e5e9b !important;
}

h4.text-azul {
  color: #0e5e9b !important;
}

hr {
  border-top: 1px solid rgba(14, 94, 155, 0.2);
}

.list-unstyled li b {
  color: #0e5e9b;
}
                           
.text-white {
  color: #fff !important;
}
                           
/* === NAV LINKS (base styles) === */
.navbar .nav-link,
.font-color {
  color: #0e3a6a !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: all 0.3s ease-in-out;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  white-space: nowrap; /* prevent wrapping by default */
}

/* Hover */
.navbar .nav-link:hover,
.font-color:hover {
  color: #ffb200 !important;
  transform: scale(1.05);
}

/* === Keep navbar proportions stable across languages (compact) === */
.navbar .nav-fixed{
  gap: 0px;
  flex-wrap: nowrap;
}

.navbar .nav-fixed .nav-item{
  min-width: 52px; /* adjust: 70–90 */
  text-align: center;
}

/* Override base link sizing ONLY inside the fixed menu */
.navbar .nav-fixed .nav-link{
  font-size: clamp(.70rem, 0.78vw, .86rem) !important;
  line-height: 1.05 !important;
  letter-spacing: .15px !important;
  padding: .35rem .10rem !important;
  white-space: nowrap !important;
}

/* Optional: tighter icon spacing inside fixed menu */
.navbar .nav-fixed .nav-link i{
  margin-right: .25rem;
  font-size: .95em;
}

/* Category IMG FrontPage */                           
 .category-icon{
  width:140px;
  height:140px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background: radial-gradient(circle at top, #007bff, #00264d);
  box-shadow: 0 10px 30px rgba(2,8,20,.10);
  transition: transform .3s, box-shadow .3s;
}

.category-img{
  width: 78px;          /* tamaño “lógico” del canvas */
  height: auto;
  display:block;
  transform: scale(2.0); /* zoom del contenido */
  transform-origin:center;
}
                              
                              

/* hover */
.category-card:hover .category-icon{
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 16px 34px rgba(0, 123, 255, 0.28);
}
.category-card:hover p{ color:#007bff; }

/* si alguno se ve distinto, ajustas solo ese */
.category-img.i5{ transform: scale(1.25); } /* ejemplo */
                           

/* Allow wrap on smaller screens */
@media (max-width: 992px){
  .navbar .nav-fixed{ flex-wrap: wrap; }
  .navbar .nav-fixed .nav-item{ min-width: 0; }
}

/* Prevent the expanded menu from touching the logo area */
@media (max-width: 1200px){
  .navbar .nav-fixed{ gap: 0; }
  .navbar .nav-fixed .nav-item{ min-width: 48px; }
}

/* === MEDIA QUERIES === */
@media (min-width: 1200px) {
  .size-logo { max-width: 300px !important; }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .size-logo { max-width: 275px !important; }
}
@media (max-width: 991px) {
  .size-logo { max-width: 225px !important; }
}
@media (max-width: 991.98px) and (min-width: 768px){
  .size-logo{
    max-height: 50px !important;
  }
}