/* ============================================================
   TOURAGO THEME - Consolidated Styles
   Asociación Venezuela Vigo
   ============================================================ */

/* ==============================================================
   1. CSS VARIABLES
   ============================================================== */
:root {
    /* Colores corporativos del logo */
    --vnzla-azul: #1B4F91;
    --vnzla-azul-rgb: 27, 79, 145;
    --vnzla-azul-dark: #143D70;
    --vnzla-azul-light: #2E7BBF;

    --vnzla-amarillo: #E8A000;
    --vnzla-amarillo-rgb: 232, 160, 0;
    --vnzla-amarillo-light: #FFB81C;

    --vnzla-rojo: #CF2032;
    --vnzla-rojo-rgb: 207, 32, 50;

    /* Override Bootstrap primary */
    --bs-primary: var(--vnzla-azul);
    --bs-primary-rgb: var(--vnzla-azul-rgb);
    --bs-primary-dark: var(--vnzla-azul-dark);
    --bs-primary-light: var(--vnzla-azul-light);

    /* Header */
    --header-logo-height: 50px;
    --header-logo-height-mobile: 40px;
    --header-accent: var(--vnzla-azul);
    --header-accent-rgb: var(--vnzla-azul-rgb);
}

/* ==============================================================
   2. GLOBAL BASE
   ============================================================== */
html {
    scroll-behavior: smooth;
}

a {
    color: var(--vnzla-azul);
}

a:hover {
    color: var(--vnzla-azul-dark);
}

.text-primary {
    color: var(--vnzla-azul) !important;
}

.bg-primary {
    background-color: var(--vnzla-azul) !important;
}

/* Button overrides */
.btn {
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-lg {
    padding: 0.75rem 2rem;
}

.btn-primary {
    background-color: var(--vnzla-azul);
    border-color: var(--vnzla-azul);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--vnzla-azul-dark);
    border-color: var(--vnzla-azul-dark);
}

.btn-outline-primary {
    color: var(--vnzla-azul);
    border-color: var(--vnzla-azul);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--vnzla-azul);
    border-color: var(--vnzla-azul);
    color: #fff;
}

.btn-accent {
    background: var(--vnzla-amarillo);
    border-color: var(--vnzla-amarillo);
    color: #1a1a1a;
    font-weight: 600;
}

.btn-accent:hover,
.btn-accent:focus {
    background: var(--vnzla-amarillo-light);
    border-color: var(--vnzla-amarillo-light);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 160, 0, 0.3);
}

/* ==============================================================
   3. HEADER & NAVIGATION
   ============================================================== */
.header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.logo-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Logo */
.logo img {
    height: var(--header-logo-height);
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.logo-mobile img {
    height: var(--header-logo-height-mobile);
    width: auto;
}

/* Desktop Navigation */
.navbar ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--header-accent);
    background: rgba(var(--header-accent-rgb), 0.1);
    transform: translateY(-2px);
}

.nav-item.active .nav-link {
    color: var(--header-accent);
}

.nav-link:hover i {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 200px;
    animation: fadeInDown 0.3s ease;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease, color 0.2s ease;
    border: none;
    background: none;
}

.dropdown-item:hover {
    background: rgba(var(--header-accent-rgb), 0.1);
    color: var(--header-accent);
}

.dropdown-item:hover i {
    color: var(--header-accent);
    transform: translateX(5px);
}

/* User Actions */
.user-actions {
    gap: 1rem;
    margin-left: 1.5rem;
}

.language-switcher .btn {
    border-radius: 20px;
    padding: 0.5rem 1rem;
}

.login-section .btn {
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(var(--header-accent-rgb), 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--header-accent-rgb), 0.4);
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    background: none;
    border: 2px solid #e5e7eb;
    color: #374151;
    font-size: 1.25rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-toggle:hover {
    background: rgba(var(--header-accent-rgb), 0.1);
    color: var(--header-accent);
}

/* Mobile Offcanvas */
.offcanvas {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
}

