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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f7fe;
    color: #333;
    line-height: 1.6;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content {
    max-width: 800px;
    text-align: center;
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(103, 58, 143, 0.1);
}

/* Logo */
.logo {
    margin-bottom: 30px;
}

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

/* Textos */
h1 {
    font-size: 42px;
    font-weight: 700;
    color: #673a8f;
    margin-bottom: 15px;
}

.tagline {
    font-size: 20px;
    font-weight: 400;
    color: #9c6cc3;
    margin-bottom: 30px;
}

.description {
    margin: 30px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.description p {
    margin-bottom: 15px;
}

.description ul {
    list-style-type: none;
    margin-left: 20px;
}

.description li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.description li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-color: #673a8f;
    border-radius: 50%;
}

/* Contacto */
.contact {
    margin: 30px 0;
}

.email-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 25px;
    background-color: #673a8f;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.email-btn:hover {
    background-color: #9c6cc3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(103, 58, 143, 0.3);
}

/* Redes sociales */
.social-media {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    color: #673a8f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #9c6cc3;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .content {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    .tagline {
        font-size: 18px;
    }
}
