:root {
    --primary: #c62828;
    --secondary: #424242;
    --accent: #f5f5f5;
    --dark: #000000;
    --darkGray: #1c1c1c;
    --lightGray: #e0e0e0;
    --darkBlue: #0a1929;
}

body {
    background-color: var(--dark);
    color: var(--accent);
    font-family: 'Inter', sans-serif;
}

.bg-darkGray {
    background-color: var(--darkGray) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.bg-gradient-custom {
    background: linear-gradient(to bottom right, var(--dark), var(--darkGray), #2d3748);
}

.bg-gradient-primary {
    background: linear-gradient(to right, var(--primary), #d32f2f);
}

.bg-gradient-secondary {
    background: linear-gradient(to right, var(--secondary), #616161);
}

.bg-gradient-blue {
    background: linear-gradient(135deg, #0a1929, #1a365d);
}

.bg-gradient-orange {
    background: linear-gradient(135deg, #c62828, #d32f2f);
}

.bg-darkBlue {
    background-color: var(--darkBlue) !important;
}

.border-primary {
    border-color: rgba(198, 40, 40, 0.3) !important;
}

.border-secondary {
    border-color: rgba(66, 66, 66, 0.3) !important;
}

.border-accent {
    border-color: rgba(245, 245, 245, 0.2) !important;
}

.btn-gradient {
    background: linear-gradient(to right, var(--primary), #d32f2f);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(to right, #d32f2f, var(--primary));
    transform: translateY(-2px);
    color: white;
}

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--primary);
    color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--lightGray);
    margin-bottom: 3rem;
}

.card-custom {
    background-color: var(--darkGray);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stats-number {
    font-size: 2rem;
    font-weight: 700;
}

.stats-label {
    font-size: 0.875rem;
    color: var(--lightGray);
}

.backdrop-blur {
    backdrop-filter: blur(10px);
}

.navbar-custom {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.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,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.form-control, .form-select {
    background-color: var(--dark);
    border: 1px solid var(--secondary);
    color: var(--accent);
}

.form-control:focus, .form-select:focus {
    background-color: var(--dark);
    border-color: var(--primary);
    color: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(198, 40, 40, 0.25);
}

.form-control::placeholder {
    color: var(--lightGray);
}

/* Cookie banner styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--darkGray);
    color: var(--accent);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: var(--accent);
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    color: var(--lightGray);
    line-height: 1.5;
}

/* Iconos personalizados en rojo */
.icon-red {
    color: #c62828 !important;
    transition: transform 0.25s ease, color 0.25s ease;
}

.icon-red:hover {
    color: #e53935 !important;
    transform: scale(1.15);
}

.bg-white .icon-red,
.text-white .icon-red,
.icon-red {
    color: #c62828 !important;
}

.bg-white.bg-opacity-10:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.text-gray-300 {
    color: #d1d5db !important;
}

.hover-text-primary:hover {
    color: #c62828 !important;
}

.bg-black {
    background-color: #000 !important;
}

/* Estilos para enlaces del footer */
footer a {
    color: #d1d5db !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #c62828 !important;
}

.footer-links a {
    color: #d1d5db !important;
    text-decoration: none;
}

.footer-links a:hover {
    color: #c62828 !important;
}

#footer a {
    color: #d1d5db !important;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

#footer a:hover {
    color: #c62828 !important;
    text-decoration: underline;
}

/* Estilos adicionales para mejorar la visualización */
.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.border-gray-600 {
    border-color: #4b5563 !important;
}

.placeholder-gray-400::placeholder {
    color: #9ca3af !important;
}