.btn,
.btn-outline,
.section-title {
    color: var(--blue-brand);
}
body,
header {
    background-color: #042b70;
}
.about-img-badge,
.btn,
.card-original,
.footer-bottom,
.footer-contact i,
.process-step,
.section-subtitle,
.section-title {
    text-align: center;
}
:root {
    --blue-brand: #042b70;
    --yellow-brand: #fff44e;
    --cor-texto-escuro: #1a1a1a;
    --cor-texto-claro: #ffffff;
    --cor-fundo-claro: #fafafa;
    --fonte-principal: "Montserrat", sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: var(--fonte-principal);
    color: var(--cor-texto-escuro);
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.btn {
    background-color: var(--yellow-brand);
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    display: inline-block;
    transition: 0.3s;
    font-size: 15px;
}
.logo,
.section-title {
    font-weight: 800;
    letter-spacing: -1px;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 244, 78, 0.4);
}
.btn-outline {
    background-color: transparent;
    border: 2px solid var(--blue-brand);
}
.btn-outline:hover {
    background-color: var(--blue-brand);
    color: var(--yellow-brand);
    box-shadow: none;
}
.section-title {
    font-size: 36px;
    margin-bottom: 15px;
}
.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.logo,
.nav-menu {
    color: var(--blue-brand);
}
section {
    padding: 80px 0;
}
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero,
.nav-menu {
    align-items: center;
    display: flex;
}
.logo {
    font-size: 26px;
}
.nav-menu {
    gap: 30px;
    font-size: 15px;
    font-weight: 600;
}
.fleet-link:hover,
.nav-menu a:hover {
    color: #000;
}
.about-list li i,
.fleet-section .section-title,
.footer-links a:hover,
.hero-title span {
    color: var(--yellow-brand);
}
.hero {
    min-height: 85vh;
    padding-top: 120px;
    background-image: linear-gradient(to right, rgba(4, 43, 112, 0.9), rgba(4, 43, 112, 0.7)), url("https://grupoautotecnica.com.br/catalog/assets/img/autoescola.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
}
.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.hero-content {
    max-width: 600px;
    flex: 1;
}
.hero-title {
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}
.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 400;
    opacity: 0.9;
}
.hero-form-wrapper {
    width: 100%;
    max-width: 450px;
    z-index: 10;
}
.hero-horizontal-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.hero-horizontal-form .input-group {
    width: 100%;
}
.hero-horizontal-form input,
.hero-horizontal-form select {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--fonte-principal);
    font-size: 14px;
    background-color: #f9f9f9;
    color: var(--cor-texto-escuro);
}
.hero-horizontal-form button {
    padding: 15px 30px;
    border-radius: 8px;
    width: 100%;
}
.services-original {
    background-color: var(--cor-fundo-claro);
    padding-top: 120px;
}
.services-grid-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.card-original {
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 30px 20px;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.card-original:hover {
    transform: translateY(-10px);
    border-color: var(--blue-brand);
}
.card-original .icon-box {
    font-size: 36px;
    color: var(--blue-brand);
    margin-bottom: 20px;
}
.card-original h3 {
    font-size: 17px;
    color: var(--blue-brand);
    margin-bottom: 12px;
    font-weight: 700;
}
.card-original p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}
.about-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-content h2 {
    font-size: 38px;
    color: var(--blue-brand);
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
}
.about-content p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
}
.about-img-badge,
.about-list li,
.fleet-info h3 {
    color: #ffffff;
}
.about-list {
    margin-top: 30px;
}
.about-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}
.about-list li i,
.fleet-img {
    display: flex;
    align-items: center;
}
.about-list li i {
    font-size: 20px;
    margin-right: 15px;
    background-color: var(--blue-brand);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: 0;
    background-color: var(--yellow-brand);
    padding: 25px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about-img-badge span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
}
.fleet-section {
    background-color: var(--blue-brand);
    color: #fff;
}
.fleet-section .section-subtitle {
    color: #ccc;
}
.fleet-grid,
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.fleet-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    color: var(--cor-texto-escuro);
}
.fleet-img {
    height: 220px;
    background-color: #ddd;
    justify-content: center;
    color: #888;
    font-size: 14px;
}
.process-original,
.step-icon-circle {
    background-color: #fff;
}
.fleet-link,
.step-icon-circle {
    display: flex;
    align-items: center;
}
.fleet-info {
    padding: 25px;
}
.fleet-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}
.fleet-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}
.fleet-link,
.process-step h3,
.step-icon-circle {
    color: var(--blue-brand);
}
.fleet-link {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    gap: 5px;
}
.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.process-steps::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: #f0f0f0;
    z-index: 1;
}
.process-step {
    width: 22%;
    position: relative;
    z-index: 2;
}
.step-icon-circle {
    width: 70px;
    height: 70px;
    border: 2px solid #f0f0f0;
    border-radius: 50%;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    transition: 0.3s;
}
.process-step:hover .step-icon-circle {
    border-color: var(--blue-brand);
    background-color: var(--blue-brand);
    color: var(--yellow-brand);
}
.process-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}
.process-step p {
    font-size: 14px;
    color: #666;
}
.testimonials {
    background-color: var(--cor-fundo-claro);
}
.testi-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    position: relative;
}
.testi-quote {
    color: var(--yellow-brand);
    font-size: 40px;
    position: absolute;
    top: 20px;
    right: 30px;
    opacity: 0.3;
}
.star-rating {
    color: var(--blue-brand);
    margin-bottom: 15px;
    font-size: 16px;
}
.testi-text {
    font-size: 15px;
    font-style: italic;
    margin-bottom: 25px;
    color: #555;
}
.client-info-name {
    font-weight: 700;
    color: var(--blue-brand);
    font-size: 16px;
}
.client-location {
    font-size: 13px;
    color: #888;
}
.site-footer {
    background-color: var(--blue-brand);
    color: var(--cor-texto-claro);
    padding-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}
.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--yellow-brand);
    margin-bottom: 20px;
    display: block;
    letter-spacing: -1px;
}
.footer-col p {
    font-size: 15px;
    line-height: 1.8;
    color: #ccc;
    max-width: 400px;
}
.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 700;
}
.footer-contact li,
.footer-links li {
    margin-bottom: 15px;
    font-size: 15px;
    color: #ccc;
}
.footer-contact i {
    color: var(--yellow-brand);
    margin-right: 12px;
    width: 16px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    font-size: 14px;
    color: #999;
}
.float-wpp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: transform 0.3s;
}
.float-wpp:hover {
    transform: scale(1.1);
}
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .hero-form-wrapper {
        max-width: 100%;
    }
    .services-original {
        padding-top: 80px;
    }
    .services-grid-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-section .container {
        grid-template-columns: 1fr;
    }
    .about-images {
        order: -1;
        margin-bottom: 40px;
    }
}
@media (max-width: 768px) {
    .nav-menu,
    .process-steps::before {
        display: none;
    }
    .fleet-grid,
    .footer-grid,
    .services-grid-cards,
    .testi-grid {
        grid-template-columns: 1fr;
    }
    .hero-horizontal-form {
        padding: 20px;
    }
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }
    .process-step {
        width: 100%;
    }
    .hero-title {
        font-size: 40px;
    }
}