:root {
    --bs-primary-rgb: 15, 102, 156; /* #0F669C */
    --bs-primary: #0F669C;
    --custom-secondary-rgb: 204, 14, 100; /* #CC0E64 */
    --custom-secondary: #CC0E64;
    --bs-warning-rgb: var(--custom-secondary-rgb);
    --bs-warning: var(--custom-secondary);
    --bs-warning-text-emphasis: #FFFFFF;
    --bs-warning-bg-subtle: color-mix(in srgb, rgb(var(--custom-secondary-rgb)) 15%, white);
    --bs-warning-border-subtle: color-mix(in srgb, rgb(var(--custom-secondary-rgb)) 25%, white);
}

body {
    font-family: "Nunito", 'Arial', sans-serif;
}

.bg-primary-custom {
    background-color: var(--bs-primary) !important;
}

.hero {
    background: linear-gradient(rgb(255 255 255 / 85%), rgb(0 0 0 / 60%)), url(../img/fondo.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 80px 0;
}

.hero .et-logo-hero {
    max-height: 80px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

.hero p {
    font-size: 1.20rem;
}

.btn-cta {
    background-color: var(--custom-secondary);
    border-color: var(--custom-secondary);
    color: #fff;
    font-weight: 600;
}

.btn-cta:hover {
    background-color: color-mix(in srgb, var(--custom-secondary) 85%, black);
    border-color: color-mix(in srgb, var(--custom-secondary) 80%, black);
    color: #fff;
}

.text-accent {
    color: var(--custom-secondary) !important;
}

.border-accent {
    border-color: var(--custom-secondary) !important;
}

.section-dark-primary-shade {
    background-color: color-mix(in srgb, var(--bs-primary) 70%, black);
    color: #fff;
}

.section-dark-primary-shade .card {
    background-color: var(--bs-primary);
    color: #fff;
    border: 1px solid color-mix(in srgb, var(--bs-primary) 120%, white);
}

.section-dark-primary-shade .card p, .section-dark-primary-shade .card-text {
    color: #e0e0e0;
}

.section-dark-primary-shade .testimonial-card {
    background-color: var(--bs-primary);
}

.section-dark-primary-shade .testimonial-card blockquote {
    color: #e0e0e0;
}

.section-dark-primary-shade .testimonial-card cite {
    color: #d3d3d3;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

.navbar-brand img {
    max-height: 40px;
}

.icon-xl {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.border-primary {
    border-color: var(--bs-primary) !important;
}

.footer-links a {
    color: var(--custom-secondary) !important;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* --- ESTILOS PARA ANIMACIÓN AL HACER SCROLL --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll-left, .animate-on-scroll-right {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll-left {
    transform: translateX(-80px);
}

.animate-on-scroll-right {
    transform: translateX(80px);
}

.animate-on-scroll-left.is-visible,
.animate-on-scroll-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- ESTILOS PARA LA SECCIÓN #capturas-app --- */
#capturas-app {
    background-color: #fff; /* Cambiado a blanco para mayor contraste con elementos internos */
    /* padding-top: 4rem; */ /* Ajustado por mb-5 en título y feature-row */
    /* padding-bottom: 2rem; */ /* Ajustado por mb-5 en feature-row */
}

#capturas-app .text-center h2 {
    font-weight: 700;
    color: var(--bs-primary);
}

#capturas-app .text-center .lead {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    color: #555;
}

#capturas-app .feature-row:last-child {
    margin-bottom: 0 !important;
}

#capturas-app .feature-title {
    color: var(--bs-primary);
    font-size: 2rem; /* Título más grande y llamativo */
    font-weight: 600;
}

#capturas-app .feature-row.flex-row-reverse .feature-title {
    color: var(--custom-secondary); /* Alternar color del título */
}


#capturas-app .lead-sm {
    font-size: 1.1rem; /* Ligeramente más grande para descripciones */
    font-weight: 400;
    line-height: 1.7;
    color: #4a4a4a;
}

#capturas-app .img-fluid {
    max-height: 500px;
    width: 100%; /* Asegurar que ocupe el ancho de la columna */
    object-fit: cover;
    object-position: center;
    border-radius: 0.75rem; /* Bordes más redondeados */
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
}

#capturas-app .img-fluid:hover {
    transform: scale(1.03); /* Sutil efecto de escala en hover */
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .15) !important;
}


@media (max-width: 767.98px) {
    #capturas-app .feature-row .col-md-5,
    #capturas-app .feature-row.flex-row-reverse .col-md-5 {
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #capturas-app .feature-title {
        font-size: 1.6rem; /* Ajustar tamaño de título en móviles */
    }

    #capturas-app .img-fluid {
        /* margin-bottom: 1.5rem; */ /* Ya hay mt-4 en el texto para móviles */
        max-height: 350px;
    }

    #capturas-app .feature-row {
        margin-bottom: 3rem !important; /* Más espacio entre filas en móvil */
    }
}

/* --- FIN DE NUEVOS ESTILOS --- */

.fw-bold {
    font-weight: 600 !important;
}

.mini-logo-title{
    display: inline-flex;
    width: 26px;
    height: 21px;
    margin-left: 2px;
}

.mini-logo-body{
    display: inline-flex;
    width: 18px;
    height: 14px;
    margin-left: 2px;
}

.mini-logo-footer{
    display: inline-flex;
    width: 18px;
    height: 14px;
    margin-left: 2px;
    vertical-align: middle;
    margin-bottom: 3px;
}

.mini-logo-gen{
    background: url(../img/LogoETMini.svg);
}

.mini-logo-b{
    background: url(../img/LogoETMiniB.svg);
}

.mini-logo-w{
    background: url(../img/LogoETMiniW.svg);
}

.logo-footer{
    display: inline-flex;
    width: 53px;
    height: 22px;
    margin-left: 6px;
    background: url(../img/LogoSitrel.svg);
    vertical-align: middle;
}

.grecaptcha-badge:hover {
    width: 250px !important;
    right: 0 !important;
}
.grecaptcha-badge {
    width: 70px !important;
    right: 0 !important;
    transition: 0.3s !important;
}