/* =====================================================
   ABOUT US PAGE - CSS
   Paleta SS-Desktop
   #96BCF0  sky blue
   #254085  navy
   #648DCA  medium blue
   #B7D3E9  pale blue
   #3AA3D2  teal
   #F2F3F7  off-white
   #17171A  deep dark
   ===================================================== */

/* ── HERO ── */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, #5fa8e8 0%, #4a9bcf 50%, #3a8fc7 100%);
    padding: 90px 0 60px;
    overflow: hidden;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('../assets/img/book1/background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.about-hero__deco-circle {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    top: 50px;
    left: 6%;
    z-index: 1;
}

.about-hero__deco-plus {
    position: absolute;
    z-index: 1;
    color: rgba(255,255,255,0.75);
    font-weight: 700;
}
.about-hero__deco-plus--1 { font-size: 28px; top: 80px; right: 8%; letter-spacing: 6px; }
.about-hero__deco-plus--2 { font-size: 22px; bottom: 100px; left: 12%; }

.about-hero__deco-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    z-index: 1;
}
.about-hero__deco-bubble--1 { width: 120px; height: 120px; bottom: 30px; right: 5%; }
.about-hero__deco-bubble--2 { width: 60px;  height: 60px;  bottom: 80px; right: 14%; }

.about-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.about-hero__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 700;
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}
.about-hero__title span { color: #1e3a8a; }

.about-hero__text {
    font-size: 13.5px;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
    max-width: 520px;
}

.about-hero__image-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transform: scale(1.1) translateY(10px);
}

.about-hero__img {
    width: 100%;
    max-width: 460px;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.22));
    border-radius: 0 0 20px 20px;
}

/* ── OVERLAP CARDS ── */
.about-cards-section {
    position: relative;
    margin-top: -70px;
    z-index: 10;
    padding-bottom: 80px;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    justify-content: center;
    gap: 12px;
}

.about-info-card {
    background: #F2F3F7;
    padding: 20px 28px;
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(37,64,133,.08);
    transition: all 0.3s ease;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border: 1px solid rgba(255,255,255,0.7);
}

.about-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(37,64,133,.13);
    background: #fff;
}

.about-info-card__icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-info-card__icon img { width: 100%; height: 100%; object-fit: contain; }

.about-info-card__content h3 {
    font-family: 'Poppins', sans-serif;
    color: #254085;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}
.about-info-card__content p {
    font-size: 13px;
    color: #6e7592;
    line-height: 1.6;
}

/* ── ABOUT US SECTION ── */
.about-us-section {
    padding: 80px 0 100px;
    background: #fff;
}

.about-us-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Image collage */
.about-us-images {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 10px;
    max-width: 720px;
}

/* MAIN */
.about-img--main {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* ICON */
.about-us-images__icon-card {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: 100%;
    background: #F2F3F7;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    box-shadow: 0 6px 18px rgba(37, 64, 133, 0.08);
}
.about-us-images__icon-card img {
    width: 120px;   /* baja este valor */
    height: 120px;
}

/* SECONDARY */
.about-img--secondary {
    grid-column: 2;
    grid-row: 2 / 4;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* BADGE */
.about-us-images__badge {
    grid-column: 1;
    grid-row: 3;
    background: #F7F8FA;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1.5px solid #CFE3F4;
    box-shadow: 0 6px 18px rgba(37, 64, 133, 0.08);
}

/* Text content */
.about-us-content__label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.about-label__line {
    display: inline-block;
    width: 30px;
    height: 3px;
    background: #3AA3D2;
    border-radius: 2px;
}
.about-us-content__label span:last-child {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #3AA3D2;
}

.about-us-content__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: #17171A;
    margin-bottom: 24px;
    line-height: 1.15;
}
.about-us-content__title span { color: #3AA3D2; }

.about-us-content__text {
    font-size: 14px;
    color: #5a607c;
    line-height: 1.85;
    margin-bottom: 18px;
}

.about-us-content__btn {
    display: inline-block;
    margin-top: 10px;
    padding: 13px 38px;
    background: #254085;
    color: #fff;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .25s, transform .2s;
    box-shadow: 0 6px 20px rgba(37,64,133,.22);
}
.about-us-content__btn:hover {
    background: #3AA3D2;
    transform: translateY(-2px);
}

/* ── LUXURY BANNER override for about page ── */
.about-luxury-banner {
    margin: 0 auto 0;
    max-width: 1100px;
    border-radius: 28px;
}

/* ── FAQ ── */
.faq-section {
    padding: 100px 0 120px;
    background: #F2F3F7;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.faq-header__stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
    height: 40px;
}

.faq-star {
    color: #3AA3D2;
    font-weight: 700;
    position: absolute;
}
.faq-star--big       { font-size: 26px; left: calc(50% - 80px); }
.faq-star--small     { font-size: 16px; left: calc(50% - 50px); top: 18px; }
.faq-star--right     { font-size: 16px; left: calc(50% + 40px); top: 18px; }
.faq-star--right2    { font-size: 22px; left: calc(50% + 60px); top: 2px; }

.faq-header__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 700;
    color: #17171A;
    margin-bottom: 20px;
}
.faq-header__title span { color: #3AA3D2; }

.faq-header__subtitle {
    font-size: 13.5px;
    color: #6e7592;
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto;
}

/* FAQ Items */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid #e4eaf4;
    overflow: hidden;
    transition: box-shadow .25s;
}
.faq-item:hover { box-shadow: 0 4px 18px rgba(37,64,133,.09); }
.faq-item.open  { border-color: #3AA3D2; box-shadow: 0 4px 18px rgba(58,163,210,.15); }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: #17171A;
    transition: background .2s;
}
.faq-item.open .faq-question { background: #3AA3D2; color: #fff; }
.faq-item.open .faq-question .faq-highlight { color: #F2F3F7; }

.faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: #e8f5f9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #3AA3D2;
    line-height: 1;
    transition: background .2s, color .2s;
}
.faq-item.open .faq-icon { background: rgba(255,255,255,0.25); color: #fff; }

.faq-highlight { color: #3AA3D2; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.faq-answer p {
    padding: 20px 24px;
    font-size: 13.5px;
    color: #5a607c;
    line-height: 1.8;
    margin: 0;
    background: #eef8fb;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .about-hero__inner  { grid-template-columns: 1fr; }
    .about-hero__image-wrapper { display: none; }
    .about-cards-grid   { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .about-us-inner     { grid-template-columns: 1fr; gap: 40px; }
    .about-us-images    { display: none; }
}

@media (max-width: 600px) {
    .about-hero { padding: 70px 0 50px; }
    .faq-question { font-size: 13px; padding: 16px 18px; }
    .faq-answer p { padding: 16px 18px; }
}
