/* Prevenir scroll horizontal */
body,
body {
    overflow-x: hidden; /* elimina scroll horizontal */
}
html {
    overflow-x: hidden;
    max-width: 100%;
}

/* Colores personalizados */
.bg-aqua {
    background-color: #018996;
    height: 40px;
}

.texto-aqua {
    color: #018996;
}

.texto-naranja {
    color: #ff8a00;
}

.texto-gris {
    color: rgb(172, 168, 168);
}

.bg-naranja {
    background-color: #ff8a00;
}

.bg-gris {
    background-color: rgb(236, 236, 236);
}

.navbar {
    min-height: 68px;
    /* deja crecer cuando colapsa */
}

/* Navbar */
.navbar-nav .nav-link {
    color: black !important;
    font-weight: bold;
    margin-left: 1rem;
    /* tu color corporativo */
}

.navbar-nav .nav-link:hover {
    color: #0b1516 !important;
}

@media (max-width: 767.98px) {
    .form-group.row {
        flex-wrap: nowrap;
        /* Mantiene label e input en la misma fila */
        justify-content: center;
    }

    .form-group .col-form-label {
        text-align: right;
        padding-right: 5px;
    }

    .form-group .col-8,
    .form-group .col-sm-6 {
        flex: 0 0 60%;
        /* Ajusta ancho del input */
    }
}

/* Estilo base de los links */
.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    /* ovalado */
    transition: all 0.3s ease;
}

/* También al pasar el mouse */
.nav-link:hover {
    background-color: #018996;
    color: white !important;
    box-shadow: 0 0 12px 4px rgba(1, 137, 150, 0.5);
}

/* Logos */
.navbar-brand img {
    height: 50px;
    width: auto;
}

.logo-pequeno {
    width: 15px;
    height: auto;
}

/* Hero */
#hero {
    min-height: 70vh;
    background: linear-gradient(to right, #e6f7f9, #ffffff);
}

/* Secciones */
section {
    scroll-margin-top: 80px;
    /* para que el menú no tape al hacer scroll */
}

/* Cuando un link está activo */
.nav-link.active {
    background-color: #018996;
    color: white !important;
    box-shadow: 0 0 12px 4px rgba(1, 137, 150, 0.5);
}


/* Quitar borde y fondo del botón */
.navbar-toggler {
    border: none;
    background: transparent;
    padding: 0.25rem 0.5rem;
    /* opcional, lo hace más pequeño */
}

/* Personalizar las líneas del icono en color aqua */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='%23018996' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
    width: 1.5rem;
    /* puedes hacerlo más chico o más grande */
    height: 1.5rem;
}

/* Para pantallas grandes (desktop horizontal) */
.img-desktop {
    height: 500px;
    /* carrusel más bajo */
    object-fit: cover;
    /* llena el ancho */
}

/* Para móviles (imagen vertical más alta) */
.img-mobile {
    height: auto;
    /* deja crecer natural */
    max-height: 80vh;
    /* límite en móviles */
    width: 100%;
    /* ocupa todo el ancho */
    object-fit: contain;
    /* ajusta completa sin cortar */
    background-color: #fff;
    /* color de relleno */
}

/* Forzar justificación en títulos */
.text-justify {
    text-align: justify;
}

/* Lista beneficios */
.lista-beneficios {
    list-style-position: inside;
    /* viñeta alineada al texto */
    padding-left: 1.5rem;
    /* sangría */
    margin-top: 1rem;
}

.lista-beneficios li {
    margin-bottom: 0.5rem;
    color: #018996;
    /* texto aqua */
}

/* Viñetas rojas */
.lista-beneficios li::marker {
    color: #e60000;
    /* rojo solo viñeta */
    font-size: 1.2em;
}


/* seccion de perfil*/

/* Inputs ovalados */
.input-custom {
    border-radius: 50px;
    /* hace el input ovalado */
    transition: all 0.3s ease;
    border: 2px solid #018996;
    /* borde aqua cuando no está en foco */
}

