/* INDEX.CSS
   Página principal 1. TIPOGRAFÍAS Y LOGO                        */

.logo-container {
    display: flex;
    align-items: center;
}

.logo-ti-circle {
    background:
        linear-gradient(135deg, #07111b 0%, #0b1a27 45%, #0d2236 100%);
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    width: 32px;
    height: 32px;
     border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 5px;
}

.logo-empresarial {
    font-family: 'Audiowide', cursive;
    color: white;
    font-size: 18px;
    letter-spacing: 1px;
}

/* 2. COLORES CORPORATIVOS                      */
.bg-azul-corporate { 
    background-color: #173edd !important; 
}
.text-white-80 { 
    color: rgba(255, 255, 255, 0.8); 
}
/* 3. NAVBAR Y ELEMENTOS SUPERIORES             */

/* Iconos sociales */
.social-icons .bi {
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s;
}
.social-icons .bi:hover { 
    color: #ccc; 
}
/* Separador vertical */
.v-separator {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    height: 20px;
    margin: 0 15px;
}
/* Dropdown fix (IMPORTANTE) */
.navbar .dropdown-menu {
    position: absolute;
    z-index: 9999;
}
.navbar-collapse {
    overflow: visible !important;
}
/* 4. BOTONES                                   */
.btn-contacto {
    background-color: #173edd;
    color: white;
    border-radius: 30px;
    padding: 8px 25px;
    font-weight: bold;
    border: none;
    transition: background-color 0.3s;
    margin-left: 15px;
}
.btn-contacto:hover { 
    background-color: #002266; 
    color: white; 
}

/* 5 - Carrusel */

/* ALTURA GENERAL */
.carousel-item {
  height: 450px;
}

/* CONTENEDOR FLEX */
.slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 5%;
   background: linear-gradient( #87CEEB, #ffffff) !important;
}

/* ZIG ZAG */
.slide.reverse {
  flex-direction: row-reverse;
}

/* BLOQUE DE TEXTO */
.content {
  width: 35%;
  color: white;
  padding: 40px;
  border-radius: 20px;
}
/* COLORES */
.blue-left {
  background: linear-gradient(135deg, #173edd, #1e90ff);
}

.blue-right {
  background: linear-gradient(135deg, #1e90ff, #173edd);
}

/* Variante opcional */
.slide:nth-child(3) .content {
  background: linear-gradient(135deg, #0f2027, #2c5364);
}

/* TEXTO */
.content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.content p {
  margin-bottom: 20px;
}

/* BOTÓN */
.content .btn {
  border-radius: 30px;
  padding: 10px 25px;
  background: linear-gradient( #87CEEB, #ffffff) !important;
}
.content .btn:hover {
  background-color: white;
  border-color: black;
}

/* 🖼️ CAJA DE IMAGEN (CLAVE) */
.image-box {
  width: 60%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;

 background: linear-gradient(to bottom, #87CEEB, #ffffff) !important; 
  backdrop-filter: blur(10px); 

  border-radius: 20px;
  padding: 20px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.logo-slide {
  justify-content: center; /* centra horizontal */
}

.logo-slide .image-box {
  width: 40%;   /* ajusta tamaño del logo */
  height: auto; /* que no se deforme */
}

/* IMAGEN (SIN PELEAS) */
.image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.image-box:hover {
  transform: scale(1.03);
  transition: 0.3s;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1); /* blanco */
}
/* Frase principal*/
.frase-destacada {
    border-left: 5px solid #003399;
    border-right: 5px solid #003399;
    display: inline-block;
    padding: 0 15px; 
}
@media(max-width:768px){

.slide{
   flex-direction:column;
   text-align:center;
}

.content,
.image-box{
   width:100%;
}

.carousel-item{
   height:auto;
}

}
/* =========================================
   7. FORMULARIO
========================================= */

/* SECCIÓN GENERAL */
.seccion-contacto{
    background:
        linear-gradient(135deg, #07111b 0%, #0b1a27 45%, #0d2236 100%);
    color:#fff;
    position:relative;
    overflow:hidden;
    padding:70px 0;
}

/* Elementos decorativos de fondo */
.seccion-contacto::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(23,62,221,.12);
    filter:blur(40px);
}

.seccion-contacto::after{
    content:"";
    position:absolute;
    bottom:-100px;
    left:-100px;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(220,32,57,.10);
    filter:blur(45px);
}

/* TITULOS */
.seccion-contacto h2,
.seccion-contacto h3{
    font-weight:700;
    letter-spacing:.5px;
}

.seccion-contacto p{
    color:rgba(255,255,255,.85);
}

/* INPUTS */
.seccion-contacto .form-control,
.seccion-contacto .form-select{
    background:rgba(255,255,255,.04) !important;
    border:1px solid rgba(255,255,255,.22) !important;
    color:#fff !important;

    border-radius:12px;
    min-height:46px;
    padding:12px 16px;

    transition:.25s ease;
    box-sizing:border-box;
}

/* PLACEHOLDER */
.seccion-contacto .form-control::placeholder{
    color:rgba(255,255,255,.55);
}

/* HOVER */
.seccion-contacto .form-control:hover,
.seccion-contacto .form-select:hover{
    border-color:rgba(255,255,255,.38);
    background:rgba(255,255,255,.06);
}

/* FOCUS */
.seccion-contacto .form-control:focus,
.seccion-contacto .form-select:focus,
.seccion-contacto textarea.form-control:focus{

    background:rgba(255,255,255,.08) !important;
    color:#fff !important;

    border-color:#173edd !important;

    box-shadow:0 0 0 3px rgba(23,62,221,.18);

    outline:none;
}
/* LABELS */
.seccion-contacto label{
    font-weight:600;
    margin-bottom:8px;
    color:#fff;
}

/* CHECKBOX */
.seccion-contacto .form-check-input{
    width:20px;
    height:20px;
    margin-top:.15em;
    background-color:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.4);
    cursor:pointer;
}

.seccion-contacto .form-check-input:checked{
    background-color:#173edd;
    border-color:#173edd;
}

.seccion-contacto .form-check-label{
    padding-left:6px;
    color:#fff;
}

/* BOTÓN */
.btn-enviar{
    background:linear-gradient(135deg,#dc2039,#ff3150);
    border:none;
    color:#fff;
    border-radius:14px;
    padding:14px 34px;
    font-weight:700;
    letter-spacing:.3px;
    transition:.25s ease;
    box-shadow:0 12px 24px rgba(220,32,57,.22);
}

.btn-enviar:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 28px rgba(220,32,57,.32);
}

.btn-enviar:active{
    transform:translateY(0);
}

/* CONTENEDOR FORMULARIO (si usas row/col) */
.seccion-contacto .row{
    position:relative;
    z-index:2;
}


/* LINEA TITULO */
.linea-titulo{
    width:90px;
    height:4px;
    background:linear-gradient(90deg,#dc2039,#ff6a7d);
    margin:16px auto 24px;
    border-radius:10px;
}

/* ==================================================
   8. OFERTAS DESTACADAS
================================================== */
.section-ofertas{
    background:linear-gradient(#f7f7f7,#ececec);
}
/* CARDS OFERTAS */

.section-ofertas .card{

    border-radius:20px;
    overflow:hidden;

    background:#fff;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

    height:100%;
}

.section-ofertas .card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.12) !important;
}

/* IMÁGENES */

.section-ofertas .card img{

    transition:transform .45s ease;
}

.section-ofertas .card:hover img{

    transform:scale(1.04);
}

/* CONTENIDO*/

.section-ofertas .card-body{

    padding:28px 24px;
}

.section-ofertas .card h5{

    font-size:1.15rem;
    line-height:1.4;

    color:#1f2430;
}

.section-ofertas .card p{

    font-size:.97rem;

    color:#6c757d;

    line-height:1.6;
}

/* BOTÓN CONSULTAR*/

.btn-consultar{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 34px;

    border-radius:14px;

    background:linear-gradient(135deg,#dc2039,#ff3150);

    color:#fff;

    text-decoration:none;

    font-weight:700;

    letter-spacing:.3px;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        opacity .3s ease;

    box-shadow:0 12px 24px rgba(220,32,57,.22);
}

.btn-consultar:hover{

    transform:translateY(-2px);

    box-shadow:0 16px 28px rgba(220,32,57,.32);

    color:#fff;
}

/* RESPONSIVE */
@media(max-width:991px){

.seccion-contacto{
    padding:55px 0;
}

.btn-enviar{
    width:100%;
}

}
/* ==================================================
   9. FOOTER GLOBAL
================================================== */

.footer-custom {
    background-color: #173edd;
    color: white;
    padding-top: 5px;
    padding-bottom: 40px;
}

.logo-footer {
    height: 200px;
}
.footer-line {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 1;
    margin: 30px 0;
}
.top-footer-zone {
    padding-top: 70px;   /* baja ambos bloques */
}
.social-icons-footer a{

    color:white;

    font-size:1.3rem;

    margin-right:10px;

    text-decoration:none;

    transition:
        color .3s ease,
        transform .3s ease;
}

.social-icons-footer a:hover{

    color: #ccc !important;
    
    
}

/* ============================================ */
/* ESTILOS EXCLUSIVOS PARA SERVICIOS            */
/* ============================================ */

/* Aplicamos el difuminado azul cielo solo cuando existe la clase .pagina-servicios */
.pagina-servicios .navbar.bg-white {
    /* Degradado de azul cielo a transparente/blanco */
    background: linear-gradient(to bottom, #87CEEB, #ffffff) !important;
    border-bottom: 1px solid rgba(135, 206, 235, 0.5);
    transition: background 0.5s ease;
}

/* Opcional: Si quieres que las letras resalten más sobre el azul cielo */
.pagina-servicios .navbar-nav .nav-link {
    color: #003366 !important; /* Un azul oscuro para mejor contraste */
    text-shadow: 0px 1px 2px rgba(255,255,255,0.5);
}
/* Hero Servicios*/
.hero-servicios {
    position: relative;
    min-height: 300px;
    padding-bottom: 0px;
    overflow: hidden;
}
/* Imagen de fondo con efecto blur suave */
.hero-servicios::before {
    content: "";
    position: absolute;
    inset: 0;

    background: url("../img/Ingeniero_Servicios.jpg") center/cover no-repeat;

    
    filter: blur(1px);
    transform: scale(1.05);

    z-index: 1;
}
/* CAPA AZUL */
.hero-servicios::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        rgba(135,206,235,0.70),
        rgba(23,62,221,0.88)
    );

    z-index: 2;
}

/* TEXTO ARRIBA */
.hero-servicios .container,
.hero-servicios .wave-container {
    position: relative;
    z-index: 3;
}   
/* Ajuste de la tipografía para la frase de Ricoh */
.pagina-servicios .lead {
    letter-spacing: 0.5px;
}

/* ==================================================
   CONSUMIBLES
================================================== */

.hero-consumibles {
    position: relative;
    min-height: 300px;
    padding-bottom: 0px;
    overflow: hidden;
}

/* Imagen de fondo con blur suave */
.hero-consumibles::before {
    content: "";
    position: absolute;
    inset: 0;

    background: url("../img/Consumibles_Marcas.jpg") center center no-repeat;
    background-size: 80%;

    filter: blur(2.5px);
    transform: scale(1.05);

    z-index: 1;
}

/* CAPA AZUL */
.hero-consumibles::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        rgba(135,206,235,0.70),
        rgba(23,62,221,0.88)
    );

    z-index: 2;
}

/* TEXTO ARRIBA */
.hero-consumibles .container,
.hero-consumibles .wave-container {
    position: relative;
    z-index: 3;
}

/*Acordeon de servicios_Consumibles*/

#acordeonServicios .accordion-button:not(.collapsed),
#acordeonConsumibles .accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #173edd;
    box-shadow: none;
}

/* Espaciado limpio */
#acordeonServicios .accordion-body,
#acordeonConsumibles .accordion-body {
    padding: 30px;
}

/* Flecha más elegante */
#acordeonServicios .accordion-button::after,
#acordeonConsumibles .accordion-button::after {
    transform: scale(1.2);
}

