/*====================================================
    REDISEÑO 2026 - WHIRLPOOL SERVICE
=====================================================*/

:root{

    --primary:#0F172A;
    --primary-light:#1E293B;

    --accent:#ECAF12;
    --accent-hover:#ffbf1a;

    --text:#1f2937;
    --text-light:#6b7280;

    --background:#F8FAFC;
    --white:#fff;

    --radius:18px;

    --shadow:
        0 10px 30px rgba(0,0,0,.08);

    --shadow-hover:
        0 20px 45px rgba(0,0,0,.14);

    --transition:.35s ease;
}


/******************************************
GENERAL
******************************************/

body{

    background:var(--background);

    color:var(--text);

}

main{

    overflow:hidden;

}


section{

    padding:90px 0;

}


p{

    font-size:17px;

    line-height:1.9;

    color:var(--text-light);

}


h1,h2{

    color:var(--primary);

}

img{

    border-radius:18px;

}


/******************************************
CONTENEDORES
******************************************/

.lavadoras,
.lavadoras2,
.lavadoras3{

    max-width:1200px;

    width:92%;

    margin:auto;

    align-items:center;

    gap:60px;

}



/******************************************
TARJETAS
******************************************/

.lavadoras,
.lavadoras2,
.lavadoras3{

    background:white;

    padding:60px;

    border-radius:22px;

    box-shadow:var(--shadow);

    transition:var(--transition);

}


.lavadoras:hover,
.lavadoras2:hover,
.lavadoras3:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-hover);

}


/******************************************
COLUMNAS
******************************************/

.column--70{

    flex:1;

}


.column--30{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

}


/******************************************
TITULOS
******************************************/

.repara__title,
.title__lista,
.title__lavadora{

    font-size:42px;

    margin-bottom:18px;

    font-weight:700;

    position:relative;

}


.line__orizon{

    width:70px;

    height:4px;

    background:var(--accent);

    border:none;

    border-radius:30px;

    margin:0 0 30px;

}


/******************************************
TEXTOS
******************************************/

.repara__pa,
.p__lavadora{

    margin-top:25px;

    font-size:17px;

    line-height:2;

}


/******************************************
LISTAS
******************************************/

.ul__lavadora{

    margin-top:35px;

}


.li__lavadora{

    display:flex;

    align-items:flex-start;

    gap:14px;

    margin-bottom:18px;

    font-size:17px;

    line-height:1.7;

}


.icon-seal{

    color:var(--accent);

    font-size:20px;

    margin-top:4px;

}


/******************************************
IMAGENES
******************************************/

.img__repara,
.img__lista,
.img__mantenimiento{

    width:100%;

    max-width:470px;

    border-radius:22px;

    object-fit:cover;

    transition:var(--transition);

    box-shadow:

        0 20px 35px rgba(0,0,0,.12);

}


.img__repara:hover,
.img__lista:hover,
.img__mantenimiento:hover{

    transform:scale(1.03);

}


/******************************************
BANNER
******************************************/

.banner__servi{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

    min-height:330px;

    background:

    linear-gradient(

    135deg,

    #0F172A,

    #14213D,

    #1F3B63);

}


.banner__servi::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:

    rgba(236,175,18,.08);

    right:-150px;

    top:-150px;

}


.banner__servi::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:

    rgba(255,255,255,.04);

    left:-120px;

    bottom:-120px;

}


.div__servi{

    position:relative;

    z-index:2;

    text-align:center;

}


.title__servi{

    color:white;

    font-size:62px;

    font-weight:800;

    letter-spacing:2px;

    margin-bottom:20px;

}


.title__servi::after{

    content:"";

    display:block;

    width:90px;

    height:5px;

    background:var(--accent);

    margin:18px auto 0;

    border-radius:40px;

}


/******************************************
ESPACIADO
******************************************/

.reparacion__lavadora{

    padding-top:70px;

    padding-bottom:10px;

}


.section__lavadora{

    padding-top:60px;

}


/******************************************
RESPONSIVE
******************************************/

@media(max-width:1024px){

.lavadoras,
.lavadoras2,
.lavadoras3{

    padding:40px;

    gap:40px;

}

.title__servi{

    font-size:46px;

}

.repara__title,
.title__lista,
.title__lavadora{

    font-size:34px;

}

}


@media(max-width:768px){

.lavadoras,
.lavadoras2,
.lavadoras3{

    flex-direction:column;

    padding:30px;

}

.column--70,
.column--30{

    width:100%;

}

.title__servi{

    font-size:38px;

}

.repara__title,
.title__lista,
.title__lavadora{

    font-size:30px;

    text-align:center;

}

.line__orizon{

    margin:auto auto 25px;

}

.repara__pa,
.p__lavadora{

    text-align:left;

}

}
/*====================================================
        BENEFICIOS
====================================================*/

