/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #646464;
    background: linear-gradient(180deg, #ffffff 0%, #c6a3e3ab  100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.col {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Sección del logo */
.logo-section {
    margin: 6rem auto 0 auto;
}

.logo img {
    max-width: 100%;
    max-height: 500px;
}

/* Contenido principal */
.content {
    text-align: center;
    flex: 1;
}

h3 {
    color: #3f1161ff;
    font-size: 2rem;
    font-weight: 600;
}

.description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Información de contacto */
.contact-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.social-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #3f1161ff;
    background: transparent;
    color: #3f1161ff;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(63, 17, 97, 0.3);
    background: linear-gradient(45deg, #723b99ff, #8928d3ff);
    color: white;
    border-color: #8928d3ff;
}

/* Iconos SVG */
.social-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    filter: brightness(0) saturate(100%) invert(18%) sepia(34%) saturate(3914%) hue-rotate(267deg) brightness(49%) contrast(104%);
    flex-shrink: 0;
    transition: filter 0.3s ease;
}

/* Iconos blancos al hacer hover */
.social-item:hover .social-icon {
    filter: brightness(0) invert(1);
}


/* Footer */
footer {
    text-align: center;
    margin-top: 3rem;
    color: #333;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */

/* Tablets */
@media screen and (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo h1 {
        font-size: 3rem;
    }
    
    .content {
        padding: 2rem;
    }
    
    .message h2 {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .contact-info h3 {
        font-size: 1.7rem;
    }
}

/* Móviles */
@media screen and (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .logo h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .content {
        padding: 1.5rem;
        margin-top: 1rem;
    }
    
    .message h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .social-links {
        max-width: 100%;
    }
    
    .social-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }
    
    footer {
        font-size: 0.8rem;
        margin-top: 2rem;
    }
}

/* Móviles muy pequeños */
@media screen and (max-width: 320px) {
    .logo h1 {
        font-size: 2rem;
    }
    
    .message h2 {
        font-size: 1.5rem;
    }
    
    .content {
        padding: 1rem;
    }
}