
/* ===============================
   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;
}

/* === 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 */
}

/* === NAV LINKS (ajuste tamaño de fuente y espaciado) === */
.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;       /* Tamaño ideal para evitar desbordes */
  padding: 0.5rem 0.75rem; /* Reduce espacio lateral */
}

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

/* === 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;
}


/* === 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; }
}
