/* ===========================
   GLOBAL STYLES AND VARIABLES
   =========================== */
:root {
    --primary-color: #f39c12;
    /* Primary brand color (orange) */
    --secondary-color: #e74c3c;
    /* Secondary brand color (red) */
    --gradient-primary: linear-gradient(135deg, #f39c12, #e74c3c);
    /* Gradient for buttons and accents */
    --dark-bg: rgba(20, 20, 30, 0.95);
    /* Dark background for overlays */
    --glass-effect: rgba(255, 255, 255, 0.1);
    /* Glassmorphism effect */
    --box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    /* Common shadow for cards and sections */
    --transition-smooth: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Smooth transition curve */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

p {
    user-select: none;
    /* Prevent text selection for paragraphs */
}

/* ===========================
   FLOATING CART BUTTON
   =========================== */
.float-cart {
    position: fixed;
    right: 20px;
    top: 15%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background-color: black;
    border-radius: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    z-index: 1000;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.float-cart:hover {
    background: var(--gradient-primary);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(255, 138, 0, 0.4), 0 4px 15px rgba(255, 85, 0, 0.3);
}

/* ===========================
   HEADER AND LOGOS
   =========================== */
header {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    margin-top: 10px;
}

.info-container {
    text-align: center;
}

.cards-logo {
    position: absolute;
    left: 20px;
    top: 11%;
    transform: translateY(-50%);
    height: 80px;
}

.main-logo {
    height: 80px;
}

.slogan {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

/* ===========================
   ANIMATED COLOR BAR
   =========================== */
.color-bar {
    position: sticky;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 8px;
    background-color: green;
    animation: changeColor 5s infinite;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

@keyframes changeColor {
    0% {
        background-color: green;
    }

    25% {
        background-color: red;
    }

    50% {
        background-color: yellow;
    }

    75% {
        background-color: blue;
    }

    100% {
        background-color: green;
    }
}

/* ========================================
   NAVBAR - MAIN CONTAINER
   ======================================== */
nav.navbar {
    background-color: #333;
    position: sticky;
    top: 8px;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 50px;
    position: relative;
}

.nav-menu {
    position: relative;
    z-index: 10;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 10;
}

.colaborador-logo-nav {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    transition: transform 0.3s;
    object-fit: cover;
}

.colaborador-logo-nav:hover {
    transform: scale(1.15);
}

.social-icons-nav {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 10;
}

.social-icons-nav a {
    font-size: 20px;
    color: #fff;
    transition: color 0.3s;
}

.social-icons-nav a:hover {
    color: var(--primary-color);
}

.mobile-social-section {
    display: none;
    /* Hidden on desktop */
}

nav.navbar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

nav.navbar ul li {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

nav.navbar a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    height: 100%;
}

nav.navbar a:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

nav.navbar .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
    min-width: 200px;
    list-style-type: none;
    padding: 0;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    z-index: 1002;
}

nav.navbar .dropdown li {
    text-align: left;
    height: auto;
}

nav.navbar .dropdown a {
    padding: 10px 15px;
    border-bottom: 1px solid #555;
    height: auto;
}

nav.navbar .dropdown a:hover {
    background-color: #555;
    transform: none;
}

nav.navbar ul li:hover .dropdown {
    display: block;
}

/* Cards icon navigation item */
nav.navbar .nav-cards-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 100%;
}

nav.navbar .nav-cards-icon {
    height: 20px;
    width: auto;
    transition: transform 0.3s, filter 0.3s;
    filter: brightness(0.9);
}

nav.navbar .nav-cards-icon:hover {
    transform: scale(1.15) translateY(-2px);
    filter: brightness(1.1) drop-shadow(0 0 8px rgba(243, 156, 18, 0.6));
}

.gallery,
.gallery .slick-list,
.gallery .slick-track {
    z-index: 1;
    /* Mantener el carrusel debajo del navbar */
}

.slick-prev,
.slick-next {
    z-index: 2;
    /* Mantener las flechas del carrusel debajo del navbar */
}


/* ===========================
   MOBILE NAVIGATION
   =========================== */
#mobileMenu {
    display: none;
}

.menu-icon {
    display: none;
}

/* ===========================
   IMAGE GALLERY
   =========================== */
.gallery {
    width: 95%;
    max-width: 1920px;
    margin: 10px 0 0 40px;
    position: relative;
}

.gallery .slick-slide {
    margin: 0 0.5rem;
}

.gallery img {
    width: auto;
    height: 320px;
    object-fit: cover;
}

.gallery .slick-track {
    display: flex;
    align-items: center;
}

.slick-slide {
    transition: transform 0.5s ease;
}

.slick-center img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.slick-prev,
.slick-next {
    z-index: 1;
}

.slick-slide:not(.slick-center) img {
    transform: scale(0.9);
}

/* ===========================
   HERO SECTION (MISSION & VISION)
   =========================== */
.hero {
    margin-top: 2.5rem;
    padding: 0.25rem;
    background-color: #f0f0f0;
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.subtitles {
    display: flex;
    justify-content: space-around;
    margin-top: 1.25rem;
}

.subtitle-left,
.subtitle-right {
    width: 45%;
}

/* ===========================
   PRODUCTS SECTION
   =========================== */
#secop {
    margin-left: 1.5rem;
}

#products {
    padding: 50px 0;
    width: 100%;
}

.cards {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.card-general {
    flex: 1;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cards-derecha {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-derecha {
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

#products h3 {
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
}

#products p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.btn-acceso {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 133, 0, 0.4);
}

.btn-acceso:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 133, 0, 0.6);
}

.btn-acceso::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.btn-acceso:active {
    transform: scale(0.95);
}

.cuadro-vacio1,
.cuadro-vacio2 {
    height: 180px;
    background-color: #eaeaea;
    border-radius: 6px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.bubble {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: inset 5px 5px 15px rgba(255, 255, 255, 0.3), inset -5px -5px 15px rgba(0, 0, 0, 0.3);
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1) 30%, rgba(0, 0, 0, 0.1) 80%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    user-select: none;
    text-align: center;
}

/* ===========================
   OTHER SECTION
   =========================== */
section {
    padding: 50px 20px;
    text-align: center;
    background-color: #f4f4f4;
    margin-top: 20px;
}

section h2,
section h3 {
    color: #333;
}

/* ===========================
   FOOTER
   =========================== */
footer {
    font-family: 'Poppins', sans-serif;
    padding: 60px 40px 40px;
    background: linear-gradient(135deg, #333 0%, #222 100%);
    color: white;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease forwards;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    animation: float 20s infinite;
}

.particle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    top: 40%;
    left: 70%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.particle:nth-child(3) {
    top: 75%;
    left: 30%;
    animation-delay: 7s;
    animation-duration: 18s;
}

.particle:nth-child(4) {
    top: 20%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    top: 85%;
    left: 10%;
    animation-delay: 5s;
    animation-duration: 14s;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding: 0 15px;
    position: relative;

}

.footer-section {
    padding: 25px;
    background-color: var(--glass-effect);
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);

}

.footer-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-section:hover h3::after {
    width: 100px;
}

.footer-section.images {
    display: grid;
    place-items: center;
}


.footer-section.images img {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 12px;
    transition: var(--transition-smooth);
    filter: saturate(0.8);
}

.footer-section.images img:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    filter: saturate(1.2) brightness(1.1);
}