/* CONTENEDOR CUADRADO DE ACORDEON SERVICIOS*/

.box-servicio{
height:420px;
display:flex;
justify-content:center;
align-items:center;
padding:20px;
border-radius:20px;
background:#fff;
}

.img-servicio{
max-width:100%;
max-height:100%;
object-fit:contain;
}

.card-servicio {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;

    border-left: 4px solid #173edd;
    border-right: 4px solid #173edd; 
}

.card-servicio:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}


/* CONTENEDOR CUADRADO DE ACORDEON consumibles*/
.box-consumible{
    height:420px;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
    border-radius:20px;
    background:#fff;
}

.img-consumible{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
}

.card-consumible {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;

    border-left: 4px solid #173edd;
    border-right: 4px solid #173edd; 
}

.card-consumible:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* ============================================ */
/* ACORDEÓN MANTENIMIENTO */
/* ============================================ */

.acordeon-mantenimiento .accordion-item {
    border: none;
    border-bottom: 1px solid #e5e5e5;
}

.acordeon-mantenimiento .accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 18px 20px;
    transition: all 0.3s ease;
}

.acordeon-mantenimiento .accordion-button:focus {
    box-shadow: none;
}

.acordeon-mantenimiento .accordion-button.collapsed {
    background: linear-gradient(to bottom, #9ad3ff, #ffffff);
}

.acordeon-mantenimiento .accordion-button.collapsed:hover {
    background: linear-gradient(to bottom, #eef7fb, #ffffff);
}

.acordeon-mantenimiento .accordion-button:not(.collapsed) {
    background-color: #ffffff;
    color: #173edd;
    box-shadow: none;
}


/* Nosotros*/

/* Sección Nosotros */
.seccion-nosotros { 
    position: relative;
    min-height:400px;
    background: url("../img/Nosotros_Seccion.jpg") center/cover no-repeat;
    overflow: hidden;
    font-family: 'Michroma', sans-serif;
}

/* Overlay invertido */
.seccion-nosotros .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        240deg, 
        rgba(23, 62, 221, 0.9) 30%,
        rgba(23, 62, 221, 0.4) 60%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Contenido a la derecha */
.seccion-nosotros .contenido {
    position: absolute;
    top: 50%;
    right: 8%; 
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
    text-align: right; 
    z-index: 2;
}

/* Título */
.seccion-nosotros h2 {
    font-size: 60px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}
/* --- Estilos para Misión, Visión y Valores --- */
.hover-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}
/* Diseño V2 para la Frase de Impacto y los logos */

.frase-impacto-v2 {
    background: linear-gradient(rgba(23, 62, 221, 0.9), rgba(11, 26, 39, 0.95)), 
                url('../img/Mexico.jpg'); /* Imagen de fondo con overlay azul */
    background-size: cover;
    background-attachment: fixed; /* Efecto Parallax */
    background-position: center;
}
.quote-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); /* Efecto de cristal esmerilado */
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}
.quote-container h2 {
    font-family: 'Antic', sans-serif;
    letter-spacing: 1px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}
