﻿/* Estilos para la sección Nosotros */
.about-content {
    padding: 0;
    margin: 20px;
}

.section-title {
    font-family: "Shojumaru", system-ui;
    color: #D92534;
    margin-bottom: 20px;
    font-size: 2rem;
    position: relative;
    padding-bottom: 10px;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: #D92534;
    }

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.logo-container {
    padding: 10px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.main-logo {
    max-width: 620px;
    height: 320px;
    transition: transform 0.3s ease;
}

    .main-logo:hover {
        transform: scale(1.05);
    }

/* Estilos para Detalles del Plan de Premios */
.premio-content {
    padding: 20px;
}

.premio-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

.premio-image {
    text-align: center;
    padding: 20px;
}

    .premio-image img {
        max-width: 100%;
        height: 180px;
        transition: transform 0.3s ease;
    }

        .premio-image img:hover {
            transform: scale(1.03);
        }

/* Estilos para las tarjetas de políticas */
.policy-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #D92534;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .policy-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

.policy-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.policy-icon {
    color: white;
    margin-right: 15px;
    font-size: 1.5rem;
}

.policy-title {
    color: white;
    font-family: "Shojumaru", system-ui;
    font-size: 1.5rem;
    margin: 0;
}

.policy-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/* Items de política */
.policy-items {
    display: grid;
    gap: 15px;
    color: #555;
}

.policy-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.item-icon {
    color: #28a745;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Sección legal */
.legal-section {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.legal-subtitle {
    color: #D92534;
    font-family: "Shojumaru", system-ui;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.legal-grid {
    display: grid;
    gap: 15px;
}

.legal-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #D92534;
}

.legal-number {
    font-weight: bold;
    color: #D92534;
    min-width: 150px;
}

.legal-desc {
    color: #555;
}

.sorteo-info {
    margin-top: 20px;
    padding: 20px;
    background: #1D1D1B;
    border-radius: 8px;
    border-left: 4px solid #D92534;
}

/* Certificación */
.certification-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: #1D1D1B;
    border-radius: 10px;
}

.certification-icon {
    color: #D92534;
}

.certification-info h4 {
    color: #D92534;
    margin-bottom: 5px;
    font-family: "Shojumaru", system-ui;
}

.certification-description {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
}

.certification-scope {
    padding: 15px;
    background: #1D1D1B;
    border-radius: 8px;
    border-left: #1D1D1B;
}

/* Objetivos de calidad */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

    .objective-item:hover {
        transform: translateY(-3px);
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.objective-icon {
    color: #D92534;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.objective-content h5 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-family: "Shojumaru", system-ui;
}

.objective-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }

    .policy-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .policy-icon {
        margin-right: 0;
    }

    .legal-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .legal-number {
        min-width: auto;
    }

    .certification-badge {
        flex-direction: column;
        text-align: center;
    }

    .objective-item {
        flex-direction: column;
        text-align: center;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
    }
}


/* Mantener estilos de galería existentes */

.container-gallery {
    background: white;
    padding-bottom: 50px;
}

.contenedor-galeria {
    display: grid;
    place-items: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.galeria {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    max-width: 1100px;
}

.contenedor-imagen {
    position: relative;
    left: 0;
    width: 900px;
    border-radius: 5px;
    height: 550px;
    overflow: hidden;
    background-color: #efefef;
    transition: 0.4s ease-in-out;
    box-shadow: 0 5px 12px rgb(0, 0, 0, 0.5);
    flex: 0.25;
}

    .contenedor-imagen img {
        height: 550px;
        width: 800px;
        object-fit: cover;
    }

    .contenedor-imagen:hover {
        flex: 2;
        cursor: pointer;
        border-radius: 8px;
    }




/* Modal más elegante */
#modalEstados .modal-content {
    border-radius: 12px;
    border-left: 6px solid #dc3545; /* Rojo Bootstrap */
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}

/* Título */
#modalEstados .modal-title {
    font-weight: 700;
    color: #dc3545;
}

/* Botón cerrar */
#modalEstados .btn-close {
    background-color: #fff;
    border-radius: 50%;
    opacity: 1;
}

/* Cuerpo */
#modalEstados .modal-body {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}






























.nosotros-hero-section {
    padding: 5px 0 0;
    margin-top: 124px; /* Compensa el navbar fixed */
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {

    .contact-hero-section {
        margin-top: 90px;
        padding: 80px 0 40px;
    }
}


@media (max-width: 768px) {

    .contact-hero-section {
        padding: 60px 0 30px;
        margin-top: 90px;
    }
}

@media (max-width: 576px) {

    .contact-hero-section {
        margin-top: 90px;
        padding: 50px 0 25px;
    }

}




/*boton Flotante*/
.flotante {
    position: fixed;
    bottom: 60px;
    right: 80px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}


.btn-flotante {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1e5ec9;
    color: white;
    border: none;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    cursor: pointer;
    transition: all .3s ease;
    animation: pulso 2.5s infinite;
}

    .btn-flotante i {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all .3s ease;
    }

    .btn-flotante:hover {
        background: #d20a11;
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    }

        .btn-flotante:hover i {
            background: rgba(255,255,255,0.3);
            transform: rotate(10deg) scale(1.1);
        }

.flotante {
    position: fixed;
    bottom: 60px;
    right: 80px;
    z-index: 9999;
}

.ondas-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.onda {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px solid #1e5ec9;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: expand-ring 2s ease-out infinite;
    opacity: 0;
}

.onda-2 {
    animation-delay: 1s;
    border-color: #ff6b35;
}

@keyframes expand-ring {
    0% {
        width: 60px;
        height: 60px;
        opacity: 0.8;
    }

    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

.btn-flotante {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1e5ec9;
    color: white;
    border: none;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    cursor: pointer;
    transition: all .3s ease;
}


