body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0e27;
}

.hero-bg {
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f4d 50%, #0a0e27 100%);
}

#plexus-canvas, #plexus-canvas-footer {
    filter: brightness(0.7);
}

.cta-button {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #4f6bff 0%, #3651d4 100%);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px -5px rgba(79, 107, 255, 0.5);
    background: linear-gradient(135deg, #3651d4 0%, #2840b0 100%);
}

.feature-card {
    transition: all 0.3s ease;
    border-color: #374151;
    background: linear-gradient(135deg, #1a1f4d 0%, #0a0e27 100%);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #4f6bff;
    box-shadow: 0 10px 20px -5px rgba(79, 107, 255, 0.3);
}

.plan-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 100%);
}

.plan-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(79, 107, 255, 0.4);
    border-color: #4f6bff;
}

/* Location Item Styling */
.location-item {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 100%);
    border: 1px solid #374151;
}

.location-item:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #1a1f4d 0%, #2a3570 100%);
    border-color: #4f6bff;
}

/* Modal Styling */
#location-modal.active {
    display: flex;
}
#location-modal.active #location-modal-content {
    transform: scale(1);
    opacity: 1;
}

/* WhatsApp Button */
.whatsapp-button {
    transition: all 0.3s ease;
}
.whatsapp-button:hover {
    background-color: #16a34a; /* darker green-600 */
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px -5px rgba(34, 197, 94, 0.4);
}

/* Swiper Carousel Styles -- CORRIGIDO */
.media-carousel {
    width: 100%;
    max-width: 100%;
    height: 350px;
    position: relative;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 100%);
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    overflow: hidden;
    height: 350px;
}

.swiper-slide img,
.swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 350px;
}


.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px 10px 10px;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
}

.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    transition: background-color 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet-active {
    background-color: #4f6bff;
}