.divider-glow {
    width: 100px;
    height: 4px;
    background: #87CEEB; 
    box-shadow: 0 0 15px #87CEEB;
    border-radius: 2px;
}
/* Diseño de las tarjetas de evolución del logo */
.logo-evolution-card {
    transition:
   transform .3s ease,
   border-color .3s ease,
   box-shadow .3s ease;
    
}
.logo-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.logo-evolution-card:hover .logo-box {
    transform: translateY(-10px);
    border-color: #87CEEB; 
    box-shadow: 0 15px 40px rgba(135, 206, 235, 0.4);
}
.current-logo .logo-box {
    border: 2px solid #173edd; /* Resalte para el logo actual */
    position: relative;
}
/* Ajuste para que la frase no se vea gigante en pantallas pequeñas */
@media (max-width: 992px) {
    .text-nowrap {
        white-space: normal; 
    }
}
/* --- Estilos para Talento Humano --- */
.team-img-container {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #f8f9fa;
    transition: all 0.4s ease;
}

.team-icon {
    font-size: 70px;
    color: #173edd;
    transition: 0.3s ease;
}
.team-card:hover .team-icon {
    transform: scale(1.2);
    color: #00e5ff;
}

/* Efectos al pasar el mouse por la tarjeta del equipo */
.team-card:hover .team-img-container {
    border-color: #87CEEB; 
    transform: scale(1.05);
}