.offcanvas-body {
    padding: 1.5rem;
}

.mobile-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    font-size: 1.1rem;
    transition: color 0.3s ease, background-color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding-left: 1rem;
    border-radius: 8px;
}

.mobile-nav .nav-link i {
    width: 24px;
    text-align: center;
}

.mobile-nav .collapse .nav-link {
    padding: 0.75rem 0;
    font-size: 1rem;
    border-bottom: none;
}

.mobile-nav .collapse .nav-link:hover {
    padding-left: 1rem;
}

/* Mobile Actions */
.mobile-actions {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.mobile-actions h6 {
    color: rgba(255, 255, 255, 0.8);
}

.mobile-actions .btn-group .btn {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.mobile-actions .btn-group .btn.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.mobile-actions .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.mobile-actions .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* ==============================================================
   4. HERO & SLIDER
   ============================================================== */

/* --- Hero Association --- */
.hero-association {
    position: relative;
    background: linear-gradient(135deg, var(--vnzla-azul) 0%, var(--vnzla-azul-dark) 100%);
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    color: var(--vnzla-amarillo-light);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    color: #fff;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-title .text-accent {
    color: var(--vnzla-amarillo);
    display: block;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat__value {
    color: var(--vnzla-amarillo);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.hero-stat__label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
    margin-top: 0.25rem;
}

/* Hero Visual / Shapes */
.hero-visual {
    position: relative;
    height: 400px;
}

.hero-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape--1 {
    width: 200px;
    height: 200px;
    background: var(--vnzla-amarillo);
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    opacity: 0.9;
}

.shape--2 {
    width: 150px;
    height: 150px;
    background: var(--vnzla-rojo);
    top: 40%;
    right: 15%;
    animation-delay: 2s;
    opacity: 0.85;
}

.shape--3 {
    width: 120px;
    height: 120px;
    background: var(--vnzla-azul-light);
    bottom: 15%;
    left: 35%;
    animation-delay: 4s;
    opacity: 0.8;
}

/* --- Custom Slider --- */
.slider-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.slider-item {
    display: none;
    position: relative;
    min-height: 60vh;
    padding: 40px 0;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.slider-item.active {
    display: block;
    animation: slideIn 0.8s ease-in-out;
}

.slider-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    padding: 20px;
}

.slider-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.slider-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

.slider-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.slider-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slider-dots {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 3;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: white;
    transform: scale(1.2);
}

.slider-prev,
.slider-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    user-select: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 3;
}

.slider-next {
    right: 20px;
}

.slider-prev {
    left: 20px;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.color-text {
    color: var(--vnzla-azul) !important;
    background: linear-gradient(45deg, var(--vnzla-azul), var(--vnzla-azul-light)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.home-slider-area {
    opacity: 0;
    animation: fadeIn 1s ease-in-out 0.5s forwards;
}

/* ==============================================================
   5. SECTION COMMON STYLES
   ============================================================== */
.section-badge {
    display: inline-block;
    background: rgba(var(--vnzla-azul-rgb), 0.1);
    color: var(--vnzla-azul);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 0.75rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, var(--vnzla-azul), var(--vnzla-azul-light));
    border-radius: 2px;
}

.text-start .section-title::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    color: var(--bs-secondary);
    font-size: 1.0625rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* ==============================================================
   6. ACTIVITIES SECTION (Events & Courses Tabs)
   ============================================================== */
.activities-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.activities-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.activities-tabs {
    display: flex;
    gap: 0.5rem;
}

.activities-tab {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--bs-secondary);
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.activities-tab:hover {
    color: var(--vnzla-azul);
    background: rgba(var(--vnzla-azul-rgb), 0.05);
}

.activities-tab.active {
    background: var(--vnzla-azul);
    color: #fff;
    border-color: var(--vnzla-azul);
}

.activities-tab i {
    font-size: 1.125rem;
}

.activities-actions {
    display: flex;
    gap: 0.75rem;
}

.activities-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.activities-panel.active {
    display: block;
}

/* ==============================================================
   7. CARDS
   ============================================================== */

/* --- Activity Cards (Events & Courses) --- */
.activity-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.18);
}

.activity-card__image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.activity-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-card__image img {
    transform: scale(1.08);
}

.activity-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-card__placeholder--event {
    background: linear-gradient(135deg, var(--vnzla-azul) 0%, var(--vnzla-azul-dark) 100%);
}

.activity-card__placeholder--course {
    background: linear-gradient(135deg, var(--vnzla-rojo) 0%, #a01828 100%);
}

.activity-card__placeholder i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.3);
}

.activity-card__date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--vnzla-amarillo);
    color: #1a1a1a;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.activity-card__date--course {
    background: var(--vnzla-rojo);
    color: #fff;
}

