:root {
    --island-paradise: #A5DDE4;
    /* Pantone 14-4714 TCX */
    --salmon: #FFA177;
    /* Pantone 15-1232 TCX */
    --white-sand: #F1F0EC;
    /* Pantone 11-0602 TCX */
    --coral-blush: #EBA598;
    /* Pantone 16-1526 TCX */
    --atlantic-deep: #007681;
    /* Pantone 19-4726 TCX */
    --warm-gray: #D5D5D3;
    /* Pantone 14-4102 TCX */
    --deep-magenta: #A50050;
    /* Pantone 220 C */
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #000000;
    align-content: center;
}

.texto-logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 6em;
    color: #ffffff;
    text-align: center;
}

.navbar-brand {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 2em;
    color: #000;
}

.navbar-nav .nav-link {
    font-weight: 600;
    padding: 10px 20px;
    margin-left: 30px;
    color: #000;
}

.contacto-btn {
    background: #000;
    color: #ffffff !important;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
}

.dropdown-menu {
    border-radius: 5px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Banner */
.banner {
    position: relative;
    margin-top: 50px;
    width: 100%;
    height: 600px;
    display: flex;
    /* <-- Necesario para centrar elementos hijos */
    justify-content: center;
    align-items: center;

}

.banner-imagen {
    width: 90%;
    height: 100%;
    border-radius: 10px;
    background: url('../assets/images/banner.webp') center/cover no-repeat;
    filter: brightness(1);
    animation: fadeIn 2s ease forwards;
    box-shadow: #00000044 0px 5px 40px;

}

img.hover-brighten:hover {
    filter: brightness(1.5);
    transition: filter 0.5s ease;
}


.grupo {
    color: var(--deep-magenta) !important;
}

.grupo:hover {
    color: var(--deep-magenta) !important;
    background-color: #ffffff !important;
}


.banner-texto {
    margin-top: 10%;
    margin-left: 2%;
    color: white;
    width: 100%;
    height: 50%;
    text-align: center;
    animation: fadeIn 2s ease forwards;

}



@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Propuesta */
.propuesta {
    padding: 60px 20px;
    text-align: center;
}

.propuesta h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.propuesta p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
}

/* Servicios */
.servicios {
    background: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
}

.servicios h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;

}

.item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 30px;
    width: 200px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pcb {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.301)),
        url('../assets/images/pcb.webp') center/cover no-repeat;
}

.firmware {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.301)),
        url('../assets/images/firmware.webp') center/cover no-repeat;
}

.prototipado {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.301)),
        url('../assets/images/prototipado.webp') center/cover no-repeat;
}

.produccion {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.301)),
        url('../assets/images/produccion.webp') center/cover no-repeat;
}

.item img {
    width: 60px;
    margin-bottom: 15px;
}

.item h3 {
    font-weight: 600;
}

.item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

footer .footer-center {
    flex: 1;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5em;
    color: #000;
}

footer .footer-left,
footer .footer-right {
    flex: 1;
    text-align: center;
}

footer .footer-left {
    text-align: left;
}

footer .footer-right {
    text-align: right;
    display: flex;
    /* Flexbox activa */
    justify-content: flex-end;
    /* Pega los íconos a la derecha */
    align-items: center;
    /* Centra verticalmente */
    gap: 15px;
}



.github-icon {
    width: 24px !important;
    height: 24px !important;
    margin-left: 15px;
    vertical-align: middle;
    background: url('../assets/icons/github.png') center/cover no-repeat;
    ;
}


.instagram-icon {
    width: 24px !important;
    height: 24px !important;
    margin-left: 15px;
    vertical-align: middle;
    background: url('../assets/icons/instagram.png') center/cover no-repeat;
    ;
}

.whatsapp-icon {
    width: 24px !important;
    height: 24px !important;
    margin-left: 15px;
    vertical-align: middle;
    background: url('../assets/icons/whatsapp.webp') center/cover no-repeat;
    ;
}