body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

.logo-section {
    background-color: #ffffff;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-section {
    background: linear-gradient(135deg, #3333cc 0%, #20207d 100%);
    color: white;
    padding: 40px 0;
}

.info-section a {
    color: #eeeeee;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-section a:hover {
    color: white;
    text-decoration: underline;
    transform: translateX(5px);
}

.corporate-gray {
    color: #999999;
}

.section-title1 {
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
    font-size: 1.2rem;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
}

.contact-info {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.contact-info i {
    min-width: 25px;
}

.working-hours {
    margin-top: 20px;
}

.legal-links {
    list-style-type: none;
    padding-left: 0;
}

.legal-links li {
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.legal-links li:hover {
    transform: translateX(5px);
}

.tools-list {
    list-style-type: none;
    padding-left: 0;
}

.tools-list li {
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.tools-list li:hover {
    transform: translateX(5px);
}

.logo-container {
    height: 50px;
    /* Altura fija del contenedor */
    display: flex;
    /* Centrar con flexbox */
    align-items: center;
    /* Centrado vertical */
    justify-content: center;
    /* Centrado horizontal */
    background: transparent;
    /* Opcional, para ver el área */
}

.logo-img {
    height: 230px;
    /* Ajusta el tamaño del logo */
    width: auto;
    /* Mantiene la proporción */
}



.logo-img:hover {
    transform: scale(1.05);
}





.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    text-align: center;
    margin-top: 30px;
}

/* Efectos de animación */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* SCC PARA LA CGR */
.crc-fullwidth {
    width: 100%;
    padding: 30px 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.crc-inner {
    width: 80%;
    text-align: center;
}


.banner-crc {
    width: 80%;
    max-width: 1200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(32, 32, 125, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}
.crc-inner img {
    max-width: 100%;
    height: auto;
    border-radius: 15px; /* ajusta el valor a tu gusto */
}
