/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Rata del Header */
.header-rat {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.5rem;
    animation: ratHeader 4s ease-in-out infinite;
    z-index: 1001;
}

@keyframes ratHeader {
    0%, 100% { 
        transform: rotate(0deg) scale(1); 
        opacity: 0.8;
    }
    25% { 
        transform: rotate(5deg) scale(1.1); 
        opacity: 1;
    }
    50% { 
        transform: rotate(-3deg) scale(0.9); 
        opacity: 0.9;
    }
    75% { 
        transform: rotate(3deg) scale(1.05); 
        opacity: 1;
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h1 {
    color: #ff6b35;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ff6b35;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ff6b35" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ff6b35" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 2;
    position: relative;
    padding-top: 2rem;
}

.hero-photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
    margin-top: 2rem;
}

.hero-main-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.hero-main-photo:hover {
    transform: scale(1.05);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Ratas Decorativas */
.decorative-rat {
    position: absolute;
    font-size: 2rem;
    z-index: 1;
    animation: ratFloat 4s ease-in-out infinite;
    opacity: 0.7;
}

.rat-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.rat-2 {
    top: 70%;
    right: 12%;
    animation-delay: 2s;
}

@keyframes ratFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-15px) rotate(5deg); 
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-10px) rotate(-3deg); 
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-20px) rotate(3deg); 
        opacity: 0.9;
    }
}

/* Ratas CSS Personalizadas */
.css-rat {
    position: absolute;
    width: 40px;
    height: 30px;
    background: #8B4513;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    z-index: 1;
    opacity: 0.8;
}

.css-rat::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: #8B4513;
    border-radius: 50%;
    top: -8px;
    left: 5px;
}

.css-rat::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #8B4513;
    border-radius: 50%;
    top: -5px;
    right: 8px;
}

.rat-css-1 {
    top: 15%;
    right: 8%;
    animation: ratBounce 3s ease-in-out infinite;
}

/* Ratas en Agenda */
.rat-agenda-1 {
    top: 20%;
    left: 5%;
    animation-delay: 1s;
}

.rat-agenda-2 {
    bottom: 15%;
    right: 10%;
    animation: ratBounce 3s ease-in-out infinite 2s;
}

@keyframes ratBounce {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
    }
    50% { 
        transform: translateY(-20px) scale(1.1); 
    }
}

/* Ratas Bailando */
.dancing-rat {
    position: absolute;
    font-size: 1.5rem;
    z-index: 1;
    animation: ratDance 2s ease-in-out infinite;
    opacity: 0.8;
}

.rat-dance-1 {
    top: 25%;
    left: 8%;
    animation-delay: 0s;
}

.rat-dance-2 {
    bottom: 20%;
    right: 12%;
    animation-delay: 1s;
}

/* Ratas en Contacto */
.rat-contact-1 {
    top: 30%;
    right: 5%;
    animation-delay: 0.5s;
}

.rat-contact-2 {
    bottom: 25%;
    left: 8%;
    animation: ratBounce 3s ease-in-out infinite 1.5s;
}

@keyframes ratDance {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translateY(-10px) rotate(10deg) scale(1.1); 
    }
    50% { 
        transform: translateY(-5px) rotate(-5deg) scale(0.9); 
    }
    75% { 
        transform: translateY(-15px) rotate(8deg) scale(1.05); 
    }
}

/* Botones */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-secondary:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Secciones */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Artistas Section */
.artistas {
    padding: 5rem 0;
    background: #f8f9fa;
}

.artistas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.artista-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artista-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.artista-card.featured {
    border: 3px solid #ff6b35;
    position: relative;
}

.artista-card.featured::before {
    content: 'PRINCIPAL';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.artista-image {
    font-size: 4rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artista-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.artista-photo:hover {
    transform: scale(1.1);
}

.artista-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.artista-role {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 1rem;
}

.artista-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Carrusel de Mara */
.mara-carousel {
    grid-column: 1 / -1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.mara-carousel h3 {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.carousel-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 400px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    flex-direction: column;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    text-align: center;
}

.carousel-caption p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Controles del carrusel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 107, 53, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(255, 107, 53, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 15px;
}

.carousel-btn.next {
    right: 15px;
}

/* Indicadores */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: #ff6b35;
    transform: scale(1.2);
}

/* Agenda Section */
.agenda {
    padding: 5rem 0;
    background: white;
}

.agenda-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #ff6b35;
    background: transparent;
    color: #ff6b35;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #ff6b35;
    color: white;
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.evento-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.evento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.evento-card .evento-date {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem;
    text-align: center;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.evento-card .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.evento-card .month {
    font-size: 0.9rem;
    font-weight: 500;
}

.evento-card {
    display: flex;
    flex-direction: row;
}

.evento-info {
    flex: 1;
    padding: 1.5rem;
}

.evento-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.evento-location,
.evento-time {
    color: #666;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.evento-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.evento-artists {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.artist-tag {
    background: #f0f0f0;
    color: #666;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.evento-actions {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
}

/* Tickets Section */
.tickets {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.tickets .section-title {
    color: white;
}

.tickets .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.tickets-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ticket-benefit {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.ticket-benefit i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.ticket-benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.ticket-benefit p {
    opacity: 0.9;
}

/* Contacto Section */
.contacto {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contacto-info h3,
.contacto-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #666;
}

.contact-item i {
    color: #ff6b35;
    width: 20px;
}

.phone-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #ff6b35;
}

.contacto-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contacto-form input,
.contacto-form textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contacto-form input:focus,
.contacto-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: #ff6b35;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Rata del Footer */
.footer-rat {
    position: absolute;
    top: -20px;
    right: 50px;
    font-size: 2.5rem;
    animation: ratWave 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes ratWave {
    0%, 100% { 
        transform: rotate(0deg) scale(1); 
    }
    25% { 
        transform: rotate(10deg) scale(1.1); 
    }
    50% { 
        transform: rotate(-5deg) scale(0.9); 
    }
    75% { 
        transform: rotate(8deg) scale(1.05); 
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ff6b35;
}

.event-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.event-details h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.event-details p {
    color: #666;
    margin-bottom: 0.3rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6b35;
}

.total-price {
    background: #ff6b35;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin: 1rem 0;
}

.total-price h3 {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-image {
        align-items: center;
        padding-top: 1rem;
    }

    .hero-photo {
        margin-top: 1rem;
    }

    .hero-main-photo {
        max-width: 300px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .artistas-grid {
        grid-template-columns: 1fr;
    }

    .eventos-grid {
        grid-template-columns: 1fr;
    }

    .evento-card {
        flex-direction: column;
    }

    .evento-card .evento-date {
        min-width: auto;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .contacto-content {
        grid-template-columns: 1fr;
    }

    .tickets-info {
        grid-template-columns: 1fr;
    }

    .carousel-slides {
        height: 300px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .carousel-caption {
        padding: 1.5rem 1rem 0.5rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    /* Ratas en móviles */
    .decorative-rat {
        font-size: 1.5rem;
    }

    .css-rat {
        width: 30px;
        height: 22px;
    }

    .css-rat::before {
        width: 12px;
        height: 12px;
        top: -6px;
    }

    .css-rat::after {
        width: 6px;
        height: 6px;
        top: -4px;
    }

    .dancing-rat {
        font-size: 1.2rem;
    }

    .header-rat {
        font-size: 1.2rem;
        top: 8px;
        right: 15px;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }
}

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .evento-card .evento-date {
        flex-direction: column;
        gap: 0.5rem;
    }
}
