/* Rota: a-empresa */
:root {
    --ae-primary: #063063;
    --ae-accent: #EBAA1D;
    --ae-text: #232323;
    --ae-radius: 30px;
}

/* ========================================
   1. Hero Section
   ======================================== */
.ae-hero {
    background-color: var(--ae-primary);
    background-image: linear-gradient(135deg, #04244e 0%, #063063 50%, #083b76 100%);
    position: relative;
    overflow: hidden;
}
.ae-hero__overlay {
    background: rgba(6, 48, 99, 0.85);
    padding: 100px 0 80px;
}
.ae-hero__content {
    max-width: 750px;
    margin: 0 auto;
}
.ae-hero__label {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: 0.05em;
    margin-bottom: -0.3em;
    text-transform: uppercase;
}
.ae-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
}
.ae-hero__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--ae-accent);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}
.ae-hero__text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin: 0 auto;
}

/* ========================================
   2. Contact Cards
   ======================================== */
.ae-contact-cards {
    background: #f8f9fa;
}
.ae-card {
    background: #fff;
    border-radius: var(--ae-radius);
    padding: 2rem 1.5rem;
    border-left: 5px solid var(--ae-accent);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ae-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.ae-card__icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--ae-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.ae-card__title {
    font-size: 1.15rem;
    color: var(--ae-primary);
    margin-bottom: 0.35rem;
}
.ae-card__text {
    font-size: 0.92rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}
.ae-card__link {
    color: inherit;
    text-decoration: none;
}
.ae-card__link:hover {
    color: var(--ae-accent);
}
.ae-card__action {
    color: var(--ae-primary);
    opacity: 0.6;
    transition: opacity 0.2s ease, color 0.2s ease;
    align-self: center;
}
.ae-card__action:hover {
    opacity: 1;
    color: var(--ae-accent);
}

/* ========================================
   3. Mascote Section
   ======================================== */
.ae-mascote {
    background: linear-gradient(180deg, #f0f4f8 0%, #e8ecf1 100%);
    padding: 3rem 0 0;
    overflow: hidden;
}
.ae-mascote__img {
    max-height: 420px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 30px rgba(6, 48, 99, 0.15));
}

/* ========================================
   4. History Section
   ======================================== */
.ae-section-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ae-accent);
    margin-bottom: 0.4rem;
}
.ae-section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    color: var(--ae-primary);
    margin-bottom: 1rem;
    position: relative;
}
.ae-history {
    background: #fff;
}
.ae-history__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}
.ae-history__img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* ========================================
   5. Infrastructure Section
   ======================================== */
.ae-infra {
    background: #f8f9fa;
}
.ae-infra__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    max-width: 700px;
}

/* ========================================
   6. ABC Paulista Map
   ======================================== */
.ae-map {
    background: #f8f9fa;
    padding-bottom: 3rem;
}
.ae-map__img {
    max-width: 700px;
    width: 100%;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
}

/* ========================================
   7. Mission / Vision / Values
   ======================================== */
.ae-mvv {
    background: var(--ae-primary);
    color: #fff;
}
.ae-mvv__card {
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--ae-radius);
    padding: 2.5rem 2rem;
    transition: background 0.3s ease;
}
.ae-mvv__card:hover {
    background: rgba(255, 255, 255, 0.12);
}
.ae-mvv__icon-wrap {
    width: 70px;
    height: 70px;
    background: var(--ae-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.ae-mvv__title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--ae-accent);
}
.ae-mvv__list {
    text-align: left;
    padding: 0;
}
.ae-mvv__list li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.4rem 0 0.4rem 1.4rem;
    position: relative;
    line-height: 1.5;
}
.ae-mvv__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--ae-accent);
    border-radius: 50%;
}

/* ========================================
   8. CTA Section
   ======================================== */
.ae-cta {
    background: linear-gradient(135deg, #fdf6e3 0%, #fff9ed 100%);
}
.ae-cta__title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--ae-primary);
    margin-bottom: 0.5rem;
}
.ae-cta__text {
    font-size: 1.05rem;
    color: #666;
}
.ae-cta__btn {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Mulish', sans-serif;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.ae-cta__btn:hover {
    background: #1ebc5a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 991.98px) {
    .ae-hero__overlay {
        padding: 70px 0 60px;
    }
    .ae-hero__label {
        font-size: clamp(2rem, 10vw, 4rem);
    }
    .ae-history__img {
        max-height: 300px;
    }
}

@media (max-width: 767.98px) {
    .ae-hero__overlay {
        padding: 60px 0 50px;
    }
    .ae-card {
        border-radius: 20px;
        padding: 1.5rem 1.25rem;
    }
    .ae-mvv__card {
        border-radius: 20px;
        padding: 2rem 1.5rem;
    }
    .ae-mascote__img {
        max-height: 280px;
    }
    .ae-map__img {
        border-radius: 12px;
    }
}

@media (max-width: 575.98px) {
    .ae-hero__label {
        font-size: 2.5rem;
    }
    .ae-hero__title {
        font-size: 1.75rem;
    }
    .ae-hero__text {
        font-size: 0.95rem;
    }
    .ae-cta__btn {
        padding: 0.7rem 1.8rem;
        font-size: 1rem;
    }
}
