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

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #1a1a1a;
    background-image: url('images/fondo.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 100vw;
    position: relative;
    overflow-x: hidden;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.logo svg {
    filter: drop-shadow(0 0 10px rgba(0, 255, 209, 0.5));
}

.company-name {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.tagline {
    font-size: 20px;
    color: white;
    font-weight: 300;
}

/* Botones */
.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    width: 50%;
}

.button {
    color: #0a0a0f;
    text-decoration: none;
    padding: 16px 24px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: block;
    border-radius: 6px;
    background: #01F8D1;
    box-shadow: 0 0 20px 0 rgba(82, 255, 136, 0.40);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px 0 rgba(1, 248, 209, 0.70);
    background: #1AFFD9;
}

.button:active {
    transform: translateY(0);
}

/* Redes Sociales */
.social-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-link {
    color: #00FFD1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-link:hover svg {
    filter: drop-shadow(0 0 8px rgba(1, 248, 209, 0.8));
}

.social-link:hover svg path {
    fill: #1AFFD9;
}

/* Carrusel */
.carousel-container {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #00FFEA;
    width: 100%;
    overflow: hidden;
}

#carousel-splide {
    width: 100%;
}

#carousel-splide .splide__track {
    overflow: visible;
}

#carousel-splide .splide__list {
    align-items: center;
}

.carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.carousel-item:hover {
    opacity: 1;
}

.carousel-item img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 480px) {
    .header{
        margin-top: 100px;
    }
    .container {
        border-radius: 20px;
    }

    .company-name {
        font-size: 28px;
    }

    .button {
        height: 40px;
        padding: 12px 20px;
        font-size: 15px;
    }

    .carousel-item {
        width: 70px;
        height: 35px;
    }
    .buttons-container {
        width: 80%;
    }
    
    .links-container{
        margin-top: 50px;
    }
    .social-container {
        margin-top: 30px;
    }
    .carousel-container{
        margin-top: 10px;
    }
}

.links-container{
    display: flex;
    justify-content: center;
}

.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.header{
    margin-top: 50px;
}

.highlight{
    font-weight: 500;
}