/*
  Decro Ingeniería SRL - hoja de estilos
  Adaptada del tema WordPress "Tema Decro" (Bootstrap 5) a sitio estático.
*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700,800');
@import url('https://fonts.googleapis.com/css?family=Lobster');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,900;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    padding-top: 90px;
}

@media (max-width: 767px) {
    body { padding-top: 80px; }
}

.lato_thin {
    font-family: 'Lato', sans-serif;
    color: rgb(70, 69, 69);
    font-style: italic;
    text-align: left;
    font-weight: 300;
}

.titulo_seccion {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    color: rgb(70, 69, 69);
}

.titulos {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.card-sidebar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: rgb(8, 7, 7);
    color: #fff;
}

.fondo-violeta {
    background-color: rgb(22, 129, 216);
}

/* nav bar -------------------------------------------- */
.header-navigation {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    line-height: 90px;
    background-color: #eeeeee;
    text-align: center;
    box-shadow: 0 14px 19px rgba(0, 0, 0, 0.12), 0 10px 10px rgba(0, 0, 0, 0.10);
    z-index: 50;
}

.header-navigation-mob {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    line-height: 80px;
    background-color: #eeeeee;
    box-shadow: 0 14px 19px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    z-index: 50;
}

.link {
    color: #121212;
    text-decoration: none;
    font-size: 17px;
    margin: 5px;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
}

a:hover.link {
    color: #007bff;
}

@media (max-width: 991px) {
    .nav-abierto { display: none; }
}

@media (min-width: 992px) {
    .nav-cerrado { display: none; }
}
/* fin nav-bar------------------------------------*/

.seccion3 {
    border-radius: 10px;
    overflow: hidden;
}

.titulo-servicio {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    color: #FFF;
}

.button-animado {
    transition: transform 0.3s ease;
}

.button-animado:hover {
    transform: scale(1.1);
}

.footer {
    background-image: url(../img/fondo-clientes.png);
    height: auto;
    padding-bottom: 30px;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #CCCCCC;
    border-top: 1px solid #DDDDDD;
}

/* boton whatsapp */
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 70px;
    right: 9px;
    font-size: 20px;
    z-index: 100;
}

.bounce {
    animation: bounce 2.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Hero (carrusel + overlay con título/subtítulo/CTA) */
.hero-wrapper {
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 5;
    pointer-events: none;
}

.hero-overlay .container {
    pointer-events: none;
    min-width: 0;
    max-width: 100%;
}

.hero-content {
    width: 100%;
    max-width: 560px;
    box-sizing: border-box;
    color: #fff;
    pointer-events: auto;
}

.hero-title {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 2.6em;
    overflow-wrap: break-word;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.15em;
    margin-top: 10px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-cta {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
}

@media (max-width: 767px) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.55);
        justify-content: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-title {
        font-size: 1.9em;
    }

    .hero-subtitle {
        font-size: 1em;
    }
}

/* Trabajos: tarjetas de proyecto */
.trabajo-card {
    cursor: pointer;
    border: none;
}

.trabajo-card img {
    height: 220px;
    object-fit: cover;
}

.trabajo-card .card-body {
    text-align: center;
}

/* Contacto */
.contacto-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contacto-form-container .is-invalid ~ .invalid-feedback {
    display: block;
}

.honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
