/* =========================================
   home.css
   Landing Impregnadora San Jorge
========================================= */

/* Hero */
.sj-hero{
    position:relative;
    width:100%;
    min-height:100vh;
    overflow:hidden;
}
.sj-hero-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    background-position:center center;
    background-repeat:no-repeat;
    background-size:cover;
    z-index:0;
}
.sj-hero-video{
    position:absolute;
    top:50%;
    left:50%;
    width:100vw;
    height:56.25vw;
    min-width:177.78vh;
    min-height:100vh;
    transform:translate(-50%,-50%);
    border:0;
    pointer-events:none;
    z-index:0;
}

.sj-hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;
}

.sj-hero-content{
    position:relative;
    z-index:2;
}

.sj-logo{
    display:block;
    max-width:600px;
    height:auto;
    margin-bottom:34px;
    filter:drop-shadow(0 10px 24px rgba(0,0,0,.28));
}

.sj-hero h1{
    color:var(--sj-white);
    max-width:850px;
    text-shadow:0 5px 22px rgba(0,0,0,.35);
}

.sj-hero .sj-kicker{
    color:var(--sj-white);
    background:rgba(153,26,30,.88);
    padding:10px 16px;
    border-radius:var(--sj-radius);
    backdrop-filter:blur(4px);
}

.sj-hero .sj-kicker:before{
    background:var(--sj-white);
}

.sj-hero-text{
    max-width:720px;
    color:rgba(255,255,255,.92);
    font-size:1.22rem;
    line-height:1.72;
    margin:24px 0 34px;
}

.sj-hero-text strong a{
    color:var(--sj-white);
    text-decoration-color:rgba(255,255,255,.65);
}

.sj-hero-text strong a:hover{
    color:#f4dfd1;
}

.sj-hero-actions,
.sj-process-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

/* Intro */
.sj-intro{
    background:
        radial-gradient(circle at top left, rgba(26,95,49,.08), transparent 34%),
        var(--sj-white);
}

/* =========================================
   Historia
========================================= */

.sj-history{

    background:#ffffff;

}

.sj-history-photo{

    margin:0;

    background:#fff;

    border-radius:5px;

    overflow:hidden;

    box-shadow:var(--sj-shadow);

}

.sj-history-photo img{

    width:100%;

    display:block;

}

.sj-history-photo figcaption{

    padding:18px;

    background:#f7f4ef;

    color:var(--sj-muted);

    font-size:.90rem;

    line-height:1.6;

    border-top:1px solid rgba(0,0,0,.08);

}

.sj-history h2{

    max-width:680px;

}

.sj-history p{

    margin-bottom:18px;

}

.sj-history-badge{

    margin-top:35px;

    padding:24px 28px;

    background:linear-gradient(135deg,var(--sj-primary),#7e171a);

    border-radius:5px;

    color:#fff;

    box-shadow:var(--sj-shadow-soft);

}

.sj-history-badge strong{

    display:block;

    font-size:2rem;

    font-weight:900;

    margin-bottom:6px;

    color:#fff;

}

.sj-history-badge span{

    display:block;

    font-size:1rem;

    line-height:1.6;

    color:rgba(255,255,255,.92);

}

/* Beneficios */
.sj-beneficios{
    background:var(--sj-light);
}

.sj-video-vertical{
    display:block;
    width:100%;
    min-height:640px;
    max-height:760px;
    object-fit:cover;
    border-radius:var(--sj-radius);
    box-shadow:var(--sj-shadow);
    background:var(--sj-tertiary);
}

.sj-benefit-grid{
    margin-top:12px;
}

.sj-benefit-item{
    height:100%;
    padding:26px;
    border-radius:var(--sj-radius);
    background:var(--sj-white);
    border:1px solid rgba(71,50,18,.10);
    box-shadow:var(--sj-shadow-soft);
    transition:all .22s ease;
}

.sj-benefit-item:hover{
    transform:translateY(-4px);
    box-shadow:var(--sj-shadow);
}

.sj-benefit-item i{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:54px;
    height:54px;
    margin-bottom:18px;
    border-radius:var(--sj-radius);
    background:rgba(26,95,49,.10);
    color:var(--sj-secondary);
    font-size:1.7rem;
}

.sj-benefit-item h3{
    margin-bottom:10px;
    color:var(--sj-tertiary);
}

.sj-benefit-item p{
    margin:0;
    color:var(--sj-muted);
    font-size:.96rem;
    line-height:1.65;
}

/* Productos */
.sj-products{
    background:var(--sj-white);
}

.sj-product-card{
    height:100%;
    padding:34px 30px;
    border-radius:var(--sj-radius);
    background:linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
    border:1px solid var(--sj-border);
    box-shadow:var(--sj-shadow-soft);
    transition:all .22s ease;
}

.sj-product-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--sj-shadow);
    border-color:rgba(153,26,30,.25);
}

