/* Variables de color */
:root {
    --color-accent: #c41e3a;
    --color-accent-dark: #a01830;
    --color-text: #1a1a1a;
    --color-text-light: #4a4a4a;
    --color-background: #ffffff;
    --color-background-alt: #f8f9fa;
    --accent-color: #FF6B6B;
    --accent-hover: #FF5252;
    --text-primary: #2D3748;
    --text-secondary: #4A5568;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F7FAFC;
    --transition: all 0.3s ease;
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-background);
    overflow-x: hidden;
}

/* Swiper Styles */
.swiper-container {
    width: 100%;
    padding: 2rem 0;
    overflow: hidden;
}

.swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-accent);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-pagination-bullet {
    background: var(--color-accent);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--color-background-alt);
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

/* Enlaces */
a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent-dark);
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 9999px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-accent);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: white;
    color: var(--color-accent);
}

.btn-secondary:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
}

/* Tarjetas */
.card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Etiquetas */
.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    background-color: var(--color-accent);
    color: white;
}

/* Imágenes */
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gradientes */
.gradient-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

/* Utilidades */
.text-accent {
    color: var(--color-accent);
}

.bg-accent {
    background-color: var(--color-accent);
}

.text-gradient {
    background: linear-gradient(to right, var(--color-accent), var(--color-accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animaciones */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* Estilos para el header */
.header-shadow {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Estilos para el footer */
.footer-gradient {
    background: linear-gradient(to right, #1a1a1a, #2a2a2a);
}

.footer-link {
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #c41e3a;
}

/* Estilos para filtros */
.filter-active {
    background-color: #8B0000 !important;
    color: #FFD700 !important;
}

/* Estilos para móvil */
.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Estilos para el logo */
.logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Estilos para textos */
.text-theater {
    color: #FFD700;
}

.bg-theater {
    background-color: #8B0000;
}

/* Estilos para el contenido */
.prose {
    max-width: 65ch;
    margin: 0 auto;
}

.prose h1, .prose h2, .prose h3 {
    color: #1a1a1a;
    font-weight: 600;
}

.prose p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

/* Estilos para las categorías */
.category-tag {
    background-color: #2a2a2a;
    color: #FFD700;
    border: 1px solid #FFD700;
}

/* Estilos para el hero section */
.hero-gradient {
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(139,0,0,0.7));
}

/* Navegación */
.nav-link {
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-accent);
}

/* Estilos de contenedores */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Estilos de secciones */
.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--color-background-alt);
}

/* Estilos de gradientes */
.gradient-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

/* Etiquetas y categorías */
.category {
    background-color: #f3f4f6;
    color: #4a5568;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

/* Utilidades */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Estilos de footer */
.footer {
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
}

footer a {
    position: relative;
    display: inline-block;
}

footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

footer a:hover::after {
    width: 100%;
}

footer .social-icon {
    transition: transform 0.3s ease, color 0.3s ease;
}

footer .social-icon:hover {
    transform: translateY(-3px);
    color: var(--accent-color);
}

/* Estilos de formularios */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

/* Header */
header {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

header .nav-link {
    position: relative;
    font-weight: 500;
}

header .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

header .nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-enter {
    transform: translateX(100%);
}

.mobile-menu-enter-active {
    transform: translateX(0);
    transition: transform 300ms ease-in-out;
}

.mobile-menu-exit {
    transform: translateX(0);
}

.mobile-menu-exit-active {
    transform: translateX(100%);
    transition: transform 300ms ease-in-out;
} 