:root {
    --primary-color: #e63946;
    --secondary-color: #1d3557;
    --accent-color: #f1faee;
    --text-color: #293241;
    --light-bg: #f8f9fa;
    --dark-bg: #212529;
}

body {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    color: var(--text-color);
    background-color: var(--light-bg);
    line-height: 1.6;
}

/* Fix para desbordamiento horizontal en móviles */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Hero section - Imagen de Unsplash por Markus Spiske (https://unsplash.com/@markusspiske) 
   Licencia: Unsplash (https://unsplash.com/license) - Uso libre comercial y no comercial */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1533561052604-c3beb6d55b8d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 140px 0 80px;
    margin-bottom: 2rem;
    position: relative;
}

@media (max-width: 768px) {
    .hero-section {        
        padding: 100px 0 60px;
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Navigation */
.navbar {
    background-color: transparent;
    transition: background-color 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
}

.navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.7); /* Cambio de rojo a gris claro */
}

/* Estilo para el enlace activo en el menú */
.navbar-nav .nav-link.active {
    text-decoration: underline;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    color: white !important;
}

/* Personalizar el menú hamburguesa para que sea blanco en lugar de negro */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25) !important;
}

/* Search container */
.search-container {
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 10;
}

.search-box {
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.search-input {
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 1rem;
}

.search-input:focus {
    box-shadow: none;
}

.search-button {
    border-radius: 50px;
    padding: 12px 25px;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-button:hover {
    background-color: #d1303e;
    border-color: #d1303e;
    transform: translateY(-2px);
}

/* Ajuste de buscador para versión móvil */
@media (max-width: 576px) {
    .search-input {
        font-size: 0.85rem;
        padding: 15px 20px;
    }
    
    .search-button {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .search-button i {
        margin-right: 0 !important;
    }
}

/* March cards */
.march-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.march-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 180px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.card-location {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.card-location i {
    margin-right: 5px;
    color: var(--primary-color);
}

.card-text {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.badge-distance {
    font-weight: 600;
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 20px;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    margin-top: 3rem;
}

.footer-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Pagination */
.pagination {
    margin-top: 2rem;
}

.pagination .page-item .page-link {
    color: var(--secondary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    font-weight: 500;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    color: white;
}

.pagination .page-item .page-link:hover {
    background-color: rgba(29, 53, 87, 0.1);
}

.pagination .page-item.disabled .page-link {
    color: #dee2e6;
}

/* Filter section */
.filter-section {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filter-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.filter-options .form-check {
    margin-bottom: 0.5rem;
}

/* Responsive styles */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .search-container {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 100px 0 80px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .navbar-nav {
        background-color: var(--secondary-color);
        padding: 1rem;
        border-radius: 10px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .card-img-top {
        height: 150px;
    }
}

/* Estilos específicos para la página de detalle */
.detalle-page .navbar {
    background-color: var(--secondary-color) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.detalle-header {
    background-color: var(--secondary-color);
    color: white;
}

/* Estilos específicos para la página de calendario */
.calendario-page .navbar {
    background-color: var(--secondary-color) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.calendario-header {
    background-color: var(--secondary-color);
    color: white;
}

.calendar-month-events {
    padding: 1rem 0;
}

.date-badge {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.event-marker {
    flex-shrink: 0;
}

.btn-filter.active {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.tab-content {
    min-height: 400px;
}

.counter {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
    .nav-pills .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.5rem;
    }
    
    .eventos-container .card .row {
        flex-direction: column;
    }
    
    .eventos-container .card .col-md-4 {
        margin-top: 1rem;
        justify-content: flex-start !important;
    }
}

/* Estilos específicos para la página de contacto */
.contacto-page .navbar {
    background-color: var(--secondary-color) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contacto-header {
    background-color: var(--secondary-color);
    color: white;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-large {
    margin-top: 1rem;
}

.social-large .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-large .social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(29, 53, 87, 0.1);
    color: var(--secondary-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(29, 53, 87, 0.25);
}

/* Estilos para filtros en dispositivos móviles */
#filterCollapse, #calendarFilterCollapse {
    margin-bottom: 1rem;
}

#filterCollapse.show, #calendarFilterCollapse.show {
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Ajuste para botones de filtro en móvil */
@media (max-width: 576px) {
    .d-flex.flex-wrap.gap-2 {
        justify-content: center;
    }
    
    .btn-filter {
        margin-bottom: 0.5rem;
    }
    
    /* Asegurar que al cerrar el filtro en móvil no quede espacio sobrante */
    #filterCollapse:not(.show), #calendarFilterCollapse:not(.show) {
        display: none;
    }
    
    /* Añadir indicador de filtros activos */
    .filter-badge {
        display: inline-block;
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
        background: var(--primary-color);
        color: white;
        border-radius: 1rem;
        margin-left: 0.5rem;
    }
}

/* Estilos para navegación de meses en calendario */
.month-tabs-container {
    position: relative;
}

.month-tabs {
    scrollbar-width: none; /* Para Firefox */
    -ms-overflow-style: none; /* Para Internet Explorer y Edge */
}

.month-tabs::-webkit-scrollbar {
    display: none; /* Para Chrome, Safari y Opera */
}

.month-tabs .nav-link {
    white-space: nowrap;
    padding: 0.5rem 0.75rem;
    margin: 0 0.1rem;
    font-size: 0.95rem;
    border-radius: 0.5rem;
}

@media (max-width: 768px) {
    .month-tabs .nav-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
    
    /* Hacer las pestañas más compactas en móvil */
    .month-tabs-container {
        padding-bottom: 0.25rem;
    }
}

.detalle-header, .contacto-header, .calendario-header {
    background-color: var(--secondary-color);
    color: white;
    padding-top: 5rem !important; /* Más espacio superior para separar del menú */
}

@media (max-width: 576px) {
    .detalle-header, .contacto-header, .calendario-header {
        padding-top: 4rem !important; /* Algo menos de espacio en móviles */
    }
}

/* Ajustes adicionales para versión móvil */
@media (max-width: 576px) {
    /* Ajuste para el contenido principal */
    .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }
    
    /* Ajuste para tarjetas y elementos que pueden desbordarse */
    .card, .card-body {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Ajuste para elementos de formulario */
    input, select, textarea, .form-control {
        max-width: 100%;
    }
    
    /* Ajustar encabezados para evitar desbordamiento */
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
    }
    
    /* Ajustar hero section para móviles */
    .hero-content {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Ajuste para imágenes */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background-color: #2d4567; /* Un tono más claro del color secundario */
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb styles */
.breadcrumb {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.5rem 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.breadcrumb-item, .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
}

.breadcrumb-item a:hover {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

/* Ajustar breadcrumbs en dispositivos móviles en lugar de ocultarlos */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
}

/* Animaciones para contador de días */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes glow {
  0% { box-shadow: 0 0 5px rgba(220, 53, 69, 0.5); }
  50% { box-shadow: 0 0 15px rgba(220, 53, 69, 0.8); }
  100% { box-shadow: 0 0 5px rgba(220, 53, 69, 0.5); }
}

#countdown-timer {
  display: inline-block;
  transition: all 0.3s ease;
  padding: 6px 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

#countdown-timer.animate-pulse {
  animation: pulse 2s infinite ease-in-out;
}

#countdown-timer.animate-urgent {
  animation: pulse 1s infinite ease-in-out, glow 1.5s infinite ease-in-out;
}

#countdown-timer.animate-today {
  animation: pulse 0.8s infinite ease-in-out, glow 1s infinite ease-in-out;
}

/* Estilos para la sección de Blog */

/* Header del blog */
.blog-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 140px 0 60px;
    margin-bottom: 2rem;
    position: relative;
}

.blog-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-header-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-header-content p {
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 300;
}

/* Tarjetas de blog */
.blog-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    height: 220px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

.blog-card-image-link {
    overflow: hidden;
    display: block;
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-card-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-meta {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: #495057;
    margin-bottom: 1.5rem;
}

/* Posts destacados */
.featured-posts {
    margin-bottom: 3rem;
}

.featured-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: -30px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(-45deg);
    z-index: 10;
}

.featured-card-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.featured-card-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-card-title a:hover {
    color: var(--primary-color);
}

.featured-card-excerpt {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Sidebar del blog */
.blog-sidebar-section {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-sidebar-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.8rem;
}

.blog-sidebar-section .list-group-item {
    border: none;
    padding: 0.6rem 0.2rem;
    background: transparent;
}

.blog-sidebar-section .list-group-item:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.blog-sidebar-section .list-group-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-sidebar-section .list-group-item a:hover {
    color: var(--primary-color);
}

.popular-post {
    padding-bottom: 0.8rem;
}

.popular-post:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0.8rem;
}

.popular-post h6 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}

.popular-post h6 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-post h6 a:hover {
    color: var(--primary-color);
}

/* Post detalle */
.post-header {
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 2rem;
}

.post-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.post-meta {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Eliminar el espacio en blanco debajo de las imágenes */
.post-image {
    display: block;
    line-height: 0;
}

.post-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    border-radius: 8px;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
}

.post-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul, .post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.post-content blockquote {
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background-color: #f8f9fa;
    border-left: 5px solid var(--primary-color);
    font-style: italic;
    color: #495057;
}

.post-tags h5, .post-share h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Related posts */
.related-posts h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.related-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Author box */
.author-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
}

.author-box img {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-box h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.2rem;
}

/* Categorías y etiquetas */
.search-results-heading, .category-heading {
    background-color: #f8f9fa;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.search-results-heading h4, .category-heading h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.search-results-heading p, .category-heading p {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Responsive para blog */
@media (max-width: 991px) {
    .blog-header-content h1 {
        font-size: 2.2rem;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .blog-header {
        padding: 100px 0 40px;
    }
    
    .blog-header-content h1 {
        font-size: 1.8rem;
    }
    
    .post-header h1 {
        font-size: 1.6rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .post-content h2 {
        font-size: 1.5rem;
    }
    
    .post-content h3 {
        font-size: 1.3rem;
    }
}

/* Logo container and icon */
.logo-container {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 12px; /* Aumentado ligeramente el espacio entre el texto y el icono */
}

.logo-icon {
    width: 40px; /* Aumentado de 32px */
    height: 40px; /* Aumentado de 32px */
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Logo text */
.logo-text {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    font-size: 2.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin: 0;
}

/* Estilos específicos para la página de colaborar */
.colaborar-page .navbar {
    background-color: var(--secondary-color) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.colaborar-header {
    background-color: var(--secondary-color);
    color: white;
    padding-top: 5rem !important; /* Más espacio superior para separar del menú */
}

.colaborar-page .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.colaborar-page h3, 
.colaborar-page h4 {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Asegurar que los títulos del footer sean blancos */
.colaborar-page footer h4.footer-heading {
    color: white !important;
}

/* Forzar el color azul en el botón del formulario de colaboración */
.colaborar-page .btn-primary {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.colaborar-page .btn-primary:hover {
    background-color: #2d4567 !important; /* Un tono más claro del color secundario */
    border-color: #2d4567 !important;
    transform: translateY(-2px);
}

.colaborar-page .form-label {
    color: var(--text-color);
    font-weight: 500;
}

@media (max-width: 576px) {
    .colaborar-header {
        padding-top: 4rem !important; /* Algo menos de espacio en móviles */
    }
}