html {
    scroll-behavior: smooth;
}

/* Navbar simples topo */
.navbar-topo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    background: linear-gradient(90deg, var(--asaph-accent) 60%, var(--asaph-title-color) 100%);
    box-shadow: 0 2px 12px rgba(46, 125, 50, 0.10);
    z-index: 200;
}

.navbar-pesquisa {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 500px;
    margin: 0 auto;
}

.navbar-pesquisa input {
    width: 260px;
    max-width: 100%;
    padding: 8px 14px;
    border-radius: 8px 0 0 8px;
    border: 1px solid var(--asaph-border);
    font-size: 1rem;
    outline: none;
    background: #fff;
    color: #222;
    transition: border 0.2s;
}

.navbar-pesquisa button {
    padding: 8px 16px;
    border-radius: 0 8px 8px 0;
    border: none;
    background: var(--asaph-accent);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.2s;
}

.navbar-pesquisa button:hover {
    background: var(--asaph-accent-hover);
}

.navbar-login {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 18px;
}

.navbar-perfil {
    width: 38px;
    height: 38px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.10);
    border-radius: 30%
}

.navbar-perfil-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    box-shadow: none;
}

@media (max-width: 700px) {
    .navbar-topo {
        flex-direction: column;
        height: auto;
        padding: 10px 8px;
    }

    .navbar-pesquisa input {
        width: 120px;
        font-size: 0.95rem;
    }

    .navbar-pesquisa button {
        padding: 7px 10px;
        font-size: 1rem;
    }

    .navbar-perfil {
        width: 28px;
        height: 28px;
    }

    .navbar-login {
        margin-right: 0;
    }
}

