@font-face {
    font-family: "NotoSans";
    font-style: normal;
    font-weight: 100;
    src: url(./tipografias/NotoSans-Thin.ttf);
}

@font-face {
    font-family: "NotoSans";
    font-style: normal;
    font-weight: 300;
    src: url(./tipografias/NotoSans-Light.ttf);
}

@font-face {
    font-family: "NotoSans";
    font-style: normal;
    font-weight: 400;
    src: url(tipografias/NotoSans-Regular.ttf);
}

@font-face {
    font-family: "NotoSans";
    font-style: normal;
    font-weight: 500;
    src: url(tipografias/NotoSans-Medium.ttf);
}

@font-face {
    font-family: "NotoSans";
    font-style: normal;
    font-weight: 600;
    src: url(tipografias/NotoSans-SemiBold.ttf);
}

@font-face {
    font-family: "NotoSans";
    font-style: normal;
    font-weight: 700;
    src: url(tipografias/NotoSans-Bold.ttf);
}

@font-face {
    font-family: "NotoSans";
    font-style: normal;
    font-weight: 800;
    src: url(tipografias/NotoSans-ExtraBold.ttf);
}

@font-face {
    font-family: "NotoSans";
    font-style: normal;
    font-weight: 900;
    src: url(tipografias/NotoSans-Black.ttf);
}

body {
    margin: 0;
    font-family: "NotoSans";
}

/* HEADER */
header {
    background-color: #0d1c3d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo img {
    width: 250px;
    height: auto;
}

.header-text {
    text-align: right;
    font-weight: bold;
    font-size: 22px;
    line-height: 1.4;
    color: #f7a600;
    text-transform: uppercase;
}

section {
    div {
        padding: 0px 20px;
    }
}

/* HERO BLOCK */
.hero-block {
    display: flex;
    width: 100%;
    min-height: 500px;
    /* asegura un alto mínimo atractivo */
}

.hero-image {
    position: relative;
    flex: 0 0 40%;
    background: url("imagenes/policia-armada.png") no-repeat center center;
    background-size: cover;
    /* rellena el espacio */
    .plazas-box {
        position: absolute;
        right: 24px;
        bottom: 24px;
        background: rgba(13, 28, 61, 0.92);
        color: #ffd600;
        border-radius: 18px;
        box-shadow: 0 4px 24px rgba(0,0,0,0.18);
        padding: 16px 28px;
        font-family: "NotoSans", sans-serif;
        font-size: 18px;
        font-weight: 600;
        z-index: 10;
        border: 2px solid #f7a600;
        text-align: right;

        span{
            color: #fff;
            font-weight: 800;
        }
    }
}

.hero-image img {
    width: 100%;
    height: auto;
    /* Se adapta sin recortarse */
    display: block;
}

.hero-text {
    background: #444 url("imagenes/fondo-bloque1_1.png") no-repeat center center;
    background-size: cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px;
    text-align: center;
}

.hero-text p {
    font-size: 22px;
    margin-bottom: 20px;
}

.hero-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-text h3 {
    font-size: 24px;
    color: #f7a600;
    font-weight: bold;
    margin-top: 20px;
}

.info-block {
    background-color: #e8f0fa;
    /* Azul claro */
    padding: 20px 20px;
}

