/* =============================================
   RESET
============================================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    font-size:14px;
    color:#333;
    background:#fff;
    overflow-x:hidden;

}

/* =============================================
   NAVBAR
============================================= */
.navbar-posco{
    background:#fff;
    border-bottom:1px solid #e0e0e0;
    padding:12px 40px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}
img{
    max-width:100%;
    height:auto;
}
.logo-img{
    height:70px;
    width:auto;
    display:block;
    object-fit:contain;
}

.navbar-posco nav{
    display:flex;
    gap:30px;
    align-items:center;
}

.navbar-posco nav a{
    text-decoration:none;
    color:#333;
    font-size:14px;
    transition:.2s;
}

.navbar-posco nav a:hover{
    color:#0065b0;
}

.lang-link{
    color:#666;
    font-size:13px;
}

/* =============================================
   HERO
============================================= */
.hero{
    position:relative;
    width:100%;
    height:400px;
    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;
}

.hero__bg{
    position:absolute;
    inset:0;
}

.hero__bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
}

.hero__content{
    position:relative;
    z-index:2;
    text-align:center;
}

.hero__title{
    font-size:42px;
    font-weight:700;
    color:#fff;
    letter-spacing:2px;
    margin-bottom:32px;
    text-shadow:0 2px 8px rgba(0,0,0,.4);
}

/* =============================================
   BOTONES HERO
============================================= */
.hero__buttons{
    display:flex;
    gap:20px;
    justify-content:center;
}

.hero__btn{
    min-width:170px;
    padding:14px 32px;

    text-decoration:none;
    text-align:center;

    font-size:14px;
    font-weight:600;

    transition:.2s;
}

.hero__btn:hover{
    opacity:.9;
    transform:translateY(-2px);
}

.hero__btn--primary{
    background:#0065b0;
    color:#fff;
}

.hero__btn--outline{
    background:#fff;
    color:#0065b0;
    border:2px solid #0065b0;
}

/* =============================================
   SECCIÓN PRINCIPAL
============================================= */
.main-section{
    max-width:1400px;
    margin:48px auto;
    padding:0 24px;

    display:grid;
    grid-template-columns:repeat(12,1fr);
    gap:48px;
}

/* =============================================
   COLUMNA IZQUIERDA
============================================= */
.intro-col{
    grid-column: span 3;
    position: relative;
}


.intro-col__text{
    font-size:17px;
    line-height:1.7;
    color:#000000;
    margin-bottom:50px;
}

