/* ===============================
   Estilos generales
================================= */

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}


/* ===============================
   Navbar
================================= */

.navbar-nav .nav-link:not(.dropdown-toggle) {
    transition: color 0.3s ease, transform 0.2s ease;
}

.navbar-nav .nav-link:not(.dropdown-toggle):hover {
    color: #fd7e14;
    transform: translateY(-2px);
}

.dropdown-menu-dark .dropdown-item:hover {
    background-color: rgba(255, 0, 0, 0.2);
    color: #fff;
}

nav.navbar {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.1);
}

.navbar-collapse {
    overflow: visible;
}

.dropdown-menu {
    z-index: 2000;
}


/* Hero */

.text-shadow {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero {
    position: relative;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

.hero .btn {
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}


/* Secciones */

section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.bg-light {
    background-color: #f9f9f9 !important;
}

section h2 {
    font-size: 2.2rem;
    color: #111;
}


/* Concepto del Evento */

section .list-unstyled li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

section .list-unstyled li::before {
    content: "•";
    color: #dc3545;
    font-weight: bold;
    margin-right: 8px;
}


/* Tarjetas de eventos */

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card img {
    height: 220px;
    object-fit: cover;
}


/* Botones */

.btn-danger {
    background: #dc3545;
    border: none;
}

.btn-danger:hover {
    background: #bb2d3b;
}

.btn-outline-danger:hover {
    background: #dc3545;
    color: #fff;
}


/* Footer */

.footer {
    background: #000;
    color: #f1f1f1;
    font-size: 0.95rem;
}

.footer .footer-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    border-left: 4px solid #dc3545;
    padding-left: 8px;
}

.footer .footer-text {
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer a {
    color: #ccc;
    display: block;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #dc3545;
    transform: translateX(4px);
}

.footer .social-link {
    font-size: 1.6rem;
    color: #ccc;
    transition: all 0.3s ease;
}

.footer .social-link:hover {
    color: #dc3545;
    transform: scale(1.2);
}

.footer-copy {
    color: #aaa;
}

.footer-copy .brand {
    color: #dc3545;
    font-weight: 700;
}


/* Botones de resultados */

.resultado-btn {
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resultado-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}