.sj-product-card h3{
    color:var(--sj-primary);
    margin-bottom:14px;
}

.sj-product-card p{
    color:var(--sj-muted);
    font-size:.98rem;
    line-height:1.68;
    margin-bottom:22px;
}

.sj-product-card ul{
    list-style:none;
    margin:0;
    padding:0;
    display:grid;
    gap:9px;
}

.sj-product-card li strong{
    display:block;
}

.sj-product-card li a{
    display:flex;
    align-items:center;
    gap:10px;
    padding:9px 12px;
    border-radius:var(--sj-radius);
    background:rgba(26,95,49,.07);
    color:var(--sj-dark);
    font-weight:800;
    font-size:.94rem;
    text-decoration:none;
}

.sj-product-card li a:before{
    content:"";
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--sj-secondary);
    flex:0 0 7px;
}

.sj-product-card li a:hover{
    background:var(--sj-primary);
    color:var(--sj-white);
}

.sj-product-card li a:hover:before{
    background:var(--sj-white);
}

/* Nota catálogo */

.sj-productos-nota{

    margin-top:10px;

    padding:38px;

    background:linear-gradient(135deg,#ffffff,#f7f4ef);

    border-left:5px solid var(--sj-secondary);

    border-radius:5px;

    box-shadow:var(--sj-shadow-soft);

    text-align:center;

}

.sj-productos-nota h3{

    margin-bottom:18px;

    color:var(--sj-secondary);

}

.sj-productos-nota p{

    max-width:900px;

    margin:0 auto 18px;

}

.sj-productos-nota .btn-sj-primary{

    margin-top:8px;

}

/* Polín natural */
.sj-polin-natural{
    background:#fff;
}

.sj-polin-natural h2{
    max-width:720px;
}

.sj-polin-compare{
    display:grid;
    gap:18px;
}

.sj-polin-card{
    position:relative;
    padding:28px;
    border:1px solid var(--sj-border);
    border-left:5px solid var(--sj-tertiary);
    border-radius:5px;
    background:#f7f4ef;
    box-shadow:var(--sj-shadow-soft);
}

.sj-polin-card-good{
    background:#ffffff;
    border-left-color:var(--sj-secondary);
}

.sj-polin-label{
    display:inline-flex;
    margin-bottom:14px;
    padding:6px 10px;
    border-radius:5px;
    background:var(--sj-secondary);
    color:#fff;
    font-size:.75rem;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.06em;
}

.sj-polin-label-muted{
    background:var(--sj-tertiary);
}

.sj-polin-card h3{
    color:var(--sj-primary);
    margin-bottom:14px;
}

.sj-polin-card ul{
    margin:0;
    padding:0;
    list-style:none;
    display:grid;
    gap:10px;
}

.sj-polin-card li{
    position:relative;
    padding-left:24px;
    color:var(--sj-text);
    line-height:1.55;
}

.sj-polin-card li:before{
    content:"";
    position:absolute;
    left:0;
    top:.62em;
    width:8px;
    height:8px;
    background:var(--sj-secondary);
    border-radius:50%;
}

.sj-polin-card:not(.sj-polin-card-good) li:before{
    background:var(--sj-tertiary);
}

/* Información técnica */

.sj-polin-info{

    display:flex;

    align-items:flex-start;

    gap:24px;

    margin-top:20px;

    padding:32px;

    background:#ffffff;

    border-left:5px solid var(--sj-primary);

    border-radius:5px;

    box-shadow:var(--sj-shadow-soft);

}

.sj-polin-info-icon{

    flex:0 0 60px;

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(153,26,30,.10);

    color:var(--sj-primary);

    border-radius:5px;

    font-size:2rem;

}

.sj-polin-info-content h3{

    margin-bottom:15px;

    color:var(--sj-primary);

    font-size:1.45rem;

}

.sj-polin-info-content p{

    margin-bottom:12px;

}

.sj-polin-info-content p:last-child{

    margin-bottom:0;

}

/* Servicios */
.sj-services{
    background:
        linear-gradient(120deg, rgba(71,50,18,.06), transparent 48%),
        var(--sj-light);
}

.sj-service-item{
    position:relative;
    padding:26px 26px 26px 32px;
    margin-top:20px;
    border-radius:var(--sj-radius);
    background:var(--sj-white);
    border-left:5px solid var(--sj-secondary);
    box-shadow:var(--sj-shadow-soft);
}

.sj-service-item h3{
    color:var(--sj-tertiary);
    margin-bottom:10px;
}

.sj-service-item p{
    margin:0;
    color:var(--sj-muted);
}

/* Video proceso */
.sj-process-video{
    position:relative;
    min-height:520px;
    overflow:hidden;
    display:flex;
    align-items:center;
    background:var(--sj-tertiary);
}

.sj-process-video video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

.sj-process-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:
        linear-gradient(90deg, rgba(71,50,18,.68), rgba(71,50,18,.42)),
        linear-gradient(0deg, rgba(0,0,0,.25), rgba(0,0,0,.25));
}

