<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header {
    background-color: #0e277a;
    padding: 10px 0;
}


.logo {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.3rem;
    }
}

@media (min-width: 769px) {
    .logo {
        font-size: 1.4rem;
    }
}

@media (min-width: 1200px) {
    .logo {
        font-size: 1.7rem;
    }
}

.container {
    width: 100%;
    height: 20vh;
    display: flex;
    flex-direction: column;
}

.franja {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #0e277a;
    overflow: hidden;
}

.animated-text {
    font-size: 1.7rem;
    margin-left: 20px;
    color: rgb(255, 255, 255);
    position: relative;
    animation: fadeIn 2s;
}

@keyframes fadeIn {
    0% {
        transform: translateY(120%);
        opacity: 1;
    }
    25% {
        transform: translateY(80%);
        opacity: 1;
    }
    50% {
        transform: translateY(0);
        opacity: 1;
    }
    75% {
        transform: translateY(-90%);
        opacity: 1;
    }
    100% {
        transform: translateY(-150%);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .animated-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .animated-text {
        font-size: 1.4rem;
    }


    .franja {
        flex: none;
        height: 20vh;
    }
}

.call-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
    background-color: #0e277a;
}

.call-button {
    background-color: #01b32b;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.call-button:hover {
    background-color: #f0f32f;
}

@media (max-width: 768px) {
    .call-button {
        padding: 12px 25px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .call-button {
        padding: 11px 22px;
        font-size: 1.3rem;
    }
}

.bounce-container {
    display: flex;
    justify-content: center;
    background-color: #0e277a;
    align-items: center;
    height: 10vh;
}

.bounce-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fffbfb;
    text-align: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .bounce-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .bounce-text {
        font-size: 1.3rem;
    }
}

.independent-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.independent-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    padding: 20px;
    background-color: #ffffff;
    color: #fff; /* Texto blanco para contraste */
}

.independent-container {
    max-width: 800px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #333; /* Color del texto */
}

.independent-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #3A86FF; /* Color del tÃ­tulo */
}

.independent-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .independent-title {
        font-size: 1.6rem;
    }

    .independent-text {
        font-size: 1.2rem;
    }

    .independent-container {
        padding: 15px;
    }
}

@media (min-width: 769px) {
    .independent-title {
        font-size: 1.7rem;
    }

    .independent-text {
        font-size: 1.3rem;
    }
}

#responsive-section {
    display: auto;
    background-color: #f4f4f4;
    padding: 20px;
    margin: 10px;
    text-align: center;
    max-width: 100%;
}

#responsive-section h1 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 10px;
}

#responsive-section p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.5;
}

@media (min-width: 768px) {
    #responsive-section h1 {
        font-size: 1.6rem; /* El tamaÃ±o se ajusta en pantallas mÃ¡s grandes */
    }
    #responsive-section p {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    #responsive-section h1 {
        font-size: 1.5rem; /* Aumentamos el tamaÃ±o del tÃ­tulo para pantallas pequeÃ±as */
    }
    #responsive-section p {
        font-size: 1.2rem;
    }
}

.banner {
    position: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: #25D366; /* Color caracterÃ­stico de WhatsApp */
    color: white;
    padding: 15px 20px;
    text-align: center;
    z-index: 1000; /* Asegura que estÃ© sobre otros elementos */
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Estilos del botÃ³n de WhatsApp */
.whatsapp-button {
    background-color: white;
    color: #25D366;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease;
}

/* Responsive design: Para pantallas mÃ¡s grandes */
@media (min-width: 768px) {
    .banner {
        padding: 20px;
    }

    .banner h2 {
        font-size: 1.4rem;
    }

    .whatsapp-button {
        font-size: 1.3rem;
        padding: 15px 30px;
    }
}

.elegant-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.footer-text {
    margin: 0;
    font-size: 1rem;
}

.footer-links {
    margin-top: 10px;
}

.footer-link {
    color: #c9d2fa;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
    color: #f39c12;
    transform: translateY(-3px);
}

/* Efecto animado para el footer */
@keyframes elegant-glow {
    0% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }
    100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 600px) {
    .footer-text {
        font-size: 1rem;
    }

    .footer-link {
        display: block;
        margin: 5px 0;
    }
}

.seccion-imagen-nucia {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f0f0f0;
    margin: 20px auto;
    border-radius: 8px;
    max-width: 800px;
}

.contenido {
    text-align: center;
}

.imagen-animada {
    max-width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.imagen-animada:hover {
    transform: scale(1.1); 
}

.texto-descriptivo {
    margin-top: 10px;
    font-size: 1.2em;
    color: #333; 
    line-height: 1.5;
}</pre></body></html>