
:root {
    --white-color: #ffffff; /* Blanco */
    --grey-color: #444444; /*Gris oscuro (cerca del negro)*/
    --black-color: #000000;
    --blackgrey-color: #222222; /*Gris muy oscuro (más cercano al negro que el color anterior) */
    --blue-color: #106eea; /*Azul fuerte*/
    --blueviolet-color: #8A2BE2;
    --titles-color: #67007f;
    --violetainter-color: #ff1cc0;
    --violetamedio-color: #b131fa;
    --rosa-color: #ee67ba;
    --amarillo-color: #ffd000;
    --topbar-violet: #8A2BE2;
    --header-top: #f1ceff;
    --header-down: #5c5c5c;
}

/*--------------------------------------------------------------
    # Typography
 --------------------------------------------------------------*/

@font-face {
    font-family: 'Roboto';
    src: url('Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
   

    * {
        font-family: Roboto
    }


/* Ajuste del tamaño de fuente para pantallas pequeñas */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 24px;
    }

    h4, h5, h6, p {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
# TopBar 
--------------------------------------------------------------*/
.topbar {
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--blueviolet-color);
    height: 28px;
    padding: 0;
    font-size: 14px;
    z-index: 1000;
    transition: all 0.3s;
}

    .topbar .contact-info i {
       
        font-style: normal;
        color: var(--black-color);
    }

        .topbar .contact-info i a, .topbar .contact-info i span {
            padding-left: 5px;
            color: var(--blackgrey-color);
        }

@media (max-width: 768px) {
    .topbar {
        font-size: 12px;
        /*height: 24px;*/
    }

        .topbar .social-links a {
            margin-left: 10px;
        }
}
.topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
    text-decoration: none;
}

    .topbar .contact-info i a:hover {
        color: var(--contrast-color);
        text-decoration: underline;
    }

