* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.carousel-container {
    color: white;
    position: relative;
    max-width: 1200px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.carousel {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.32, 0.72, 0, 1);
}

.slide {
    min-width: 100%;
    height: 620px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.4));
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin-left: 8%;
    padding: 2rem;
}

.slide-content h2 {
    font-size: 3.4rem;
    line-height: 1.05;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 2.2rem;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 15px 36px;
    background: var(--primary);
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.45);
}

/* Dots - con tus colores */
.dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 20;
}

.dot {
    width: 15px;
    height: 15px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.dot:hover {
    background: #4a5f8a;
    transform: scale(1.15);
}

.dot.active {
    background: var(--dark-blue);
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(241, 255, 102, 0.7);
    border-color: rgba(241, 255, 102, 0.3);
}