/* Efecto en foco */
.input-custom:focus {
    background-color: #e0f7fa;
    /* aqua clarito */
    border-color: #00acc1;
    /* un tono más fuerte */
    box-shadow: 0 0 5px rgba(0, 172, 193, 0.5);
}

/*Boton de Ingresar */

.btn-naranja {
    background-color: #ff8a00;
    /* naranja */
    color: #fff;
    /* texto blanco */
    border-radius: 50px;
    /* ovalado */
    padding: 10px 25px;
    /* ajustado al texto */
    border: none;
    transition: all 0.3s ease;
    font-weight: bold;
    display: inline-block;
    /* se ajusta al texto */
}


.btn-naranja:hover {
    background-color: #e65c00;
    /* naranja más oscuro */
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.5);
    /* sombra glow */
    color: #fff;
}

a.texto-naranja {
    text-decoration: none;
    /* quita el subrayado */
    transition: all 0.3s ease;
}

a.texto-naranja:hover {
    color: #ff6600;
    /* un naranja más intenso */
    text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
    /* efecto sombra */
}

.text-justify {
    text-align: justify;
}

/*error de ingresar correo */
.text-label-error-2 {
    color: #ff8a00;
    /* naranja */
    font-weight: bold;
    /* letra bold */
    background-color: #fff4e6;
    /* fondo clarito, combina con el texto */
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(255, 138, 0, 0.3);
    /* sombra más ligera */
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 5px;
}

.titulo-label {
    background-color: #018996;
    /* aqua */
    color: #ffffff;
    padding: 20px 15px;
    /* más alto */
    border-radius: 0 0 45px 45px;
    /* bordes inferiores más pronunciados */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.25);
    /* sombra un poco más notoria */
}

/* Sombra y efecto para el botón 'a' */
.titulo-label a.btn {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    /* Sombra */
    transition: transform 0.2s, box-shadow 0.2s;
    /* Transición suave */
}

.titulo-label a.btn:hover {
    transform: translateY(-3px);
    /* Efecto "subida" */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
    /* Sombra más grande */
}

/* Footer Newsletter */
#footer-newsletter .form-control {
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
}

#footer-newsletter .btn-primary {
    min-width: 120px;
    border-radius: 0.375rem;
}

#footer-newsletter a {
    color: #fff;
}

#footer-newsletter a:hover {
    text-decoration: underline;
}

#footer-newsletter {
    min-height: 250px;
    /* Aumenta el fondo */
    display: flex;
    align-items: center;
    /* Centra contenido verticalmente */
}

/* Desktop (no tocar) */

/* Responsive: <768px */
@media (max-width: 767.98px) {
    #footer-newsletter {
        display: block;
        /* para que el fondo se ajuste a todo el contenido */
        min-height: 420px;
        /* quita el min-height fijo */
        padding: 3rem 1rem;
        /* suficiente padding arriba y abajo */
        text-align: center;
        /* centra texto y formulario */
    }

    #footer-newsletter .row {
        flex-direction: column;
        /* elementos apilados */
        align-items: center;
    }

    /* Input y botón apilados y ovalados */
    #footer-newsletter form .row {
        flex-direction: column;
        gap: 1rem;
    }

    #footer-newsletter .form-control {
        width: 100%;
        border-radius: 50px;
        height: 50px;
    }

    #footer-newsletter .btn {
        width: 100%;
        border-radius: 50px;
        min-width: unset;
        height: 50px;
    }

    /* Checkbox centrado debajo del botón */
    #footer-newsletter .form-check {
        text-align: center;
        margin-top: 1rem;
    }
}

.logo-footer {
    width: 60%;
    max-width: 150px;
    /* no crece más de 120px */
    height: auto;
}

/* Logo principal más grande */
.logo-footer {
    width: 120px; /* tamaño principal */
    height: auto;
}