.topbar .social-links a {
    color: rgba(var(--blackgrey-color), 0.6);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

    .topbar .social-links a:hover {
        color: var(--amarillo-color);
    }
.topbar .social-links a {
    color: rgba(var(--blackgrey-color), 0.6);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

.topbar .social-links a:hover {
    color: var(--white-color);
}




/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/


    .header .topbar {
        background-color: blueviolet;
        height: 0px;
        padding: 0;
        font-size: 14px;
        transition: all 1s;
    }

.header {
    position: fixed;
    top: 28px;
    width: 100%;
    background-color: #f4cbff;
    color: var(--black-color);
    z-index: 999;
    background-image: linear-gradient(180deg, var(--header-top) 60%, var(--header-down) 150%);
    height: 4.8rem;
    padding: 0px 0;
    transition: all 0.5s;
}

.branding {
    min-height: 60px;
    padding: 0 10px;
}

    .header.container {
        display: flex;
        align-items: center;
        justify-content: space-between; /* Espacio entre la imagen y los AuthLinks */
        height: 100%;
    }

.logo img {
    max-height: 55px;
    display: block;
    margin: 0 auto; /* Asegura que la imagen se centre dentro del contenedor .logo */
}

.auth-links {
    margin-left: auto; /* Alinea los AuthLinks a la derecha */
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .header {
        height: 60px;
        font-size: 14px;
    }

        .header .branding {
            min-height: 50px;
            padding: 0 5px;
        }

        .header .logo img {
            max-height: 40px;
        }
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../img/fondo_pantalla2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 4.8rem;
}

    .hero .container {
        position: relative;
        z-index: 2;
    }

.hero-img-container {
    position: absolute;
    bottom: 30px; /* 30px desde la parte inferior del contenedor */
    right: 30px; /* 30px desde la parte derecha del contenedor */
    width: 250px; /* Ajusta el tamaño de la imagen */
    max-width: 100%;
    z-index: 3; /* Asegura que la imagen esté por encima del contenido del hero */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

.hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
}

/*.hero .btn-get-started {
    color: #fff;
    background: var(--blueviolet-color);
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    transition: 0.5s;
}*/

    /*.hero .btn-get-started:hover {
        background-color: var(--violetamedio-color);
    }
*/



/*.hero-img-background {
    display: inline-block;
    background-color: rgba(192, 192, 192, 0.5);*/ /* Fondo gris semitransparente */
    /*padding: 30px;
    border-radius: 8px;
    width: 100%;
}*/
.hero-img-background {
    display: inline-block;
    background-color: rgba(192, 192, 192, 0.6); /* Fondo blanco semitransparente */
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    max-width: 300px; /* Ajusta el ancho máximo según sea necesario */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Sombra para destacar la imagen */
    overflow: hidden; /* Oculta cualquier contenido que se desborde */
}

/*.hero-img img {
    max-width: 100%;
    height: auto;
    display: block;
    animation: up-down 7s ease-in-out infinite alternate-reverse both;
}*/
.hero-img img {
    max-width: 100%;
    height: auto;
    display: block;
    animation: up-down 7s ease-in-out infinite alternate-reverse both;
}


/* Estilos para el encabezado */
h2.text-center {
    font-size: 3rem; /* Tamaño de fuente grande */
    font-weight: bold; /* Fuente en negrita */
    color: #ffffff; /* Color blanco para contraste */
    text-transform: uppercase; /* Mayúsculas para un efecto más fuerte */
    letter-spacing: 1px; /* Espaciado entre letras */
    margin-bottom: 1.5rem; /* Espacio debajo del encabezado */
    position: relative; /* Para efectos de pseudo-elementos */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5); /* Sombra de texto para resaltar */
}

    /* Añadir un subtítulo decorativo */
    h2.text-center::before {
        content: ''; /* No muestra texto, solo el decorado */
        position: absolute; /* Posiciona el decorado */
        left: 50%;
        transform: translateX(-50%); /* Centrar horizontalmente */
        bottom: -10px; /* Posición debajo del encabezado */
        width: 60px; /* Ancho del decorado */
        height: 4px; /* Alto del decorado */
        background: linear-gradient(to right, #b552f3, #6c63ff); /* Gradiente decorativo */
        border-radius: 2px; /* Bordes redondeados */
        animation: pulse 1s infinite; /* Animación pulsante */
    }


@keyframes up-down {
    10% {
        transform: translateY(5px);
    }

    50% {
        transform: translateY(-10px); /* Reduce el rango de movimiento */
    }

    110% {
        transform: translateY(-20px);
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 20px;
        padding-top: calc(4.8rem + 28px); /* Asegúrate de mantener el padding-top en móviles */
    }

        .hero h1 {
            font-size: 28px;
            text-align: center;
        }

        .hero p {
            font-size: 16px;
            text-align: center;
        }

        .hero .btn-get-started {
            font-size: 14px;
            padding: 10px 20px;
        }

    .hero-img-container {
        position: relative;
        top: auto;
        right: auto;
        width: 100px;
        transform: none;
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
    position:relative;
    padding: 60px 0;
    background: #f8f9fa;
    background: url('../assets/img/vinilo_ventanal.jpg') no-repeat center center;
    background-size: cover;
}
  

.section-title {
    margin-bottom: 20px;
}

    .section-title h2 {
        font-size: 2.5rem;
        font-weight: 600;
        color: #333;
        text-transform: uppercase;
        position: relative;
        display: inline-block;
    }

        .section-title h2::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 50px;
            height: 3px;
            background: #007bff;
            border-radius: 2px;
        }

    .section-title p.lead {
        font-size: 1.2rem;
        color: #555;
    }

.content {
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.intro-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

    .feature-list li {
        font-size: 1rem;
        color: #333;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

    .feature-list i {
        color: #28a745;
        margin-right: 10px;
    }

.detailed-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about {
        padding: 40px 10px;
        background-size: cover;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title p.lead {
        font-size: 16px;
    }

    .content {
        padding: 10px;
    }

    .intro-text, .detailed-text {
        font-size: 14px;
    }

    .feature-list li {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 20px;
        text-transform: uppercase;
        position: relative;
    }

        .section-title h2:before {
            content: "";
            position: absolute;
            display: block;
            width: 160px;
            height: 1px;
            background: color-mix(in srgb, var(--default-color), transparent 60%);
            left: 0;
            right: 0;
            bottom: 1px;
            margin: auto;
        }

        .section-title h2::after {
            content: "";
            position: absolute;
            display: block;
            width: 60px;
            height: 3px;
            background: var(--accent-color);
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
        }

    .section-title p {
        margin-bottom: 0;
    }

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 14px;
    }
}



/*
    REUSED
*/
.highlight_color {
    font-weight: bold;
    color: #6b3381;
}



/*
    BARRA DE DESPLAZAMIENTO
*/

nav::-webkit-scrollbar {
    width: 4px; /* Ancho de la barra de desplazamiento */
}

nav::-webkit-scrollbar-track {
    background: var(--header-top); /* Color de la pista de la barra de desplazamiento */
}

/* Eliminar las flechas en los navegadores basados en WebKit */
/*nav::-webkit-scrollbar-button {
    display: none;*/ /* Oculta las flechas */
/*}*/

nav::-webkit-scrollbar-thumb {
    background: #888; /* Color del pulgar de la barra de desplazamiento */
    border-radius: 10px; /* Bordes redondeados del pulgar */
}

    nav::-webkit-scrollbar-thumb:hover {
        background: #555; /* Color del pulgar de la barra de desplazamiento cuando se pasa el cursor sobre él */
    }
@media (max-width: 768px) {
    nav::-webkit-scrollbar {
        width: 2px;
    }
}

/* Para Firefox */
/*nav {
    scrollbar-width: thin;*/ /* Hace la barra de desplazamiento más delgada */
    /*scrollbar-color: #888 #f1f1f1;*/ /* Color del pulgar y pista de la barra de desplazamiento */
/*}*/


.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: 500;
}

    .btn-primary:hover {
        background-color: #0056b3;
        border-color: #004494;
    }

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    text-align: center;
}

    .btn-secondary:hover {
        background-color: #5a6268;
        border-color: #545b62;
    }

@media (max-width: 768px) {
    .btn-primary, .btn-secondary {
        padding: 8px 12px;
        font-size: 14px;
    }
}


#content {
    padding-top: calc(28px + 4.8rem); /* Altura total del HeaderTopBar y del header */
}