.team-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.team-card h5 {
    margin-top: 15px;
    color: #333;
}

/* Responsivo para móviles */
@media (max-width: 576px) {
    .team-img-container {
        width: 140px;
        height: 140px;
    }
}

/*Seccion Ayuda */

.seccion-ayuda {
    position: relative;
    min-height: 400px;
    background: url("../img/Ayuda_Seccion.jpg") center/cover no-repeat;
    overflow: hidden;
    font-family: 'Michroma', sans-serif;
}

/* Overlay azul con estilo moderno */
.seccion-ayuda .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(23, 62, 221, 0.9) 30%,
        rgba(23, 62, 221, 0.4) 60%,
        transparent 100%
        
    );
}

/* Contenido */
.seccion-ayuda .contenido {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
    z-index: 2;
}

/* Título */
.seccion-ayuda h2 {
    font-size: 60px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}


/* ============================================ */
/* ACORDEÓN AYUDA (AISLADO) */
/* ============================================ */

.acordeon-ayuda-custom .accordion-item {
    border: none;
    border-bottom: 1px solid #e5e5e5;
}

/* Botón general */
.acordeon-ayuda-custom .accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 18px 20px;
    transition: all 0.3s ease;
}

/* Estado cerrado (degradado suave) */
.acordeon-ayuda-custom .accordion-button.collapsed {
    background: linear-gradient(to bottom, #9ad3ff, #ffffff);
}

/* Hover suave */
.acordeon-ayuda-custom .accordion-button.collapsed:hover {
    background: linear-gradient(to bottom, #eef7fb, #ffffff);
}

/* Estado abierto */
.acordeon-ayuda-custom .accordion-button:not(.collapsed) {
    background-color: #ffffff;
    color: #173edd;
    box-shadow: none;
}

/* Contenido */
.acordeon-ayuda-custom .accordion-body {
    padding: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
}

/* Flecha */
.acordeon-ayuda-custom .accordion-button::after {
    transform: scale(1.1);
}



/* Estilos para el Botón de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366; /* Verde oficial de WhatsApp */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 10000; /* Mantener encima del navbar y overlays */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition:
   background .3s ease,
   color .3s ease,
   transform .3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #FFF;
    transform: scale(1.1);
}

/* Animación de pulso para que el usuario lo note */
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    animation: pulse-whatsapp 2s infinite;
}