/* Logos de métodos de pago */
.icon-footer {
    width: 47px;
    height: 26px;
}


/* Mobile (responsive) */
@media (max-width: 767.98px) {
    .footer-bottom {
        background: none !important; /* Quitar bg-aqua solo en mobile */
        flex-direction: column;
        text-align: center;
        font-size: 0.75rem; /* Letra más pequeña */
        gap: 0.25rem;
        padding: 0.5rem 1rem;
    }

    .footer-bottom p {
        margin: 0;
        color: #000; /* Texto negro en mobile */
    }

    .footer-bottom p span.machetazo {
        color: #018996;; /* Texto EL MACHETAZO® en aqua */
        font-weight: bold;
    }

    /* Viñetas solo en mobile */
    .footer-bottom p::before {
        content: "\2022";
        color: #018996;;
        margin-right: 0.25rem;
    }
}

/* Desktop (>=768px) mantiene bg-aqua y estilo original */
@media (min-width: 768px) {
    .footer-bottom {
        background: #018996; /* bg-aqua */
        flex-direction: row;
        font-size: 1rem;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
    }

    .footer-bottom p {
        color: #fff;
    }

    .footer-bottom p span.machetazo {
        color: #fff; /* mantiene blanco en desktop */
        font-weight: bold;
    }

    .footer-bottom p::before {
        content: "\2022";
        color: #fff;
        margin-right: 0.25rem;
    }
}
@media (max-width: 767.98px) {
    .footer-bottom p {
        display: block; /* cada párrafo ocupa su línea */
    }

    .footer-bottom p + p::before {
        content: "\A"; /* salto de línea */
        white-space: pre; /* respeta el salto */
    }
}

.bg-naranja {
    background-color: #ff6600; /* tu color naranja */
    border: none;
}

.bg-naranja:hover,
.bg-naranja:focus,
.bg-naranja:active {
    background-color: #ff6600 !important; /* mantiene el naranja */
    color: white !important; /* asegura que el texto siga blanco */
}


.tarjeta-clientazo {
    max-width: 140%;
    width: 140%;
}

@media (min-width: 768px) {
    .tarjeta-clientazo {
        width: 140%; /* tablets */
    }
}

@media (min-width: 1200px) {
    .tarjeta-clientazo {
        width: 120%; /* desktop */
        max-width: 1400px;
    }
}

/* Ajuste para que no haya espacio entre imagen y puntos */
.col-lg-6 .position-relative {
    margin-bottom: 0 !important;
}

.col-lg-6 .w-100.titulo-label {
    margin-top: -30px; /* pega el título a la imagen */
    padding-top: 10px; /* opcional, ajusta si quieres espacio mínimo */
    border-radius: 0 0 20px 20px; /* mantiene bordes inferiores curvos */
}

/* Evitar espacio debajo de la imagen */
.col-lg-6 .position-relative img {
    display: block;
    margin-bottom: 0;
}


/* Ajuste Mobile: pega los puntos debajo de la imagen */
@media (max-width: 767.98px) {
    /* Evitar margen debajo de la imagen */
    .d-block.d-lg-none .position-relative img {
        display: block;
        margin-bottom: 0;
    }

    /* Título de puntos pegado a la imagen */
    .d-block.d-lg-none .titulo-label {
        margin-top: -30px; /* pega el título a la imagen */
        padding-top: 10px; /* opcional, mínimo espacio */
        border-radius: 0 0 20px 20px; /* bordes curvos inferiores */
        width: 100%;
    }

    /* Ajuste h1 dentro del título-label */
    .d-block.d-lg-none .titulo-label h1 {
        margin: 0;
        font-size: 2rem; /* ajusta tamaño si es necesario */
        line-height: 1.2;
    }

    /* H5 de "Puntos Clientazos Disponibles" justo debajo */
    .d-block.d-lg-none h5.texto-aqua {
        margin-top: 0.5rem;
        margin-bottom: 0;
    }
}
