html {
    font-size: 14px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #111;
}


.hero-section {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), url('/img/hero-taller.webp');
    background-size: cover;
    background-position: center;
}




.contact-card {
    background-color: #d4d0b0;
    color: #222;
    padding: 25px;
    border-radius: 20px;
    position: relative;
}

    .contact-card h4 {
        font-size: 1.5rem;
    }

    .contact-card p {
        margin: 0;
        font-size: 1rem;
    }

.contact-icon {
    font-size: 3rem;
    margin-left: 20px;
}



/* EFECTOS */

.card {
    transition: all .3s ease;
}

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(255,0,0,.4);
    }

.contact-card {
    transition: all .3s ease;
}

    .contact-card:hover {
        transform: scale(1.02);
        box-shadow: 0 10px 25px rgba(255,255,255,.2);
    }

.nav-link {
    transition: .3s;
}

    .nav-link:hover {
        color: red !important;
    }

/* Responsive */

@media(max-width:768px) {

    .hero-section {
        height: auto;
        padding: 100px 0;
        text-align: center;
    }

        .hero-section h1 {
            font-size: 2.5rem;
        }

    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-icon {
        margin-left: 0;
    }
}


/*scroll*/
html {
    scroll-behavior: smooth;
}


/*navar dinamico*/

body {
    padding-top: 80px;
}

/*PREMIUM EL HERO*/
.hero-section h1 {
    text-shadow: 0 5px 15px rgba(0,0,0,.8);
}

.hero-section .btn {
    transition: .3s;
}

    .hero-section .btn:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(255,0,0,.5);
    }


    /*whatsapp flotante*/

.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(0,0,0,.4);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: .3s;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        color: white;
    }

    /*iconos al acer clic legible*/
.contact-icon {
    cursor: pointer;
    transition: .3s;
}

    .contact-icon:hover {
        transform: scale(1.15);
    }



#langBtn {
    color: #b30000; /* rojo del texto */
    border-color: #b30000; /* rojo del contorno */
}

    #langBtn:hover {
        background-color: #b30000;
        color: #fff; /* texto blanco al pasar el cursor */
    }
