/* Estilos para mensajes de alerta */
.messages-container .alert {
    font-size: 1.1rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
}

.messages-container .alert-danger {
    background-color: #ffe6e6;
    color: #dc3545;
}

.messages-container .alert-success {
    background-color: #e8f5e9;
    color: #28a745;
}

.messages-container .alert-info {
    background-color: #e3f2fd;
    color: #0056b3;
}

.messages-container .alert-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
}

.message-icon {
    min-width: 40px;
}

.alert {
    transition: all 0.3s ease;
}

.alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-close {
    font-size: 1.2rem;
    opacity: 0.8;
}

:root {
    --primary-color: #0056b3;
    --text-color: #333;
    --bg-color: #fff;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.hero-section {
    padding: 6rem 0;
    background-color: var(--light-bg);
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-image {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-10px);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
}

.feature-card {
    padding: 2rem;
    border: none;
    background: var(--light-bg);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}



@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
}