/*Contacto*/

/* HERO BASE */
.hero-contacto {
    position: relative;
    height: 400px;
    background: url("../img/Contacto_Secion.jpg") center/cover no-repeat;
    overflow: hidden;
    font-family: 'Michroma', sans-serif;
}

/* 🔥 OVERLAY tipo tech (clave visual) */
.hero-contacto .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        240deg, /* 🔥 invertido */
        rgba(23, 62, 221, 0.9) 30%,
        rgba(23, 62, 221, 0.4) 60%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* CONTENIDO DERECHA */
.hero-contacto .contenido {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    text-align: right;
    color: white;
    z-index: 2;
    max-width: 500px;
}

/* TÍTULO */
.hero-contacto h1 {
    font-size: 60px;
    margin-bottom: 40px; /* Reduce el espacio con lo de abajo */
    margin-top: -20px;    /* Sube el título individualmente */
}

/* TEXTO DESTACADO */
.hero-contacto span {
    color: #00e5ff;
    font-weight: bold;
}
.hero-contacto .texto-contacto {
    position: relative;
    display: inline-block;
    padding-right: 20px;
    margin: 0; /* Quita márgenes por defecto del <p> */
}
.hero-contacto .linea-contacto {
    display: flex;
    flex-direction: column; /* Alinea los elementos verticalmente */
    align-items: flex-end;    /* Alinea todo hacia la derecha */
    gap: 10px;
}
.hero-contacto .texto-contacto::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    height: 80%;
    width: 3px;
    background: #00e5ff;
}
/* BOTÓN */
.hero-contacto .btn-hero-contacto {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: white;
    color: #173edd;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-contacto .btn-hero-contacto:hover {
    background: #e6e6e6;
}