/* Hero Section */


/* About Section */





/* Footer */



.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0;
}

    .footer h4 {
        margin-bottom: 20px;
        font-size: 18px;
        font-weight: 600;
    }

    .footer p, .footer ul {
        margin: 0;
        padding: 0;
    }

    .feature-card {
        width: 90%;
        height: auto; /* Ajusta la altura automaticamente */
    }

    .footer ul {
        list-style: none;
    }

        .footer ul li {
            margin-bottom: 10px;
        }

            .footer ul li a {
                color: #fff;
                text-decoration: none;
                transition: color 0.3s;
            }

                .footer ul li a:hover {
                    color: var(--accent-color);
                }

    .footer .social-links a {
        color: #fff;
        font-size: 24px;
        margin-right: 15px;
        transition: color 0.3s;
    }

        .footer .social-links a:hover {
            color: var(--accent-color);
        }

    .footer form {
        display: flex;
        flex-direction: column;
    }

        .footer form input {
            padding: 10px;
            border: none;
            border-radius: 5px;
            margin-bottom: 10px;
        }

        .footer form button {
            padding: 10px;
            border: none;
            border-radius: 5px;
            background-color: var(--blueviolet-color);
            color: #fff;
            font-size: 16px;
            cursor: pointer;
        }

            .footer form button:hover {
                background-color: var(--violetamedio-color);
            }

@media (max-width: 768px) {
    .footer {
        padding: 40px 10px;
    }

        .footer h4 {
            font-size: 16px;
        }

        .footer p, .footer ul {
            font-size: 14px;
        }
}


/*
    TABLES
*/


/* Card header styles */
.card-header-tables {
    background-color: #e6d4f1;
    border-bottom: 1px solid #dee2e6;
    padding: 1rem;
}

    .card-header h3 {
        margin: 0;
        font-size: 1.25rem;
    }

    .card-header .btn {
        font-size: 0.875rem;
    }

/* Table styles */
.table {
    margin-bottom: 0;
}

    .table thead th {
        /*background-color: #a438ea;*/
        color: #756b7d;
    }

/* Estilos para filas alternas en la tabla */
.table-striped tbody tr:nth-child(odd) {
    background-color: #f6e8fa; /* Color de fondo para filas impares */
}

.table-striped tbody tr:nth-child(even) {
    background-color: #ffffff; /* Color de fondo para filas pares */
}

/* Estilos opcionales para hover */
.table-hover tbody tr:hover {
    background-color: #e9ecef;
}


.table-hover tbody tr:hover {
    background-color: #f8f9fa;
}



/* ------------------------------------------
    BOTONES 

------------------------------------------ */
.btn-group {
    display: flex; /* Alinea los botones horizontalmente */
    gap: 10px; /* Espacio entre los botones */
    justify-content: center; /* Centra los botones horizontalmente */
    margin-top: 20px; /* Espacio superior */
    flex-wrap: wrap; /* Permite que los botones se envuelvan si es necesario */
}


.nav-link.btn-get-started {
    display: inline-block; /* Asegura que el botón se ajuste al contenido */
    font-size: 1rem; /* Tamaño de fuente */
    font-weight: bold; /* Fuente en negrita */
    color: #fff; /* Color del texto */
    background-color: #c390e2; /* Color de fondo */
    padding: 12px 24px; /* Espaciado interno (ajustado para mayor área) */
    border-radius: 8px; /* Bordes redondeados */
    text-decoration: none; /* Elimina el subrayado */
    text-align: center; /* Centra el texto dentro del botón */
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    white-space: nowrap; /* Evita que el texto se envuelva */
    margin: 5px; /* Añade un margen adicional alrededor del botón */
    max-width: 200px; /* Ajusta el ancho máximo del botón */
}
    /* Efecto de hover para los botones */
    .nav-link.btn-get-started:hover {
        background-color: #a23ac0; /* Color de fondo más oscuro */
        transform: translateY(-3px); /* Efecto de elevación */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra más prominente */
        cursor: pointer;
    }

    /* Efecto de enfoque para los botones */
    .nav-link.btn-get-started:focus {
        outline: none; /* Elimina el borde de enfoque */
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5); /* Añade un borde de enfoque */
        cursor: pointer;
    }



@media (max-width: 767.98px) {

    .feature-card {
        height: auto;
        margin: 0 auto 15px;
    }
}

@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% 0;
    }
}

/*.background-overlay {
    animation: moveBackground 30s linear infinite;
}*/

.shadow {
    /*font-size: 0.9rem;*/
    color: #f8f9fa;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 15px;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.9);*/ /* Aumentando el blur */
    /* O */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.9); /* Aumentando el desplazamiento */
    display: inline-block;
    max-width: 100%; /* Asegura que el contenedor no exceda el ancho disponible */
}

/*----------------------
    SCROLL INDICATOR
-----------------------*/

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0) rotate(-45deg);
    }

    40% {
        transform: translateX(-50%) translateY(10px) rotate(-45deg);
    }

    60% {
        transform: translateX(-50%) translateY(5px) rotate(-45deg);
    }
}