.intro-col__img{
    position: relative;
    z-index: 2;

    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.intro-col__img-fallback{
    width:100%;
    height:220px;

    background:linear-gradient(135deg,#b0c4d8,#4a8fc4);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:12px;
    letter-spacing:1px;
}

/* =============================================
   COLUMNA DERECHA
============================================= */
.content-col{
    grid-column:span 9;
}

/* =============================================
   TITULOS
============================================= */
.section-title,

.proceso-title{
    font-size:22px;
    font-weight:700;
    color:#222;
    margin-bottom:10px;
}

.proceso-title-underline{
    width:40px;
    height:3px;
    background:#f0a500;
    margin-bottom:24px;
}





/* =============================================
   TIPOS DE DENUNCIAS
============================================= */
.tipos-grid{
 
   display:grid;
    grid-template-columns:repeat(12,1fr);
    gap:20px;
    margin-bottom:30px;
}

/* CADA CARD OCUPA 4 */
.tipo-card{
    grid-column:span 4;
    background:#f5f5f5;
    padding:20px 20px 0px;
}

.tipo-card__titulo{
    font-size:18px;
    font-weight:700;
    color:#0065b0;
    margin-bottom:10px;
}

.tipo-card__texto{
    font-size:15px;
    line-height:1.7;
    color:#555;
}

/* =============================================
   PROCESO DE DENUNCIA
============================================= */
.proceso-grid{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 28px;
    align-items: start;
}

/* Imagen */
.proceso-grid .proceso-img{
    grid-column: span 4;
}

/* Contenedor de las tarjetas */
.proceso-grid .proceso-cards{
    grid-column: span 8;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.proceso-card{
    background: #fff;
    padding: 20px 18px;
}

.proceso-card__titulo{
    font-size: 18px;
    font-weight: 700;
    color: #0065b0;
    margin-bottom: 10px;
}

.proceso-card__texto{
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}


/* 
   UTILIDADES
 */
.sin-publicaciones{
    color:#888;
    font-size:13px;
    padding:12px 0;
}

/* =============================================
   SECCION EXTRA
============================================= */
.extras-section{

    max-width:1400px;
    margin:48px auto;
    padding:50px 24px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:60px;

    box-sizing:border-box;

}

/* TITULOS */
.extras-title{
    font-size:22px;
    font-weight:700;
    color:#000;
    margin-bottom:10px;
}

.extras-line{
    width: 70px;
    height: 0;
    border-top: 3px solid #f0a500;
    margin-bottom: 38px;
}

/* =============================================
   RECURSOS
============================================= */
.recurso-card{
    background:#f7f7f7;
    border:1px solid #d8d8d8;
    border-radius:10px;

    padding:18px 20px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    margin-bottom:14px;

    text-decoration:none;

    font-size:17px;
    font-weight:700;
    color:#111;

    transition:.2s;
}

.recurso-card:hover{
    background:#fff;
    transform:translateY(-2px);
    box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.download-circle{
    width:42px;
    height:42px;

    border:2px solid #111;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:20px;
}




/* =============================================
   FORMULARIO
============================================= */
.seguimiento-form{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.form-row{
    display:flex;
    align-items:center;
    gap:20px;
}

.form-row label{
    width:100px;

    font-size:17px;
    color:#111;

    line-height:1.3;
}

.form-row input{
    height:44px;
    width:170px;

    border:1px solid #999;
    border-radius:8px;

    padding:0 14px;

    font-size:18px;
    background:#fff;
}

.fecha-group{
    display:flex;
    align-items:center;
    gap:18px;
}

.btn-arrow{
    border:none;
    background:none;

    font-size:44px;
    color:#f0a500;

    cursor:pointer;
    line-height:1;

    transition:.2s;
}

.btn-arrow:hover{
    transform:translateX(3px);
}


.btn-arrow-text{
    border:none;
    background:none;

    font-size:42px;
    font-weight:700;

    color:#f0a500;

    cursor:pointer;
}

/* =============================================
   CONTACTO
============================================= */
.contact-box{
    display:flex;
    gap:18px;
    align-items:flex-start;
}

.mail-icon{
    font-size:40px;
    line-height:1;
    color:#111;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.contact-info span{
    font-size:17px;
    color:#111;
}

.contact-info a{
    color:#111;
    font-size:18px;
    text-decoration:underline;
}
.footer-posco{
    width:100%;
    height:70px;
    background:#005b99;

    display:flex;
    align-items:center;
    justify-content:center;
}

.footer-logo{
    height:50px;
}

/* =============================================
   TABLET (1024px o menos)
============================================= */
@media (max-width: 1024px){
     .proceso-title-content::before{
        content:none;
    }

    .navbar-posco{
        padding:12px 20px;
    }

    .main-section{
        gap:30px;
    }

    .intro-col{
        grid-column:span 12;
    }

    .content-col{
        grid-column:span 12;
    }

    .tipos-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .tipo-card{
        grid-column:auto;
    }

    .proceso-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .proceso-card{
        grid-column:auto;
    }

    .extras-section{
        grid-template-columns:1fr;
        gap:40px;
        padding:40px 25px;
    }

    .hero{
        height:350px;
    }

    .hero__title{
        font-size:34px;
    }

 
}


/* =============================================
   CELULAR (768px o menos)
============================================= */
@media (max-width: 768px){
 .proceso-title-content{
        box-shadow: none;
    }

    .proceso-title-content::before{
        display: none;
    }
    .navbar-posco{
        flex-direction:column;
        gap:15px;
        padding:15px;
    }

    .navbar-posco nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .logo-img{
        height:55px;
    }

    .hero{
        height:300px;
        padding:20px;
    }

    .hero__title{
        font-size:28px;
        line-height:1.3;
        margin-bottom:20px;
    }

    .hero__buttons{
        flex-direction:column;
        align-items:center;
        gap:12px;
    }

    .hero__btn{
        width:100%;
        max-width:300px;
    }

    .main-section{
        grid-template-columns:1fr;
        gap:30px;
        margin:30px auto;
        padding:0 15px;
    }

    .intro-col,
    .content-col{
        grid-column:span 12;
    }

    .tipos-grid,
    .proceso-grid{
        display:grid;
        grid-template-columns:1fr;
    }

    .tipo-card,
    .proceso-card{
        grid-column:auto;
    }

    .section-title,
    .proceso-title,
    .extras-title{
        font-size:20px;
    }

    .intro-col__text,
    .tipo-card__texto,
    .proceso-card__texto{
        font-size:15px;
    }

    .extras-section{
        padding:30px 15px;
    }

    .recurso-card{
        font-size:15px;
        padding:15px;
    }

    .form-row{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

    .form-row label{
        width:100%;
    }

    .form-row input{
        width:100%;
    }

    .fecha-group{
        width:100%;
        flex-wrap:wrap;
    }

    .contact-box{
        flex-direction:column;
    }

    .mail-icon{
        font-size:30px;
    }

    .footer-posco{
        height:auto;
        padding:15px;
    }

    .footer-logo{
        max-width:20%;
        height:auto;
    }

   
}


/* =============================================
   CELULARES PEQUEÑOS (480px o menos)
============================================= */
@media (max-width: 480px){
   .proceso-title-content{
        box-shadow: none;
    }

    .proceso-title-content::before{
        display: none;
    }
    .hero{
        height:250px;
    }

    .hero__title{
        font-size:22px;
        letter-spacing:1px;
    }

    .hero__btn{
        min-width:auto;
        width:100%;
    }

    .intro-col__img,
    .intro-col__img-fallback{
        height:180px;
    }

    .tipo-card,
    .proceso-card{
        padding:15px;
    }

    .tipo-card__titulo,
    .proceso-card__titulo{
        font-size:16px;
    }

    .btn-arrow{
        font-size:35px;
    }

    .btn-arrow-text{
        font-size:32px;
    }


}



/*==========================
CONFIDENCIALIDAD
==========================*/

.confidential-section{

    max-width:1400px;
    margin:48px auto;
    padding:0 24px;

    display:grid;
    grid-template-columns:repeat(12,1fr);
    gap:48px;

    box-sizing:border-box;

}

.conf-left{

    grid-column:span 3;

    font-size:17px;
    line-height:1.7;
    color:#000;

}
.conf-right{

    grid-column:span 9;

    display:flex;
    flex-direction:column;

}

.conf-box{

    background:#f5f5f5;
    padding:18px 22px;
    font-size: 15px;
    line-height: 1.7;
    

}

.contact-list{

    display:flex;
    flex-direction:column;
    gap:18px;

}

.contact-item{

    display:flex;
    align-items:flex-start;
    gap:16px;

}

.contact-item img{

    width:35px;
    flex-shrink:0;

}

.contact-item div{

    display:flex;
    flex-direction:column;
    font-size: 17px;

}

.contact-item span{

    font-weight:600;
    margin-bottom:4px;

}

.contact-item a{

    color:#000;
    text-decoration:underline;
    word-break:break-word;

}

@media(max-width:900px){

    .confidential-section{

        grid-template-columns:1fr;

    }

    .conf-left,
    .conf-right{

        grid-column:auto;

    }

}
/*==========================================
    PROCESO DE DENUNCIA
==========================================*/


.proceso-row{

    max-width:1400px;
    margin:48px auto;
    padding:0 24px;

    display:grid;
    grid-template-columns:repeat(12,1fr);
    gap:48px;

    box-sizing:border-box;

    position:relative;
}

/*------------------------------------------
    Fondo gris
------------------------------------------*/

.proceso-row::before{

    content:"";

    position:absolute;

    left:calc(50% - 50vw);
    right:calc(50% - 50vw);

    top:85px;    
    bottom:0;

    background:#f3f3f3;

    z-index:0;
}

/*------------------------------------------
    Imagen
------------------------------------------*/

.proceso-row__image{

    grid-column:span 3;

    position:relative;

    z-index:2;
}

.proceso-row__img{

    width:100%;
    height:220px;

    object-fit:cover;

    display:block;
}

/*------------------------------------------
    Contenido
------------------------------------------*/

.proceso-row__content{

    grid-column:span 9;

    position:relative;

    z-index:2;
}

/*------------------------------------------
    Cards
------------------------------------------*/

.proceso-row__cards{

    margin-top:20px;
    padding-top:35px;
    padding-bottom:35px;
}

.proceso-row__grid{

    display:grid;

    grid-template-columns:repeat(12,1fr);

    gap:28px;
}

.proceso-card{

    grid-column:span 6;

    background:#fff;

    padding:22px;
}

.proceso-card__titulo{

    font-size:18px;

    font-weight:700;

    color:#0065b0;

    margin-bottom:12px;
}

.proceso-card__texto{

    font-size:15px;

    line-height:1.7;

    color:#555;
}

/*------------------------------------------
    Responsive
------------------------------------------*/

@media(max-width:768px){

    .proceso-row{

        display:block;

        margin:30px auto;

        padding:0 20px;
    }

    .proceso-row::before{

        display:none;
    }

    .proceso-row__image{

        margin-bottom:20px;
    }

    .proceso-row__grid{

        display:block;
    }

    .proceso-card{

        margin-bottom:20px;
    }

}