.footer-section.contact ul {
    list-style: none;
    padding: 0;
}

.footer-section.contact li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    transition: all 0.3s ease;
}

.footer-section.contact li:hover {
    transform: translateX(5px);
}

.footer-section.contact li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-section.contact li:hover::before {
    transform: rotate(360deg) scale(1.2);
    color: var(--secondary-color);
}

.footer-section.contact a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section.contact a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-section.contact a:hover {
    color: var(--secondary-color);
    letter-spacing: 0.5px;
}

.footer-section.contact a:hover::after {
    width: 100%;
}

.footer-section.social {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-section.social p {
    margin-top: 25px;
    color: #ecf0f1;
    font-size: 15px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.footer-section.social:hover p {
    transform: scale(1.02);
}

.footer-section.social .colaborador-logo {
    width: 70px;
    height: auto;
    margin: 15px auto 0;
    border-radius: 50%;
    border: 3px solid transparent;
    transition: var(--transition-smooth);
}

.footer-section.social .colaborador-logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    font-size: 32px;
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--glass-effect);
    text-decoration: none;

    display: flex;
    align-items: center;
    /* centra en eje Y */
    justify-content: center;
    /* centra en eje X */

    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}


.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 50%;
}

.social-icon:hover {
    transform: translateY(-10px) rotate(10deg) scale(1.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-icon:hover::before {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease forwards 0.8s;
    opacity: 0;
}

.bar-black {
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    height: 4px;
    margin-bottom: 20px;
    border-radius: 2px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.bar-black::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shine 3s infinite;
}

.copyright p {
    margin: 0;
    font-size: 14px;
    color: #ecf0f1;
    letter-spacing: 0.8px;
    opacity: 0.8;
    position: relative;
    display: inline-block;
    padding: 0 10px;
}

.copyright p::before,
.copyright p::after {
    content: '★';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 14px;
    animation: pulse 1.5s infinite alternate;
}

.copyright p::before {
    left: -15px;
    animation-delay: 0s;
}

.copyright p::after {
    right: -15px;
    animation-delay: 0.75s;
}

/* ===========================
   GENERAL ANIMATIONS
   =========================== */
@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.2;
    }

    25% {
        transform: translateY(-20px) translateX(10px) scale(1.2);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-40px) translateX(-15px) scale(1.4);
        opacity: 0.8;
    }

    75% {
        transform: translateY(-60px) translateX(5px) scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: translateY(-80px) translateX(-10px) scale(0.6);
        opacity: 0.2;
    }
}

