/* =========================================
   SGS ABOGADOS DE FAMILIA
   Página de confirmación de registro ficha cliente completada
   ========================================= */

/* ----------------------------------------------------------
   OCULTAR EL TÍTULO AUTOMÁTICO DE LA PÁGINA
   ---------------------------------------------------------- */

.entry-title,
.page-title {
    display: none !important;
}


/* ----------------------------------------------------------
   CONTENEDOR PRINCIPAL
   ---------------------------------------------------------- */

.sgs-confirmacion {
    width: 100%;
    min-height: 72vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 90px 24px;

    background-color: #ffffff;

    box-sizing: border-box;

    font-family: inherit;
}


.sgs-confirmacion__contenedor {
    width: 100%;
    max-width: 760px;

    margin: 0 auto;

    text-align: center;
}


/* ----------------------------------------------------------
   ICONO DE CONFIRMACIÓN
   ---------------------------------------------------------- */

.sgs-confirmacion__icono {
    width: 58px;
    height: 58px;

    margin: 0 auto 28px;
}


.sgs-confirmacion__icono svg {
    display: block;

    width: 100%;
    height: 100%;
}


.sgs-confirmacion__icono circle {
    fill: none;

    stroke: #9b1d1f;
    stroke-width: 1.5;
}


.sgs-confirmacion__icono path {
    fill: none;

    stroke: #9b1d1f;
    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ----------------------------------------------------------
   TEXTO SUPERIOR
   ---------------------------------------------------------- */

.sgs-confirmacion__eyebrow {
    margin: 0 0 15px;
    padding: 0;

    color: #777777;

    font-family: inherit;
    font-size: 12px;
    font-weight: 500;

    line-height: 1.4;

    letter-spacing: 2.2px;
    text-transform: uppercase;

    text-align: center;
}


/* ----------------------------------------------------------
   TÍTULO PRINCIPAL
   ---------------------------------------------------------- */

.sgs-confirmacion h1 {
    margin: 0;
    padding: 0;

    color: #252525;

    font-family: inherit;
    font-size: clamp(32px, 4vw, 46px);
    font-weight: inherit;

    line-height: 1.2;

    text-align: center;
}


/* ----------------------------------------------------------
   LÍNEA CORPORATIVA
   ---------------------------------------------------------- */

.sgs-confirmacion__linea {
    width: 48px;
    height: 1px;

    margin: 30px auto 35px;

    background-color: #9b1d1f;
}


/* ----------------------------------------------------------
   CUERPO DE TEXTO
   ---------------------------------------------------------- */

.sgs-confirmacion__texto {
    width: 100%;
    max-width: 660px;

    margin: 0 auto;

    text-align: center;
}


.sgs-confirmacion__texto p {
    margin: 0 0 20px;
    padding: 0;

    color: #555555;

    font-family: inherit;
    font-size: 17px;
    font-weight: inherit;

    line-height: 1.8;

    text-align: center;
}


/* ----------------------------------------------------------
   TEXTO FINAL
   ---------------------------------------------------------- */

.sgs-confirmacion__cierre {
    margin: 30px 0 35px;
    padding: 0;

    color: #303030;

    font-family: inherit;
    font-size: 17px;
    font-weight: 500;

    line-height: 1.6;

    text-align: center;
}


/* ----------------------------------------------------------
   BOTÓN VOLVER AL INICIO
   ---------------------------------------------------------- */

.sgs-confirmacion__boton {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 220px !important;
    height: 54px !important;

    margin: 0 auto !important;

    /* Sube visualmente el texto */
    padding: 0 0 10px 0 !important;

    box-sizing: border-box !important;

    background-color: #9b1d1f !important;
    border: 1px solid #9b1d1f !important;
    border-radius: 0 !important;

    color: #ffffff !important;

    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1 !important;

    letter-spacing: 1px !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: uppercase !important;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}


/* HOVER Y FOCO */
.sgs-confirmacion__boton:hover,
.sgs-confirmacion__boton:focus {
    background-color: #ffffff !important;
    color: #9b1d1f !important;
    border-color: #9b1d1f !important;

    padding: 0 0 10px 0 !important;

    text-decoration: none !important;
}


/* MÓVIL */
@media (max-width: 767px) {

    .sgs-confirmacion__boton {
        width: 200px !important;
        height: 50px !important;

        padding: 0 0 7px 0 !important;

        font-size: 13px !important;
    }
}