/* ABOUT HERO */
.about-hero {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../images/banner-1.jpg") center/cover no-repeat;
    animation: slowZoom 20s ease-in-out infinite alternate;
    z-index: 1;
}

.about-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgb(33 112 179 / 0%) 0%,
        rgba(6, 43, 211, 0.75) 100%
    );
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(252, 152, 53, 0.2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: var(--fs-6);
    font-weight: var(--fw-600);
    margin-bottom: 20px;
    border: 1px solid var(--secondary-blue);
}

.hero-badge ion-icon {
    font-size: 18px;
}

.hero-about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-about-title span {
    color: var(--secondary-blue);
}

.hero-about-text {
    font-size: var(--fs-5);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero-title::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-blue);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.8s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 400;
    max-width: 605px;
    margin: 0 auto;
    animation: slideInRight 0.8s ease-out 0.6s both;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* COMPANY INFO */
.company-info {
    padding: 80px 0;
    background: #f8fafc;
}

.info-grid {
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.info-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    background: var(--neutral-light);
    padding: 20px;
    border-radius: 16px;
    border-top: 4px solid var(--primary-orange);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-top-color: var(--secondary-blue);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item ion-icon {
    font-size: 32px;
    color: var(--primary-orange);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.info-visual {
    display: none;
    flex-direction: column;
    gap: 30px;
}

.car-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.car-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.car-card:hover {
    transform: scale(1.05);
}

.car-card:nth-child(3) {
    grid-column: 1 / -1;
}

.car-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.car-type {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.stats-container {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    flex-direction: column;
}

.stats-banner {
    background: var(--neutral-light);
    padding: 13px 20px;
    border-radius: 16px;
    text-align: center;
    border-top: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    margin: 0px 30px;
    overflow: hidden;
}

.stats-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stats-banner:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-top-color: var(--secondary-blue);
}

.stats-banner:hover::before {
    opacity: 1;
}

.stat-highlight {
    position: relative;
    z-index: 2;
}

.stat-big {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 12px;
    font-family: var(--ff-nunito);
}

.stat-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* SERVICES */
.services-section {
    padding: 80px 0;
    background: #fc9835;
}

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

.service-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-card ion-icon {
    font-size: 40px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.5;
}

/* VALUES */
.values-section {
    padding: 80px 0;
    background: var(--white);
}

.values-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.value-list {
    margin-top: 30px;
}

.value-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left-color: var(--secondary-blue);
}

.value-icon {
    width: 55px;
    height: 55px;
    background: var(--orange-lighter);
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: var(--primary-orange);
    transform: scale(1.1);
}

.value-icon ion-icon {
    font-size: 26px;
    color: var(--primary-orange);
    transition: color 0.3s ease;
}

.value-item:hover .value-icon ion-icon {
    color: var(--white);
}

.value-content {
    flex: 1;
}

.value-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 8px;
    font-family: var(--ff-nunito);
    letter-spacing: 0.3px;
}

.value-content p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.9rem;
    margin: 0;
}

.values-highlight {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-orange);
}

.values-highlight h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-blue);
    margin-bottom: 20px;
}

.values-highlight ul {
    list-style: none;
}

.values-highlight li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.5;
}

.values-highlight li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* CONTACT CTA */
.contact-cta {
    padding: 80px 0;
    background: var(--primary-orange);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-orange);
    border: 2px solid var(--white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary-blue);
    margin-bottom: 24px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.section-title.center {
    text-align: center;
    display: block;
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* RESPONSIVE */

/* CONTAINER RESPONSIVO */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* MOBILE PEQUENO (até 480px) */
@media (max-width: 480px) {
    .about-hero {
        padding: 80px 0 50px;
        min-height: 50vh;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-badge {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .company-info {
        padding: 60px 0;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .info-text p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .feature-item {
        padding: 16px;
    }

    .feature-item ion-icon {
        font-size: 28px;
    }

    .feature-item h4 {
        font-size: 0.95rem;
    }

    .car-showcase {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .car-card {
        height: 100px;
    }

    .car-card img {
        height: 100px;
    }

    .car-card:nth-child(3) {
        grid-column: 1;
    }

    .stats-container {
        gap: 15px;
        margin: 25px 0;
    }

    .stats-banner {
        padding: 15px;
        margin: 0 10px;
    }

    .stat-big {
        font-size: 1.6rem;
    }

    .stat-text {
        font-size: 0.9rem;
    }

    .services-section {
        padding: 60px 0;
    }

    .services-section .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card ion-icon {
        font-size: 32px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .values-section {
        padding: 60px 0;
    }

    .values-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .value-item {
        padding: 16px;
        margin-bottom: 20px;
    }

    .value-icon {
        width: 45px;
        height: 45px;
    }

    .value-icon ion-icon {
        font-size: 22px;
    }

    .value-content h4 {
        font-size: 1.1rem;
    }

    .value-content p {
        font-size: 0.85rem;
    }

    .values-highlight {
        padding: 25px 20px;
    }

    .values-highlight h3 {
        font-size: 1.2rem;
    }

    .values-highlight li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .contact-cta {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        min-height: 48px;
        padding: 14px 24px;
    }
}

/* MOBILE MÉDIO (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .company-info {
        padding: 70px 0;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .car-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-container {
        gap: 20px;
    }

    .stats-banner {
        margin: 0 15px;
    }

    .services-section {
        padding: 70px 0;
    }

    .values-section {
        padding: 70px 0;
    }

    .values-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-cta {
        padding: 70px 0;
    }

    .cta-buttons {
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        min-height: 48px;
    }
}

/* TABLET (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .about-hero {
        padding: 120px 0 80px;
    }

    .company-info,
    .services-section,
    .values-section,
    .contact-cta {
        padding: 80px 0;
    }

    .info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-content {
        grid-template-columns: 2fr 1fr;
        gap: 40px;
    }
}

/* DESKTOP PEQUENO (1025px+) */
@media (min-width: 1025px) {
    .info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .values-content {
        grid-template-columns: 2fr 1fr;
        gap: 50px;
    }
}

/* MELHORIAS GERAIS DE USABILIDADE */
@media (max-width: 768px) {
    /* Botões com área de toque adequada */
    .btn-primary,
    .btn-secondary {
        min-height: 48px;
        padding: 14px 24px;
    }

    /* Links dos cards */
    .card-link {
        min-height: 44px;
        padding: 10px 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Melhor espaçamento entre elementos clicáveis */
    .feature-item {
        margin-bottom: 10px;
    }

    .value-item {
        margin-bottom: 15px;
    }

    .service-card {
        margin-bottom: 10px;
    }

    /* Ajustes nos stats banners */
    .stats-banner {
        min-height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