@keyframes pulse {
    0% {
        transform: translateY(-50%) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translateY(-50%) scale(1.3);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section:nth-child(1) {
    animation: fadeIn 1s ease forwards 0.2s;
    opacity: 0;
}

.footer-section:nth-child(2) {
    animation: fadeIn 1s ease forwards 0.4s;
    opacity: 0;
}

.footer-section:nth-child(3) {
    animation: fadeIn 1s ease forwards 0.6s;
    opacity: 0;
}

/* ===========================
   MOBILE STYLES (max-width: 768px)
   =========================== */
@media screen and (max-width: 768px) {

    /* FLOAT CART */
    .float-cart {
        top: auto;
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 18px;
        background: #222;
        transform: none;
    }

    .float-cart:hover {
        transform: scale(1.1);
    }
    .nav-logo-link,
    .social-icons-nav {
        display: none !important;
    }

    .mobile-social-section {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 5px;
    }

    .colaborador-logo-mobile {
        display: none;
        height: 26px;
        width: auto;
        border-radius: 50%;
    }

    .social-icons-mobile {
        display: flex;
        gap: 10px;
        font-size: 22px;
    }

    .social-icons-mobile a {
        color: #333;
        transition: color 0.3s;
    }

    .social-icons-mobile a:hover {
        color: var(--primary-color);
    }

    /* HEADER */
    header {
        height: auto;
        flex-direction: column;
        padding: 15px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .cards-logo {
        display: none;
    }

    .main-logo {
        height: 60px;
        margin: 10px 0;
    }

    .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;

        width: 46px;
        height: 46px;

        border-radius: 50%;
        cursor: pointer;

        background: var(--gradient-primary);
        box-shadow:
            0 0 12px rgba(243, 156, 18, 0.6),
            0 0 25px rgba(231, 76, 60, 0.4);

        display: flex;
        align-items: center;
        justify-content: center;

        transition: var(--transition-smooth);
        z-index: 1002;
    }

    /* Hover effect */
    .close-btn:hover {
        transform: scale(1.1) rotate(90deg);
        box-shadow:
            0 0 18px rgba(243, 156, 18, 0.9),
            0 0 35px rgba(231, 76, 60, 0.7);
    }

    /* Active (tap feedback) */
    .close-btn:active {
        transform: scale(0.95) rotate(90deg);
    }

    /* X Icon */
    .close-btn::before,
    .close-btn::after {
        content: '';
        position: absolute;

        width: 22px;
        height: 3px;

        background-color: #fff;
        border-radius: 2px;

        box-shadow: 0 0 6px rgba(255, 255, 255, 0.7);

        transition: var(--transition-smooth);
    }

    /* Diagonal lines */
    .close-btn::before {
        transform: rotate(45deg);
    }

    .close-btn::after {
        transform: rotate(-45deg);
    }

    /* Subtle glow pulse */
    .close-btn:hover::before,
    .close-btn:hover::after {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
    }

    /* DESKTOP NAV HIDDEN */
    nav.navbar,
    .nav-logo-link,
    .social-icons-nav {
        display: none !important;
    }

    /* MOBILE MENU BUTTON */
    nav {
        position: fixed;
        top: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: var(--gradient-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        box-shadow: 0 0 18px rgba(243, 156, 18, 0.6);
        transition: var(--transition-smooth);
    }

    nav:hover {
        transform: scale(1.05);
        box-shadow: 0 0 22px rgba(231, 76, 60, 0.7);
    }

    .menu-icon {
        display: block;
        font-size: 28px;
        color: #fff;
    }

    /* MOBILE MENU OVERLAY */
    #mobileMenu {
        position: fixed;
        inset: 0;
        background: var(--dark-bg);
        backdrop-filter: blur(6px);
        z-index: 1001;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #mobileMenu.active {
        display: flex;
        animation: fadeIn 0.4s ease forwards;
    }

    #mobileMenu ul {
        list-style: none;
        padding: 0;
        width: 80%;
        text-align: center;
    }

    #mobileMenu li {
        margin: 22px 0;
        position: relative;
    }

    #mobileMenu a {
        font-size: 24px;
        color: #fff;
        text-decoration: none;
        letter-spacing: 1px;
        transition: var(--transition-smooth);
    }

    #mobileMenu a:hover {
        color: var(--primary-color);
        transform: translateY(-2px);
    }

     /* Parent item that has dropdown */
    #mobileMenu li.has-dropdown {
        position: relative;
    }

    /* Dropdown container */
    #mobileMenu .dropdown {
        display: none;
        margin-top: 12px;
        padding: 15px 0;

        background: rgba(30, 30, 40, 0.85);
        backdrop-filter: blur(8px);

        border-radius: 14px;
        box-shadow: var(--box-shadow);
        border: 1px solid var(--glass-effect);

        animation: dropdownFade 0.35s ease forwards;
    }

    /* Show dropdown when active */
    #mobileMenu .dropdown.active {
        display: block;
    }

    /* Dropdown items */
    #mobileMenu .dropdown li {
        margin: 12px 0;
        width: 100%;
    }

    #mobileMenu .dropdown a {
        font-size: 20px;
        color: #ecf0f1;
        padding: 8px 0;
        display: block;
        transition: var(--transition-smooth);
    }

    #mobileMenu .dropdown a:hover {
        color: var(--primary-color);
        transform: translateY(-2px);
        text-shadow: 0 0 6px rgba(243, 156, 18, 0.6);
    }

    /* Optional arrow indicator */
    #mobileMenu li.has-dropdown > a::after {
        content: '▾';
        margin-left: 8px;
        font-size: 14px;
        color: var(--primary-color);
        transition: transform 0.3s ease;
    }

    /* Rotate arrow when open */
    #mobileMenu li.has-dropdown.open > a::after {
        transform: rotate(180deg);
    }

    /* Dropdown animation */
    @keyframes dropdownFade {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .slick-dots {
        display: none !important;
    }

    /* GALLERY */
    .gallery {
        margin: 15px auto;
        width: 92%;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .gallery img {
        height: auto;
        max-height: 220px;
        width: 100%;
        object-fit: cover;
        border-radius: 10px;
        transition: var(--transition-smooth);
        filter: brightness(0.9);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .gallery img:hover {
        filter: brightness(1.1);
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .subtitles {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    .subtitle-left,
    .subtitle-right {
        width: 92%;
        margin-bottom: 25px;
        padding: 20px;
        background: #f8f8f8;
        border-radius: 12px;
        border: 1px solid var(--glass-effect);
        box-shadow: var(--box-shadow);
        transition: var(--transition-smooth);
    }

    .subtitle-left:hover,
    .subtitle-right:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
        border-bottom: 3px solid var(--primary-color);
    }

    .cards {
        flex-direction: column;
        gap: 25px;
        padding: 15px 0;
    }

    .card-general,
    .cards-derecha {
        width: 92%;
        margin: 0 auto;
        background: #f8f8f8;
        border-radius: 15px;
        overflow: hidden;
        backdrop-filter: blur(10px);
        border: 1px solid var(--glass-effect);
        box-shadow: var(--box-shadow);
        transition: var(--transition-smooth);
    }

    .card-general:hover,
    .cards-derecha:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(243, 156, 18, 0.15);
        border-bottom: 3px solid var(--secondary-color);
    }

    .image-container img {
        max-width: 100%;
        transition: var(--transition-smooth);
    }

    .bubble {
        width: 40px;
        height: 40px;
        font-size: 10px;
    }

    /* FOOTER */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-section {
        padding: 22px;
        border-radius: 15px;
    }

    .footer-section.images img {
        max-width: 220px;
        margin: 0 auto 18px;
        display: block;
    }

    /* SOCIAL ICONS (FIXED & CLEAN) */
    .social-icons {
        gap: 12px;
    }

    .social-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--glass-effect);
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
    }

    /* FOOTER BAR */
    .bar-black {
        width: 95%;
        margin: 15px auto;
    }
}