.sj-process-video .container{
    position:relative;
    z-index:2;
}

.sj-process-content{
    max-width:780px;
    padding:90px 0;
}

.sj-process-content h2{
    color:var(--sj-white);
    font-size:clamp(2rem,3.6vw,3.7rem);
}

.sj-process-content p{
    max-width:650px;
    color:rgba(255,255,255,.9);
    font-size:1.15rem;
}

/* Aplicaciones */
.sj-applications{
    background:var(--sj-white);
}

.sj-app-card{
    min-height:112px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:22px;
    border-radius:var(--sj-radius);
    color:var(--sj-white);
    background: rgba(26,95,49,.96);
    box-shadow:var(--sj-shadow-soft);
    font-weight:900;
    text-align:center;
    transition:all .22s ease;
}

.sj-app-card:hover{
    transform:translateY(-4px);
    background: rgba(153,26,30,.96);
}

/* FAQ */
.sj-faq{
    background:var(--sj-light);
}

.sj-accordion{
    max-width:920px;
    margin:0 auto;
}

.sj-accordion .accordion-item{
    border:0;
    margin-bottom:14px;
    border-radius:var(--sj-radius);
    overflow:hidden;
    box-shadow:var(--sj-shadow-soft);
}

.sj-accordion .accordion-button{
    font-weight:900;
    color:var(--sj-tertiary);
    padding:20px 24px;
    box-shadow:none;
}

.sj-accordion .accordion-button:not(.collapsed){
    color:var(--sj-white);
    background:var(--sj-primary);
}

.sj-accordion .accordion-button:focus{
    box-shadow:none;
}

.sj-accordion .accordion-body{
    padding:24px;
    color:var(--sj-muted);
    line-height:1.75;
    text-align: justify;
}

/* Contacto */
.sj-contact{
    background:
        radial-gradient(circle at bottom right, rgba(153,26,30,.10), transparent 38%),
        var(--sj-white);
}

.sj-contact-list{
    list-style:none;
    margin:28px 0 0;
    padding:0;
    display:grid;
    gap:14px;
}

.sj-contact-list li{
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:16px 18px;
    border-radius:var(--sj-radius);
    background:var(--sj-light);
    color:var(--sj-dark);
    font-weight:700;
}

.sj-contact-list i{
    color:var(--sj-primary);
    font-size:1.35rem;
    line-height:1.2;
    margin-top:1px;
}

.sj-contact-list a{
    color:var(--sj-dark);
}

.sj-contact-list a:hover{
    color:var(--sj-primary);
}