.activity-card__date .day {
    display: block;
    font-size: 1.5rem;
}

.activity-card__date .month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

.activity-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.activity-card__badge--course {
    background: rgba(207, 32, 50, 0.85);
}

.activity-card__body {
    padding: 1.25rem;
    flex-grow: 1;
}

.activity-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.activity-card__title a {
    color: var(--bs-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.activity-card__title a:hover {
    color: var(--vnzla-azul);
}

.activity-card--course .activity-card__title a:hover {
    color: var(--vnzla-rojo);
}

.activity-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    color: var(--bs-secondary);
}

.activity-card__meta span {
    display: inline-flex;
    align-items: center;
}

.activity-card__meta i {
    color: var(--vnzla-azul);
    margin-right: 0.25rem;
}

.activity-card--course .activity-card__meta i {
    color: var(--vnzla-rojo);
}

.activity-card__text {
    font-size: 0.9rem;
    color: var(--bs-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.activity-card__footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.activity-card__link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--vnzla-azul);
    text-decoration: none;
    transition: color 0.2s ease;
}

.activity-card__link:hover {
    color: var(--vnzla-azul-dark);
}

.activity-card__link i {
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.activity-card__link:hover i {
    transform: translateX(4px);
}

.activity-card__link--course {
    color: var(--vnzla-rojo);
}

.activity-card__link--course:hover {
    color: #a01828;
}

.activity-card .activity-card__image + .activity-card__body .activity-card__title {
    font-size: 1.0625rem;
}

/* --- News Cards --- */
.news-section {
    background: #fff;
}

.news-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.news-card:hover {
    box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.15);
}

.news-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.news-card:hover .news-card__image img {
    opacity: 0.9;
}

.news-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card__placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.4);
}

.news-card__category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--vnzla-azul);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.news-card__body {
    padding: 1.5rem;
    flex-grow: 1;
}

.news-card__date {
    color: var(--bs-secondary);
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
}

.news-card__date i {
    color: var(--vnzla-amarillo);
}

.news-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.news-card__title a {
    color: var(--bs-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-card__title a:hover {
    color: var(--vnzla-azul);
}

.news-card__excerpt {
    font-size: 0.9rem;
    color: var(--bs-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.news-card__footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.news-card__link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--vnzla-azul);
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-card__link:hover {
    color: var(--vnzla-azul-dark);
}

.news-card__link i {
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.news-card__link:hover i {
    transform: translateX(4px);
}

/* --- Event Cards --- */
.events-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.event-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
}

.event-card__image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-card__image img {
    transform: scale(1.1);
}

.event-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--vnzla-azul) 0%, var(--vnzla-azul-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-card__placeholder i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.3);
}

.event-card__date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--vnzla-amarillo);
    color: #1a1a1a;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.event-card__date .day {
    display: block;
    font-size: 1.5rem;
}

.event-card__date .month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

.event-card__category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.event-card__content {
    padding: 1.25rem;
    flex-grow: 1;
}