.beneficios{

    padding:90px 0;

    background:#fff;

}

.beneficios-grid{

    width:92%;

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.beneficio{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    border-top:5px solid #ECAF12;

}

.beneficio:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.beneficio i{

    font-size:48px;

    color:#ECAF12;

    margin-bottom:20px;

}

.beneficio h3{

    margin-bottom:15px;

    font-size:23px;

    color:#0F172A;

}

.beneficio p{

    font-size:15px;

    line-height:1.8;

}



/*====================================================
        CTA
====================================================*/

.cta{

    background:linear-gradient(135deg,#0F172A,#1E3A5F);

    color:white;

    padding:90px 20px;

    text-align:center;

}

.cta h2{

    color:white;

    font-size:42px;

    margin-bottom:20px;

}

.cta p{

    color:#d9d9d9;

    max-width:700px;

    margin:auto;

    margin-bottom:40px;

}

.cta-btn{

    display:inline-block;

    padding:18px 40px;

    border-radius:50px;

    text-decoration:none;

    background:#ECAF12;

    color:white;

    font-weight:bold;

    transition:.35s;

    font-size:18px;

}

.cta-btn:hover{

    background:#ffbf1a;

    transform:translateY(-3px);

}



/*====================================================
        PROCESO
====================================================*/

.proceso{

    padding:90px 0;

    background:#F8FAFC;

}

.proceso-grid{

    width:92%;

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.proceso-card{

    background:white;

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.numero{

    width:65px;

    height:65px;

    background:#ECAF12;

    color:white;

    border-radius:50%;

    margin:auto;

    margin-bottom:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    font-weight:bold;

}

.proceso-card h3{

    color:#0F172A;

    margin-bottom:15px;

}



/*====================================================
        FAQ
====================================================*/

.faq{

    padding:90px 0;

    background:white;

}

.faq-container{

    max-width:900px;

    width:92%;

    margin:auto;

}

.faq-item{

    background:#fff;

    margin-bottom:20px;

    border-radius:15px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    overflow:hidden;

}

.faq-title{

    padding:22px;

    font-size:19px;

    font-weight:bold;

    background:#0F172A;

    color:white;

}

.faq-content{

    padding:25px;

    color:#666;

}



/*====================================================
        FOOTER NUEVO
====================================================*/

body{

    min-height:100vh;

    display:flex;

    flex-direction:column;

}

main{

    flex:1;

}

.main-footer{

    background:#0F172A;

    color:white;

    padding:70px 20px 25px;

}

.footer-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

}

.footer-grid h3{

    color:#ECAF12;

    margin-bottom:20px;

}

.footer-grid p{

    color:#d6d6d6;

    line-height:1.8;

}

.footer-grid ul{

    list-style:none;

    padding:0;

}

.footer-grid li{

    margin-bottom:12px;

}

.footer-grid a{

    color:#d6d6d6;

    text-decoration:none;

    transition:.3s;

}

.footer-grid a:hover{

    color:#ECAF12;

}

.footer-copy{

    border-top:1px solid rgba(255,255,255,.1);

    margin-top:45px;

    padding-top:25px;

    text-align:center;

    color:#999;

}



/*====================================================
        RESPONSIVE
====================================================*/

@media(max-width:992px){

.beneficios-grid{

    grid-template-columns:repeat(2,1fr);

}

.proceso-grid{

    grid-template-columns:repeat(2,1fr);

}

.footer-grid{

    grid-template-columns:1fr;

    text-align:center;

}

}



@media(max-width:768px){

.beneficios-grid{

    grid-template-columns:1fr;

}

.proceso-grid{

    grid-template-columns:1fr;

}

.cta h2{

    font-size:32px;

}

}
/******************************************
HERO - CENTRADO GARANTIZADO (anula estilos.css)
******************************************/

.banner__servi{
    text-align:center !important;
}

.banner__servi .div__servi{
    width:100% !important;
    max-width:800px !important;
    margin:0 auto !important;
    text-align:center !important;
    display:block !important;
}

.banner__servi .subtitle__servi,
.banner__servi .title__servi,
.banner__servi .hero-text{
    text-align:center !important;
    width:100% !important;
    max-width:700px !important;
    margin-left:auto !important;
    margin-right:auto !important;
}

.banner__servi .hero-buttons{
    display:flex !important;
    justify-content:center !important;
    width:100% !important;
    margin:35px auto 0 !important;
}

.hero-btn{
    display:inline-block !important;
    padding:16px 38px !important;
    border-radius:50px !important;
    background:#ECAF12 !important;
    color:#fff !important;
    font-weight:bold;
    text-decoration:none;
    border:none;
    transition:.35s ease;
}

.hero-btn:hover{
    background:#ffbf1a !important;
    transform:translateY(-3px);
}