/* ==========================================
   CALOT INDEX PUBLICO
   style_index.css
========================================== */
/* RESET */
* {
    box-sizing: border-box;
}
/* CUERPO */
body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #0b1f3a;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* CONTENEDOR PRINCIPAL */
.contenedor {
    width: 100%;
    max-width: 1000px;
    padding: 50px 25px;
    text-align: center;
}
/* LOGO */
.logo_calot {
    width: 220px;
    height: auto;
    margin-bottom: 25px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
/* FRASE PRINCIPAL */
.frase {
    font-size: 22px;
    margin: 0 auto 45px;
    color: #555;
    max-width: 600px;
    line-height: 1.4;
}
/* BOTONES */
.botones {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}
/* BOTON PRINCIPAL */
.boton {
    width: 280px;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 22px;
    background: #0b1f3a;
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(11, 31, 58, 0.12);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}
.boton:hover {
    background: #163b68;
    transform: translateY(-4px);
    box-shadow: 0 9px 20px rgba(11, 31, 58, 0.20);
}
/* ICONOS */
.icono {
    font-size: 25px;
    line-height: 1;
}
/* RESPONSIVE */
@media (max-width: 700px) {
    .contenedor {
        padding: 35px 20px;
    }
    .logo_calot {
        width: 190px;
    }
    .frase {
        font-size: 19px;
        margin-bottom: 35px;
    }
    .boton {
        width: 100%;
        max-width: 360px;
    }
}