.event-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.event-card__title a {
    color: var(--bs-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.event-card__title a:hover {
    color: var(--vnzla-azul);
}

.event-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    color: var(--bs-secondary);
}

.event-card__meta i {
    color: var(--vnzla-azul);
}

.event-card__excerpt {
    font-size: 0.9rem;
    color: var(--bs-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.event-card__footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* --- Membership Cards --- */
.membership-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.membership-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.membership-card .card-header {
    padding: 1.5rem;
    border-bottom: none;
}

.membership-card .card-body {
    padding: 2rem 1.5rem;
}

.membership-card .card-footer {
    padding: 1.5rem;
    background: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--vnzla-azul), var(--vnzla-azul-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.membership-card:hover::before {
    transform: scaleX(1);
}

.price-section {
    padding: 1rem 0;
}

.price {
    line-height: 1;
}

.period {
    font-size: 1rem;
}

.benefits-list li {
    padding: 0.25rem 0;
    font-size: 0.95rem;
}

.benefits-list i {
    width: 20px;
    text-align: center;
}

/* --- Team Cards --- */
.team-hero {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark, #1a365d) 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.team-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.team-hero__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.team-hero__title {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.team-hero__subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.team-section {
    padding: 5rem 0;
}

.team-section--leadership {
    background: var(--bs-light, #f8f9fa);
}

.team-section--technical {
    background: #fff;
}

.team-section__label {
    display: inline-block;
    color: var(--bs-primary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.team-section__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--bs-dark, #212529);
    margin-bottom: 1rem;
}

.team-section__description {
    color: var(--bs-secondary, #6c757d);
    font-size: 1.0625rem;
    max-width: 600px;
    margin: 0 auto;
}

.team-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.team-card--featured {
    text-align: center;
}

.team-card--featured .team-card__image-wrapper {
    padding: 2rem 2rem 0;
}

.team-card--featured .team-card__image {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 4px solid var(--bs-primary);
    box-shadow: 0 0 0 8px rgba(var(--bs-primary-rgb), 0.1);
}

.team-card--featured .team-card__content {
    padding: 1.5rem 2rem 2rem;
}

.team-card--compact .team-card__image-wrapper {
    padding: 1.5rem 1.5rem 0;
}

.team-card--compact .team-card__image {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--bs-primary);
}

.team-card--compact .team-card__content {
    padding: 1.25rem 1.5rem 1.5rem;
    text-align: center;
}

.team-card__image-wrapper {
    position: relative;
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card__image img {
    transform: scale(1.1);
}

.team-card__avatar {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark, #1a365d) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card__avatar span {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
}

.team-card__avatar--small span {
    font-size: 2rem;
}

.team-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(var(--bs-primary-rgb), 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.team-card:hover .team-card__overlay {
    opacity: 1;
}

.team-card__social {
    display: flex;
    gap: 0.75rem;
}

.team-card__social-link {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    font-size: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.team-card__social-link:hover {
    transform: scale(1.15);
    background: var(--bs-light, #f8f9fa);
    color: var(--bs-primary);
}

.team-card__name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bs-dark, #212529);
    margin-bottom: 0.25rem;
}

.team-card__role {
    display: inline-block;
    color: var(--bs-primary);
    font-size: 0.875rem;
    font-weight: 500;
}

.team-card__bio {
    color: var(--bs-secondary, #6c757d);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-top: 1rem;
    margin-bottom: 0;
}

.team-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bs-light, #f8f9fa);
    border-radius: 1rem;
}

.team-empty i {
    font-size: 4rem;
    color: var(--bs-secondary, #6c757d);
    opacity: 0.5;
    margin-bottom: 1rem;
    display: block;
}

.team-empty p {
    color: var(--bs-secondary, #6c757d);
    font-size: 1rem;
    margin: 0;
}

.team-cta {
    padding: 0 0 5rem;
    background: #fff;
}

.team-cta__inner {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark, #1a365d) 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.team-cta__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.team-cta__inner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.team-cta__title {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.team-cta__text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.team-cta .btn-light {
    position: relative;
    z-index: 1;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-cta .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ==============================================================
   8. CTA SECTIONS
   ============================================================== */

/* CTA Membership */
.cta-membership {
    background: linear-gradient(135deg, var(--vnzla-amarillo) 0%, #cc8a00 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-membership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-membership__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.cta-membership__text h2 {
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-membership__text p {
    color: rgba(0, 0, 0, 0.75);
    font-size: 1.0625rem;
    margin-bottom: 0;
    max-width: 500px;
}

.btn-cta-membership {
    background: var(--vnzla-azul);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 79, 145, 0.3);
}

.btn-cta-membership:hover {
    background: var(--vnzla-azul-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 79, 145, 0.4);
}

/* CTA Contact */
.cta-contact {
    background: linear-gradient(135deg, var(--vnzla-azul) 0%, var(--vnzla-azul-dark) 100%);
    padding: 4rem 0;
    position: relative;
}

.cta-contact h2 {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-contact p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.0625rem;
    margin-bottom: 0;
}

.btn-cta-contact {
    background: var(--vnzla-amarillo);
    color: #1a1a1a;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn-cta-contact:hover {
    background: var(--vnzla-amarillo-light);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 160, 0, 0.35);
}

/* ==============================================================
   9. ABOUT US PAGE
   ============================================================== */
.about-association {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
}

.association-content {
    padding: 2rem 0;
}

.association-image img {
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.association-image:hover img {
    transform: scale(1.02);
}

.aboutus-hero-illustration svg {
    animation: floatSlow 8s ease-in-out infinite;
}

.aboutus-story-visual > div {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.aboutus-story-visual > div:hover {
    transform: scale(1.05) !important;
}

.col-lg-3 > .text-center.p-4:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.12) !important;
}

/* ==============================================================
   10. VOLUNTEER SECTION
   ============================================================== */
.volunteer-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
}

.volunteer-image img {
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.volunteer-image:hover img {
    transform: scale(1.02);
}

/* ==============================================================
   11. FORMS
   ============================================================== */
.modern-contact-form .form-floating {
    margin-bottom: 1.5rem;
}

.modern-contact-form .form-control {
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.modern-contact-form .form-control:focus {
    border-color: var(--vnzla-azul);
    box-shadow: 0 0 0 0.2rem rgba(var(--vnzla-azul-rgb), 0.25);
    background: white;
}

.modern-contact-form .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.modern-contact-form .form-select:focus {
    border-color: var(--vnzla-azul);
    box-shadow: 0 0 0 0.2rem rgba(var(--vnzla-azul-rgb), 0.25);
}

.modern-contact-form label {
    color: #64748b;
    font-weight: 500;
    padding-left: 0.5rem;
}

.message-textarea {
    min-height: 120px !important;
    resize: vertical;
}

.form-check {
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.form-check-input:checked {
    background-color: var(--vnzla-azul);
    border-color: var(--vnzla-azul);
}

.submit-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 25px;
    background: linear-gradient(45deg, var(--vnzla-azul), var(--vnzla-azul-light));
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(var(--vnzla-azul-rgb), 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.is-invalid {
    border-color: #dc3545 !important;
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* ==============================================================
   12. CONVENIOS / COLABORADORES SLIDER
   ============================================================== */
.convenios-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.convenios-swiper {
    padding-bottom: 3rem;
}

.convenio-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 160px;
    justify-content: center;
    position: relative;
}

.convenio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.12);
    border-color: rgba(var(--vnzla-azul-rgb), 0.15);
}

.convenio-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.convenio-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease;
    opacity: 0.85;
}

.convenio-logo.grayscale {
    filter: grayscale(100%);
}

.convenio-item:hover .convenio-logo {
    opacity: 1;
    transform: scale(1.08);
}

.convenio-item:hover .convenio-logo.grayscale {
    filter: grayscale(0%);
}

.convenio-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--bs-secondary);
}

.convenio-placeholder i {
    font-size: 2rem;
    color: var(--vnzla-azul);
    opacity: 0.4;
}

.convenio-placeholder span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--bs-dark);
    line-height: 1.3;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.convenio-category {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--bs-secondary);
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.convenio-item:hover .convenio-category {
    opacity: 1;
}

.convenios-pagination .swiper-pagination-bullet {
    background: var(--vnzla-azul);
    opacity: 0.3;
    width: 8px;
    height: 8px;
    transition: opacity 0.3s ease, width 0.3s ease;
}

.convenios-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

/* ==============================================================
   13. FOOTER
   ============================================================== */
.footer-modern {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(80, 200, 120, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-background {
    position: relative;
    z-index: 1;
}

.footer-widget {
    padding: 1.5rem 0;
    animation: fadeInUp 0.6s ease-out;
    animation-delay: calc(var(--animation-order, 1) * 0.1s);
}

.widget-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(45deg, #50c878, #667eea);
    border-radius: 2px;
}

.footer-logo img {
    max-height: 60px;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.association-description h6 {
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-text {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-modern .association-stats {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item strong {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.stat-item small {
    color: #94a3b8;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Contact */
.contact-item {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item strong {
    color: #fff;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #cbd5e1;
    font-size: 0.9rem;
}

/* Footer Links */
.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 0.5rem 0;
}

.footer-link:hover {
    color: #50c878;
    transform: translateX(5px);
}

.footer-link i {
    font-size: 1rem;
    width: 20px;
    opacity: 0.7;
}

/* Social Media Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-card {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: #cbd5e1;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.social-card i {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.social-card span {
    font-size: 0.85rem;
    font-weight: 500;
}

.social-card.facebook:hover {
    background: linear-gradient(45deg, #1877f2, #42a5f5);
    border-color: #1877f2;
}

.social-card.instagram:hover {
    background: linear-gradient(45deg, #e4405f, #fd1d1d, #fcb045);
    border-color: #e4405f;
}

.social-card.twitter:hover {
    background: linear-gradient(45deg, #1da1f2, #42a5f5);
    border-color: #1da1f2;
}

.social-card.linkedin:hover {
    background: linear-gradient(45deg, #0077b5, #42a5f5);
    border-color: #0077b5;
}

.social-card.whatsapp:hover {
    background: linear-gradient(45deg, #25d366, #4caf50);
    border-color: #25d366;
}

/* Newsletter */
.newsletter-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 25px;
    padding: 0.75rem 1.25rem;
    flex: 1;
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #50c878;
    box-shadow: 0 0 0 0.2rem rgba(80, 200, 120, 0.25);
    color: #fff;
    outline: none;
}

.newsletter-form .btn {
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    min-width: 60px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px 15px 0 0;
}

.copyright-info p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.copyright-info small {
    color: #94a3b8;
    font-size: 0.8rem;
}

.footer-legal-link {
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.footer-legal-link:hover {
    background: rgba(80, 200, 120, 0.1) !important;
    border-color: rgba(80, 200, 120, 0.3) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(80, 200, 120, 0.2);
}

.footer-legal-link i {
    font-size: 0.9rem;
    opacity: 0.8;
}

.fustibus-link {
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    border: 1px solid transparent;
}

.fustibus-link:hover {
    background: rgba(80, 200, 120, 0.1) !important;
    border-color: rgba(80, 200, 120, 0.3) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(80, 200, 120, 0.2);
}

.pulse-heart {
    animation: pulse-heart 2s ease-in-out infinite;
}

.footer-legal .list-inline-item:not(:last-child) {
    margin-right: 1.5rem;
}

.footer-legal .list-inline-item::after {
    content: '|';
    color: #64748b;
    margin-left: 1.5rem;
}

.footer-legal .list-inline-item:last-child::after {
    display: none;
}

/* ==============================================================
   14. EMPTY STATES
   ============================================================== */
.empty-state {
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(var(--vnzla-azul-rgb), 0.03);
    border-radius: 1rem;
}

.empty-state i {
    font-size: 4rem;
    color: var(--vnzla-azul);
    opacity: 0.3;
    margin-bottom: 1.5rem;
    display: block;
}

.empty-state h4 {
    color: var(--bs-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--bs-secondary);
    font-size: 1rem;
    margin-bottom: 0;
}

/* ==============================================================
   15. ANIMATIONS
   ============================================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-heart {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.stagger-animation {
    animation-delay: var(--stagger-delay, 0s);
}

/* ==============================================================
   16. RESPONSIVE
   ============================================================== */

/* --- XL and below (1199px) --- */
@media (max-width: 991.98px) {
    /* Header */
    .logo-nav-container {
        padding: 0.75rem 0;
    }

    .logo img {
        height: var(--header-logo-height-mobile);
    }

    .user-actions .language-switcher {
        display: none;
    }

    /* Hero */
    .hero-association {
        padding: 4rem 0 3rem;
    }

    .min-vh-75 {
        min-height: auto;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat__value {
        font-size: 1.5rem;
    }

    /* CTA */
    .cta-membership__content {
        flex-direction: column;
        text-align: center;
    }

    .cta-membership__text {
        text-align: center;
    }

    .cta-membership__text p {
        max-width: 100%;
    }

    /* Activities */
    .activities-header {
        flex-direction: column;
        align-items: stretch;
    }

    .activities-tabs {
        justify-content: center;
    }

    /* Team */
    .team-hero {
        padding: 4rem 0 3rem;
    }

    .team-section {
        padding: 4rem 0;
    }

    .team-card--featured .team-card__image {
        width: 150px;
        height: 150px;
    }

    .team-cta__inner {
        padding: 2.5rem;
        text-align: center;
    }

    /* About Us */
    .aboutus-story-visual {
        min-height: 350px !important;
    }

    .aboutus-story-visual > div:nth-child(1) {
        left: 5% !important;
        width: 200px !important;
        height: 200px !important;
    }

    .aboutus-story-visual > div:nth-child(2) {
        right: 0 !important;
        width: 150px !important;
        height: 150px !important;
    }

    .aboutus-story-visual > div:nth-child(3) {
        left: 15% !important;
        width: 170px !important;
    }
}

/* --- Tablet and below (768px) --- */
@media (max-width: 767.98px) {
    /* Header */
    .user-actions .login-section .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    /* Hero */
    .hero-association {
        padding: 3rem 0 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-stat {
        flex: 1;
        min-width: 100px;
        text-align: center;
    }

    /* Cards */
    .event-card__meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .membership-card {
        margin-bottom: 2rem;
    }

    .association-stats {
        margin-top: 2rem;
    }

    .volunteer-section .row {
        flex-direction: column-reverse;
    }

    .volunteer-section .col-lg-6:first-child {
        margin-top: 2rem;
    }

    /* Slider */
    .slider-item {
        min-height: 50vh;
        padding: 30px 0;
    }

    .slider-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .slider-description {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .slider-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .slider-buttons .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
        width: auto;
        min-width: 200px;
    }

    .slider-prev,
    .slider-next {
        padding: 12px;
        font-size: 16px;
        margin-top: -25px;
    }

    .slider-next {
        right: 10px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-dots {
        bottom: 15px;
    }

    .dot {
        height: 10px;
        width: 10px;
        margin: 0 3px;
    }

    /* Team */
    .team-hero {
        padding: 3rem 0 2.5rem;
    }

    .team-section {
        padding: 3rem 0;
    }

    .team-card--featured .team-card__image {
        width: 130px;
        height: 130px;
    }

    .team-card--featured .team-card__content {
        padding: 1.25rem 1.5rem 1.5rem;
    }

    .team-card--compact .team-card__image {
        width: 100px;
        height: 100px;
    }

    .team-cta__inner {
        padding: 2rem 1.5rem;
    }

    .team-cta .btn-light {
        width: 100%;
    }

    /* Footer */
    .footer-widget {
        padding: 1rem 0;
        margin-bottom: 2rem;
    }

    .footer-modern .association-stats .row {
        text-align: center;
    }

    .footer-modern .association-stats .col-4 {
        margin-bottom: 1rem;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-form {
        margin-top: 1rem;
    }

    .newsletter-form .d-flex {
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-form .btn {
        align-self: flex-end;
        min-width: 120px;
    }

    .footer-legal {
        text-align: center !important;
        margin-top: 1.5rem;
    }

    .footer-legal .list-inline {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-legal .list-inline-item {
        display: block;
        margin: 0 !important;
    }

    .footer-legal .list-inline-item::after {
        display: none;
    }

    .widget-title {
        font-size: 1.1rem;
    }

    .contact-item {
        padding: 0.5rem;
    }

    .footer-legal .d-flex {
        flex-direction: column;
        gap: 0.5rem !important;
    }

    .footer-legal-link {
        font-size: 0.9rem;
        padding: 0.5rem 1rem !important;
    }

    .developed-by {
        font-size: 0.9rem;
    }

    .copyright-info p {
        font-size: 0.8rem;
    }

    /* About Us */
    .aboutus-story-visual {
        min-height: 280px !important;
    }

    .aboutus-story-visual > div:nth-child(1) {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        height: auto !important;
        padding: 1.5rem !important;
        margin-bottom: 1rem;
    }

    .aboutus-story-visual > div:nth-child(2),
    .aboutus-story-visual > div:nth-child(3) {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 48% !important;
        height: auto !important;
        display: inline-flex !important;
    }

    .aboutus-story-visual {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
}

/* --- Mobile small (576px) --- */
@media (max-width: 575.98px) {
    /* Activities */
    .activities-tabs {
        flex-direction: column;
    }

    .activities-tab {
        justify-content: center;
    }

    /* CTA */
    .cta-membership {
        padding: 3rem 0;
    }

    .cta-membership__text h2 {
        font-size: 1.5rem;
    }

    .membership-card .card-body {
        padding: 1.5rem 1rem;
    }

    .price {
        font-size: 2.5rem !important;
    }

    .association-stats h4 {
        font-size: 1.5rem;
    }

    /* Team */
    .team-hero__badge {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .team-card__avatar span {
        font-size: 2.5rem;
    }

    .team-card__avatar--small span {
        font-size: 1.75rem;
    }

    /* Convenios */
    .convenio-item {
        height: 130px;
        padding: 1rem 0.75rem;
    }

    .convenio-logo {
        max-height: 60px;
    }

    /* Footer */
    .social-grid {
        grid-template-columns: 1fr;
    }

    .footer-modern .association-stats {
        padding: 0.75rem;
    }

    .stat-item strong {
        font-size: 1.25rem;
    }

    .footer-text {
        font-size: 0.9rem;
    }

    .newsletter-section {
        padding: 1.5rem !important;
    }

    .footer-bottom {
        border-radius: 0;
    }

    .footer-legal-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem !important;
    }

    .developed-by .d-inline-flex {
        flex-direction: column;
        gap: 0.2rem;
    }
}

/* --- Mobile XS (480px) --- */
@media (max-width: 480px) {
    .slider-item {
        min-height: 45vh;
        padding: 20px 0;
    }

    .slider-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .slider-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .slider-buttons .btn {
        padding: 8px 20px;
        font-size: 0.85rem;
        min-width: 180px;
    }

    .slider-content {
        padding: 15px;
    }
}

/* ==============================================================
   17. ACCESSIBILITY
   ============================================================== */
.membership-card:focus-within,
.news-card:focus-within {
    outline: 2px solid var(--vnzla-azul);
    outline-offset: 2px;
}

.footer-link:focus,
.social-card:focus {
    outline: 2px solid #50c878;
    outline-offset: 2px;
}

/* ==============================================================
   18. PRINT STYLES
   ============================================================== */
@media print {
    .cta-contact,
    .cta-membership,
    .news-section,
    .volunteer-section {
        background: white !important;
        color: black !important;
    }

    .membership-card,
    .news-card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }

    .footer-modern {
        background: white !important;
        color: black !important;
    }

    .footer-modern * {
        color: black !important;
    }

    .social-grid,
    .newsletter-section {
        display: none;
    }
}