/* BADGE FLOTANTE */
.badge-contacto {
    position: absolute;
    top: 65%;
    left: 10%; 
    transform: translate(-20%, -20%);
    z-index: 3;
}

/* CARD */
.badge-contacto .card {
    background: white;
    padding: 8px;
    border-radius: 15px;
    text-align: center;
    width: 150px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);

}
.badge-contacto p {
    margin: 0;
    margin-top: 0.5rem;
    font-weight: 700; /* fw-bold */
    color: #212529;   /* text-dark de Bootstrap */
    line-height: 1.2;
    font-family: sans-serif; /* O la que uses en tu proyecto */
}
/* ICONO */
.badge-contacto i {
    font-size: 30px;
    color: #173edd;
    margin-bottom: 10px;
}

/* ANIMACIÓN SUAVE */
.badge-contacto {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, -60%); }
}

/*Politica de Privacidad*/

.pagina-Politica .navbar.bg-white {
    /* Degradado de azul cielo a transparente/blanco */
    background: linear-gradient(to bottom, #87CEEB, #ffffff) !important;
    border-bottom: 1px solid rgba(135, 206, 235, 0.5);
    transition: background 0.5s ease;
}

/* Opcional: Si quieres que las letras resalten más sobre el azul cielo */
.pagina-Politica .navbar-nav .nav-link {
    color: #003366 !important; /* Un azul oscuro para mejor contraste */
    text-shadow: 0px 1px 2px rgba(255,255,255,0.5);
}

/*Terminos de uso*/

.pagina-Termino .navbar.bg-white {
    /* Degradado de azul cielo a transparente/blanco */
    background: linear-gradient(to bottom, #87CEEB, #ffffff) !important;
    border-bottom: 1px solid rgba(135, 206, 235, 0.5);
    transition: background 0.5s ease;
}

/* Opcional: Si quieres que las letras resalten más sobre el azul cielo */
.pagina-Termino .navbar-nav .nav-link {
    color: #003366 !important; /* Un azul oscuro para mejor contraste */
    text-shadow: 0px 1px 2px rgba(255,255,255,0.5);
}

/*Aviso de privacidad*/
.pagina-Aviso .navbar.bg-white {
    /* Degradado de azul cielo a transparente/blanco */
    background: linear-gradient(to bottom, #87CEEB, #ffffff) !important;
    border-bottom: 1px solid rgba(135, 206, 235, 0.5);
    transition: background 0.5s ease;
}

/* Opcional: Si quieres que las letras resalten más sobre el azul cielo */
.pagina-Aviso .navbar-nav .nav-link {
    color: #003366 !important; /* Un azul oscuro para mejor contraste */
    text-shadow: 0px 1px 2px rgba(255,255,255,0.5);
}