/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Contenido principal */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 0;
}

.logo-container {
    margin-bottom: 30px;
}

.logo {
    max-width: 300px;
    height: auto;
}

/* Animación de latido para el logo */
.pulse {
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.text-container {
    margin-top: 20px;
}

.title {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #8B4513; /* Color marrón para el título */
}

.subtitle {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #A0522D; /* Color marrón más claro para el subtítulo */
    font-style: italic;
}

.description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0;
    background-color: #f0f0f0;
    border-top: 1px solid #ddd;
    margin-top: auto;
}

.social-links {
    margin-bottom: 15px;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    color: #333;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #8B4513; /* Color marrón al pasar el cursor */
}

.copyright {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 5px;
}

.tagline {
    font-style: italic;
    color: #8B4513;
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .logo {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .logo {
        max-width: 200px;
    }
}
