/* ============================= */
/* RESET */
/* ============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

/* ============================= */
/* BODY */
/* ============================= */
body {
    font-family: sans-serif;
    font-size: 18px;
    line-height: 26px;
    color: #000;
}

/* ============================= */
/* IMÁGENES */
/* ============================= */

/* SOLO imágenes grandes (hero, banners) */
.img-principal {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Íconos pequeños */
.icono {
    width: 48px;
    height: auto;
}

/* ============================= */
/* TEXTOS */
/* ============================= */
h1 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 16px;
}

h2 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 14px;
}

p {
    margin-bottom: 12px;
}

/* ============================= */
/* FORMULARIOS */
/* ============================= */
.claseinput {
    width: 500px;
    padding: 6px;
    margin-bottom: 12px;
    border: 1px solid #000;
    font-size: 14px;
}

/* ============================= */
/* MENÚ */
/* ============================= */
nav {
    background: #4e94ab;
    height: 100px;
    width: 100%;
}

label.logo {
    color: white;
    font-size: 32px;
    line-height: 100px;
    padding: 0 40px;
    font-weight: bold;
}

nav label a {
    color: white;
}

nav ul {
    float: right;
    margin-right: 20px;
}

nav ul li {
    display: inline-block;
    line-height: 100px;
    margin: 0 10px;
}

nav ul li a {
    color: white;
    font-size: 18px;
}

/* ============================= */
/* MENÚ MOBILE */
/* ============================= */
.checkbtn {
    font-size: 28px;
    color: white;
    float: right;
    line-height: 100px;
    margin-right: 30px;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}

/* ============================= */
/* CONTENEDORES */
/* ============================= */
.div1 {
    width: 100%;
    padding: 20px;
}

/* ============================= */
/* BOTONES */
/* ============================= */
.btn {
    font-size: 18px;
    border-radius: 8px;
    padding: 12px 18px;
    display: inline-block;
}

.btn-green {
    background-color: #ccff33;
    color: #000;
}

.btn-blue {
    background-color: #99ffff;
    color: #000;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 1000px) {

    .checkbtn {
        display: block;
    }

    nav ul {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #4e94ab;
        top: 100px;
        left: -100%;
        text-align: center;
        transition: 0.4s;
        padding-top: 30px;
    }

    nav ul li {
        display: block;
        margin: 20px 0;
        line-height: 40px;
    }

    nav ul li a {
        font-size: 22px;
    }

    #check:checked ~ ul {
        left: 0;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    p, li {
        font-size: 17px;
    }

    .claseinput {
        width: 95%;
        font-size: 15px;
    }

    /* Íconos más pequeños en celular */
    .icono {
        width: 40px;
    }
}
/* Ícono menú hamburguesa */
.icono-menu {
    width: 32px;
    height: auto;
}

/* En celular aún más pequeño */
@media (max-width: 1000px) {
    .icono-menu {
        width: 26px;
    }
}
.img-contacto {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}
/* ==============================
   Corrección ancho inputs móvil
   ============================== */
@media (max-width: 768px) {

    .claseinput {
        width: 100%;
        max-width: 100%;
        font-size: 16px;
        box-sizing: border-box;
    }

}
@media (max-width: 768px) {

    .claseinput,
    textarea.claseinput {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box;
        font-size: 16px;
    }

    table {
        width: 100% !important;
    }

    td {
        width: 100% !important;
        display: block;
    }

}