:root {
    --font-asaph: 'Montserrat', sans-serif;
    --asaph-dark: #121212;
    --asaph-card: #1e1e1e;
    --asaph-gray: #b0b0b0;
    --asaph-light: #e0e0e0;
    --asaph-accent: #087849;
    --asaph-accent-hover: #0a8a56;
    --asaph-title-color: #2D7843;
    --asaph-white: #ffffff;
    --asaph-border: #2e2e2e;
    --asaph-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    --asaph-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.secoes-coluna {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    width: 100%;
    margin-bottom: 32px;
    margin-top: 48px;
}

.secoes-coluna>.secao-card {
    max-width: 400px;
    width: 100%;
}

@media (max-width: 900px) {
    .secoes-coluna {
        flex-direction: column;
        align-items: center;
    }

    .secoes-coluna>.secao-card {
        max-width: 600px;
    }
}

.secoes-coluna>.secao-card {
    max-width: 600px;
    width: 100%;
}

.btn-form-carro {
    display: inline-block;
    background: linear-gradient(90deg, #43a047 0%, #388e3c 100%);
    color: #fff;
    font-weight: 600;
    padding: 11px 24px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 12px;
    box-shadow: 0 2px 10px rgba(46, 125, 50, 0.12);
    letter-spacing: 0.5px;
    font-size: 1.08rem;
    border: none;
    cursor: pointer;
    transition: background 0.22s cubic-bezier(.4, 0, .2, 1), box-shadow 0.22s cubic-bezier(.4, 0, .2, 1), transform 0.14s cubic-bezier(.4, 0, .2, 1);
}

.btn-escala {
    display: inline-block;
    background: linear-gradient(90deg, #43a047 0%, #388e3c 100%);
    color: #fff;
    font-weight: 600;
    padding: 11px 24px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 12px;
    box-shadow: 0 2px 10px rgba(46, 125, 50, 0.12);
    letter-spacing: 0.5px;
    font-size: 1.08rem;
    border: none;
    cursor: pointer;
    transition: background 0.22s cubic-bezier(.4, 0, .2, 1), box-shadow 0.22s cubic-bezier(.4, 0, .2, 1), transform 0.14s cubic-bezier(.4, 0, .2, 1);
}

.btn-form-carro:hover {
    background: linear-gradient(90deg, var(--asaph-accent-hover) 0%, #388e3c 100%);
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.18);
    transform: scale(1.03) translateY(-1px);
    color: #fff;
}

/* Menu lateral */

/* Navbar horizontal substituindo menu lateral */
.navbar-menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 56px;
    background: linear-gradient(90deg, var(--asaph-accent) 60%, var(--asaph-title-color) 100%);
    box-shadow: 0 2px 12px rgba(46, 125, 50, 0.10);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 150;
    padding: 0 24px;
}

.navbar-menu-list {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu-list li {
    display: flex;
    align-items: center;
}

.navbar-menu-list a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 1.08rem;
    transition: background 0.2s;
    display: block;
}

.navbar-menu-list a:hover {
    background: var(--asaph-accent-hover);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 700px) {
    .navbar-menu {
        flex-direction: column;
        height: auto;
        padding: 10px 8px;
    }

    .navbar-menu-list {
        gap: 12px;
    }

    .navbar-menu-list a {
        padding: 8px 10px;
        font-size: 1rem;
    }
}

main {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px 20px 20px;
}


.secao-card-sobre {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(46, 125, 50, 0.10);
    padding: 28px 22px;
    width: 100%;
    max-width: 400px;
    border: 1.5px solid #388e3c33;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 260px;
    box-sizing: border-box;
    font-size: 22px;
}

.secao-card {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(46, 125, 50, 0.10);
    padding: 28px 22px;
    width: 100%;
    max-width: 600px;
    border: 1.5px solid #388e3c33;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 340px;
    box-sizing: border-box;
}

.secao-card h2 {
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.conteudo-placeholder {
    color: #e0e7ef;
    font-size: 1.05rem;
}

/* Formulário do carro */
.form-carro {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
    background-color: var(--asaph-accent);
}

.form-carro label {
    color: #e0e7ef;
    font-size: 1rem;
}

.form-carro input,
.form-carro textarea {
    width: 100%;
    padding: 7px 10px;
    border-radius: 6px;
    border: 1px solid #388e3c55;
    background: #f3f4f6;
    color: #222;
    font-size: 1rem;
    margin-top: 4px;
}

.form-carro button {
    align-self: flex-end;
    background: var(--asaph-accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 18px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}

.form-carro button:hover {
    background: var(--asaph-accent-hover);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(120deg, var(--asaph-dark) 100%, var(--asaph-title-color) 80%);
    color: #f3f4f6;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px 20px 20px;
}

.apresentacao-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    width: 100%;
    justify-content: center;
    margin-bottom: 48px;
}

.apresentacao-texto {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: 320px;
    max-width: 600px;
    margin-top: -18px;
}

.apresentacao-texto h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 32px;
    text-shadow: 0 2px 8px #1e293b60;
    letter-spacing: 1px;
    color: #fff;
}

.apresentacao-texto p {
    font-size: 1.15rem;
    color: #e0e7ef;
    margin-bottom: 8px;
    text-align: left;
}

@media (max-width: 700px) {
    .apresentacao-flex {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .apresentacao-texto {
        align-items: center;
        text-align: center;
    }

    .apresentacao-texto h1,
    .apresentacao-texto p {
        text-align: center;
    }
}

.imagem-apresentacao {
    max-width: 450px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    margin-bottom: 32px;
    animation: apresentacao-move 3.5s ease-in-out infinite alternate;
}

@keyframes apresentacao-move {
    0% {
        transform: scale(1) rotate(0deg) translateY(0);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    }

    50% {
        transform: scale(1.08) rotate(-2deg) translateY(-8px);
        box-shadow: 0 16px 48px rgba(46, 125, 50, 0.25);
    }

    100% {
        transform: scale(1) rotate(0deg) translateY(0);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    }
}

.imagem-apresentacao:hover {
    transform: scale(1.08) rotate(-2deg) translateY(-8px);
    box-shadow: 0 16px 48px rgba(46, 125, 50, 0.25);
}

footer {
    background: var(--asaph-dark);
    color: #f3f4f6;
    text-align: center;
    padding: 18px 10px;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    box-shadow: 0 -2px 16px rgba(30, 41, 59, 0.15);
}

a {
    display: inline-block;
    text-decoration: none;
    color: #43a047;
    font-weight: 500;
    transition: color 0.2s;
}

a:hover {
    text-decoration: underline;
    color: var(--asaph-accent-hover);
}