/* Base Styles */
:root {
    --text-color: #fff;
    --font-main: 'Montserrat', sans-serif;
    --btn-bg-dark: rgba(20, 20, 20, 0.7);
    --btn-bg-light: #ffffff;
    --btn-text-dark: #ffffff;
    --btn-text-light: #000000;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: var(--font-main);
    background-color: #000;
}

a {
    text-decoration: none;
}

/* Header */
.site-header {
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-title {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    opacity: 0.9;
}

/* Navigation */
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-link-btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background-color: var(--btn-bg-dark);
    color: var(--btn-text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.nav-link-btn:hover {
    background-color: rgba(60, 60, 60, 0.8);
    color: #fff;
}

.nav-link-btn.active {
    background-color: var(--btn-bg-light);
    color: var(--btn-text-light);
}

.nav-link-btn.highlight {
    background-color: var(--btn-bg-dark);
}

.menu-toggle {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
}

/* Mobile Menu */
.mobile-menu-collapse {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    margin-top: 10px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-list a {
    display: block;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.mobile-nav-list a.active {
    background: #fff;
    color: #000;
}

/* Slider Section */
.hero-swiper {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Slight dim to help text readability */
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    opacity: 0;
    transform: translateY(30px);
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.4);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px);
}

.swiper-slide-active .slide-title {
    animation: fadeUp 1s ease 0.5s forwards;
}

.swiper-slide-active .cta-button {
    animation: fadeUp 1s ease 3s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button:hover {
    background-color: rgba(255, 255, 255, 0.95);
    color: #000;
    transform: translateY(-2px);
    text-shadow: none;
}

/* Swiper Controls Customization */
.swiper-button-next, .swiper-button-prev {
    color: rgba(255,255,255,0.7) !important;
}

.swiper-pagination-bullet {
    background: #fff !important;
}

/* Responsive */
@media (max-width: 991px) {
    .slide-title {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .slide-title {
        font-size: 1.8rem;
    }
}

/* Footer Styles */
.site-footer {
    background-color: #111; /* Dark near-black background */
    color: #ccc;
    padding: 70px 0 60px;
    font-size: 0.95rem;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 18px; /* Espaciado idéntico a la foto */
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ccc;
}

.footer-col ul li i {
    color: #fff;
    width: 26px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #333;
    border-radius: 50%;
    font-size: 0.8rem;
    flex-shrink: 0;
}

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

.footer-col a:hover {
    color: #fff;
}

.footer-col.footer-links ul li {
    margin-bottom: 15px;
}

.btn-agenda-footer {
    display: inline-block;
    background-color: #fff;
    color: #000 !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.btn-agenda-footer:hover {
    transform: scale(1.05);
    background-color: #e0e0e0;
    text-decoration: none !important;
}