.info-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-box {
    background-color: #fff;
    border: 1px solid #f7a600;
    /* Amarillo */
    border-radius: 30px;
    padding: 20px 40px;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.4;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.info-logo img {
    height: 140px;
    /* Ajusta según tu diseño */
    width: auto;
}

.block-dos {
    background: url("imagenes/fondo-metodo_1.svg") no-repeat center center;
    background-size: cover;
    color: white;
    padding: 0px 40px;
}

.block-dos-padre {
    display: flex;
    padding: 0px 10%;
}

.block-dos-content {
    max-width: 700px;
    padding: 40px 0px;
}

.block-dos .pn-metodo-image {
    flex: 0 0 40%;
    text-align: center;
    display: flex;
    align-items: flex-end;

    img {
        max-width: 100%;
        height: auto;
    }
}

.block-dos p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.block-dos p strong {
    font-size: 18px;
    font-weight: bold;
}

.block-dos .highlight {
    color: #ffd600;
    /* Amarillo dorado */
    font-weight: bold;
    font-size: 19px;
}

.block-dos ul {
    list-style: none;
    padding-left: 0;
}

.block-dos ul li {
    margin-bottom: 12px;
    position: relative;
    font-size: 18px;
}

.block-dos ul li::before {
    content: "•";
    color: #ffd600;
    /* Amarillo para el punto */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.separator-two {
    background-color: #fff;
    padding: 40px 20px;
}

.separator-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.separator-content p {
    color: #003c88;
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.btn-red {
    background-color: #e42320;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    text-align: center;
    transition: background 0.3s ease;
}

.btn-red:hover {
    background-color: #c51d1b;
}

/* MINI BLOQUE TITULO */
.requisitos-title {
    background-color: #e8f0fa;
    padding: 60px 20px;
    /* más padding abajo para que sobresalga la imagen */
    text-align: center;
    position: relative;
    z-index: 1;
}

.requisitos-title h2 {
    font-size: 28px;
    font-weight: bold;
    color: #003366;
    text-transform: uppercase;
    margin: 0;
}

/* BLOQUE PRINCIPAL */
.requisitos-block {
    background-image: url("imagenes/fondo-bloque3.svg");
    background-color: #25252584;
    padding: 0px 20px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.requisitos-content {
    position: relative;
    z-index: 2;
}

.requisitos-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.requisitos-image {
    width: 100%;
    text-align: center;
    position: relative;
    top: 4px;
    /* hace que sobresalga sobre el bloque título */
    z-index: 2;
}

.requisitos-image img {
    max-width: 100%;
    height: auto;
}

.requisitos-text {
    color: #fff;
}

.requisitos-text p {
    font-size: 18px;
    line-height: 1.6;
}

.requisitos-text .highlight {
    color: #f7a600;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 18px;
}

.requisitos-text ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.requisitos-text ul li {
    margin-bottom: 10px;
    font-size: 18px;
    position: relative;
    padding-left: 20px;
}

.requisitos-text ul li::before {
    content: "•";
    color: #f7a600;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.labores-title {
    background-color: #e8f0fa;
    padding: 60px 20px;
    text-align: center;
}

.labores-title h2 {
    font-size: 28px;
    font-weight: bold;
    color: #003366;
    text-transform: uppercase;
    margin: 0;
}

/* BLOQUE PRINCIPAL */
.labores-block {
    background-image: url("imagenes/fondo-bloque-4.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 20px;
}

.labores-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.labores-text {
    flex: 0 0 60%;
    color: #fff;
}

.labores-text ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.labores-text ul li {
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.labores-text ul li::before {
    content: "•";
    color: #ffd600;
    /* Amarillo dorado */
    font-weight: bold;
    position: absolute;
    left: 0;
}

.labores-text strong {
    color: #fff;
}

.labores-image {
    width: 100%;
    text-align: center;
}

.labores-image img {
    max-width: 80%;
    height: auto;
    border-radius: 40px;
}

/* Fondo con logo fijo */
body {
    margin: 0;
}

/* BLOQUE DEL BOTÓN */
.cta-block {
    background-color: #fff, url("imagenes/escudo-policia.png");
    background-repeat: no-repeat;
    background-size: 150px;
    background-attachment: fixed;
    background-position: 90% 50%;
    text-align: center;
    padding: 40px 20px;
    background-image: url("imagenes/logo-pn-claro.svg");
}

.btn-red {
    background-color: #e42320;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-red:hover {
    background-color: #c51d1b;
}

/* BLOQUE DEL TÍTULO */
.proceso-block {
    background-color: #e8f0fa;
    /* azul claro */
    background-color: #e8f0fa, url("imagenes/escudo-policia.png");
    background-repeat: no-repeat;
    background-size: 150px;
    background-attachment: fixed;
    background-position: 90% 50%;
    text-align: center;
    padding: 60px 20px;
    background-image: url("imagenes/logo-pn-blanco.svg");
}

.proceso-block h2 {
    font-size: 28px;
    font-weight: bold;
    color: #0d1c3d;
    text-transform: uppercase;
    margin: 0;
}

.proceso-detalle {
    background: url("imagenes/fondo-bloque-4.png") no-repeat center center;
    background-size: cover;
    color: white;
    padding: 40px 20px;
}

.proceso-contenido {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.img-detalle {
    width: 100%;
    text-align: left;
}

.img-detalle img {
    max-width: 100%;
    height: auto;
    border-radius: 40px;
}

.proceso-texto {
    width: 100%;
    max-width: 600px;
}

.proceso-texto h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
}

.proceso-texto ol {
    list-style-position: outside;
    margin: 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.proceso-texto ol li {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 80%;
}

.proceso-texto ol li strong {
    font-weight: bold;
    color: #fff;
    /* se mantiene en blanco */
}

.final-separator {
    background-color: #fff;
    padding: 40px 20px;
}

.final-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.final-content p {
    color: #003c88;
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    margin: 0;
    line-height: 1.4;
}

.logo-opoprime img {
    height: 100px;
    width: auto;
}

.btn-red {
    background-color: #e42320;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-red:hover {
    background-color: #c51d1b;
}

/* Responsive */
@media (max-width: 992px) {
    .final-content {
        flex-direction: column;
        text-align: center;
    }

    .final-content p {
        font-size: 18px;
    }

    .btn-red {
        font-size: 16px;
        padding: 12px 25px;
    }

    .logo-opoprime img {
        height: 20px;
    }
}

.footer {
    background: url("imagenes/fondo-footer.svg") no-repeat top center;
    background-size: cover;

    padding: 30px 20px;
    color: #0d1c3d;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Izquierda */
.footer-left {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-left a {
    text-decoration: none;
    color: #0d1c3d;
    font-weight: 600;
}

.footer-icon {
    font-size: 18px;
    color: #0d1c3d;
}

/* Centro */
.footer-center {
    font-size: 14px;
    text-align: center;
    flex: 1;
}

.footer-center a {
    text-decoration: none;
    color: #0d1c3d;
    font-weight: 600;
    margin: 0 5px;
}

.footer-center a:hover {
    text-decoration: underline;
}

/* Derecha */
.footer-right img {
    height: 40px;
    width: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .proceso-detalle {
        justify-content: center;
        padding: 50px 20px;
        text-align: left;
    }

    .proceso-texto {
        max-width: 100%;
    }

    .proceso-texto h3 {
        font-size: 18px;
    }

    .proceso-texto ol li {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-block {
        display: grid;
        grid-template-rows: 1fr 2fr;
    }

    .hero-image,
    .hero-text {
        flex: 0 0 100%;
    }

    .hero-text {
        padding: 30px 20px;
    }

    .header-text {
        font-size: 16px;
        text-align: center;
        margin-top: 10px;
    }

    .hero-image .plazas-box {
        right: 10px;
        bottom: 10px;
        padding: 10px 16px;
        border-radius: 12px;
        font-size: 15px;
        text-align: center;
        span{
            float:left;
            text-align:center;
            width:100%;
            font-size:1.5em;
            font-weight:normal;
        }
    }
}

/* header responsivo */

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
    }

    .logo img {
        width: 180px;
        margin-bottom: 10px;
    }

    .header-text {
        font-size: 16px;
        line-height: 1.2;
    }

    /* separador 1  */

    .info-content {
        flex-direction: column;
        gap: 20px;
    }

    .info-box {
        font-size: 16px;
        padding: 15px 20px;
    }

    .info-logo img {
        height: 100px;
    }

    /* bloque 1 */

    .block-dos {
        display: block;
        padding: 0px 20px;
        text-align: center;
    }

    .block-dos-content {
        max-width: 100%;
    }

    .block-dos p {
        font-size: 16px;
    }

    .block-dos ul {
        padding-left: 20px;
    }

    .block-dos ul li {
        font-size: 14px;
        margin-bottom: 10px;
        text-align: left;
    }

    .block-dos-padre {
        flex-direction: column;
    }

    /* separador 2 */
    .separator-content {
        flex-direction: column;
        gap: 20px;
    }

    .separator-content p {
        font-size: 18px;
    }

    .btn-red {
        width: 80%;
        max-width: 300px;
    }

    /* bloque requisitos */

    .requisitos-content {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 20px;
    }

    .requisitos-image {
        flex: 0 0 100%;
        margin-bottom: -2 px;
        grid-row: 2/3;
    }

    .requisitos-image img {
        width: 100%;
        height: auto;
    }

    .requisitos-text {
        grid-row: 1/2;
        flex: 0 0 100%;
        text-align: left;
        padding-left: 20px;
    }

    .requisitos-text .highlight {
        font-size: 16px;
    }

    .requisitos-text ul li {
        font-size: 14px;
    }

    /* bloque labores */

    .labores-content {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .labores-text {
        flex: 0 0 100%;
        text-align: left;
    }

    .labores-text ul li {
        font-size: 14px;
    }

    .labores-image {
        flex: 0 0 100%;
        text-align: center;
    }

    .labores-image img {
        max-width: 250px;
    }

    /* Proceso detalle */

    .proceso-contenido {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .img-detalle {
        flex: 0 0 100%;
    }

    .img-detalle img {
        max-width: 250px;
        width: 100%;
        height: auto;
    }

    .proceso-texto {
        flex: 0 0 100%;
        text-align: left;
    }

    .proceso-texto h3 {
        font-size: 18px;
    }

    .proceso-texto ol li {
        font-size: 14px;
        margin-bottom: 12px;
    }

    /* contenido final */

    .final-content {
        flex-direction: column;
        text-align: center;

        img {
            height: 100px;
            width: auto;
        }
    }

    /* footer */

    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;

        img {
            height: 100px;
            width: auto;
        }
    }

    .footer-left,
    .footer-center,
    .footer-right {
        justify-content: center;

        img {
            height: 40px;
            width: auto;
        }
    }

    .footer-center a {
        display: inline-block;
        margin: 5px;
    }
}

@media (min-width: 1400px) {
    header {
        padding: 40px 80px;
    }

    .logo img {
        width: 320px;
    }

    .header-text {
        font-size: 28px;
        line-height: 1.6;
    }
}

@media (min-width: 2000px) {
    .hero-block {
        min-height: 800px;
    }

    .hero-text {
        width: 100%;
    }

    p,
    li,
    strong {
        font-size: 28px !important;
    }

    h2,
    div {
        font-size: 38px !important;
    }

    h3 {
        font-size: 32px !important;
    }

    .hero-image {
        background-size: cover;
        flex: 0 0 40%;
    }

    .info-block,
    .separator-two {
        min-height: 300px;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    .info-content,
    .separator-content {
        margin: 0;
        width: 100%;

        p {
            font-size: 38px !important;
        }
    }

    a {
        font-size: 28px !important;
    }

    .info-logo {
        img {
            height: 200px;
        }
    }

    .block-dos-content {
        max-width: 1000px;
        min-height: 1100px;
    }

    .requisitos-block,
    .labores-block,
    .proceso-detalle {
        min-height: 800px;
        display: flex;
        align-items: center;

        .requisitos-content,
        .labores-content,
        .proceso-contenido {
            flex-direction: row;
            justify-content: space-between;
            max-width: none;
            width: 70%;
            height: 80%;

            .proceso-texto {
                max-width: 900px;
            }

            .labores-image,
            .img-detalle {
                display: flex;
                justify-content: center;

                img {
                    height: 600px;
                }
            }
        }
    }

    .final-content {
        strong {
            font-size: 32px !important;
        }
    }
}