/* ======================================================
   SECCIÓN QUIÉNES SOMOS
   Electric_JOSCAM
====================================================== */

.about-section{
    position:relative;
    padding:100px 20px;
    background:var(--dark-light);
    overflow:hidden;
}

/* CONTENEDOR */

.about-section .container{
    max-width:1100px;
    margin:auto;
    text-align:center;
}

/* TITULO */

.section-title{
    font-size:2.4rem;
    font-weight:800;
    margin-bottom:40px;
    color:var(--white);
    position:relative;
}

.section-title::after{
    content:"";
    width:70px;
    height:4px;
    background:var(--accent);
    display:block;
    margin:15px auto 0;
    border-radius:5px;
}

/* INTRO */

.about-intro{
    max-width:900px;
    margin:auto;
}

.highlight-text{
    font-size:1.2rem;
    font-weight:600;
    color:var(--accent);
    margin-bottom:25px;
}

.about-description{
    color:var(--text-gray);
    line-height:1.8;
    font-size:1rem;
}

.about-description p{
    margin-bottom:20px;
}

/* GRID */

.about-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:30px;
}

/* ITEMS */

.about-item{
    background:white;
    padding:35px 25px;
    border-radius:12px;
    transition:all .35s ease;
    border:1px solid rgba(0,0,0,0.05);
    box-shadow:0 5px 18px rgba(0,0,0,0.05);
}

.about-item:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

/* ICONOS */

.about-item i{
    font-size:34px;
    color:var(--accent);
    margin-bottom:15px;
}

/* TITULOS */

.about-item h3{
    font-size:1.2rem;
    margin-bottom:10px;
    color:var(--white);
}

/* TEXTO */

.about-item p{
    font-size:.95rem;
    color:var(--text-gray);
}

/* FOOTER SELLOS */

.about-footer{
    margin-top:55px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.seal-modern{
    padding:8px 18px;
    border:2px solid var(--accent);
    border-radius:30px;
    font-size:.85rem;
    font-weight:600;
    color:var(--accent);
    transition:.3s;
}

.seal-modern:hover{
    background:var(--accent);
    color:white;
}

/* FORMAS DECORATIVAS */

.bg-shape{
    position:absolute;
    border-radius:50%;
    opacity:.08;
    background:var(--accent);
}

.shape-1{
    width:300px;
    height:300px;
    top:-80px;
    left:-80px;
}

.shape-2{
    width:200px;
    height:200px;
    bottom:-60px;
    right:-60px;
}

.shape-3{
    width:120px;
    height:120px;
    top:40%;
    left:10%;
}

/* RESPONSIVE */

@media(max-width:768px){

.about-section{
padding:70px 20px;
}

.section-title{
font-size:2rem;
}

.highlight-text{
font-size:1.1rem;
}

}

