/* ===============================
   ABOUT PAGE - CALQORA
================================= */

.about-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.7;
    color: white;
}

/* HERO SECTION */



.about-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.about-hero .subtitle {
    font-size: 1.2rem;
    color: white;
    max-width: 800px;
    margin: 0 auto 30px auto;
}




.about-hero {
    
    text-align: center;
    color: white;
    margin-bottom: 60px;
    background: radial-gradient(circle at 50% 30%, rgba(34,197,94,0.4), transparent 60%),
            #134e3a;
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 5px;
    padding: 10px;
  
}




@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* Glow elegante tipo Stripe */

.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/about.webp') no-repeat center;
    background-size: cover;
    opacity: 0.12; /* suficiente para integrarse */
    pointer-events: none;
    z-index: 1; /* debajo del contenido */
}



.about-hero::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 600px;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.15), transparent 60%);
    top: -200px;
    left: -25%;
    transform: rotate(25deg);
    filter: blur(60px);
    opacity: 0.6;
    z-index: 0; /* debajo de la imagen */
    pointer-events: none;
}






/* GENERAL SECTIONS */

.about-page section {
    margin-bottom: 60px;
}

.about-page h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-page h2::after {
    content: "";
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg,#10b981,#06b6d4);
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 4px;
}

.about-page h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 10px;
    color: white;
}

.about-page p {
    margin-bottom: 20px;
    color: white;
}

/* LISTS */

.about-page ul {
    padding-left: 20px;
    margin-top: 10px;
}

.about-page li {
    margin-bottom: 10px;
    position: relative;
}

.about-page li::marker {
    color: #10b981;
}

/* VALUE SECTION STYLE */

.about-values ul {
    background: #1f2937;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

/* CALL TO AUTHORITY SECTION */

.about-conclusion {
    background: #1f2937;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .about-page {
        padding: 40px 15px;
    }

    .about-hero h1 {
        font-size: 1.8rem;
    }

    .about-hero .subtitle {
        font-size: 1rem;
    }

    .about-page h2 {
        font-size: 1.4rem;
    }

    .about-page h3 {
        font-size: 1.1rem;
    }

}