@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&display=swap');
:root {
    --accent: #1d9255;
    --accent-2: #224d7b;
    --ink: #00111a;
    --bg: #eef2f3;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --radius: 14px;
    --transition: 200ms ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    background: var(--bg);
    color: var(--ink);
}


/* ============================================
   HEADER
============================================ */

.header {
    min-height: 60vh;
    background-image: url("/Banner.png");
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}

.header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.header-inner {
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.header img {
    height: 65px;
}

.brand a {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: white;
}

.brand {
    margin-left: 15px;
}

.brand-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
}

.brand-sub {
    font-size: .9rem;
    opacity: .85;
}


/* ============================================
   MENU
============================================ */

.menu ul {
    display: flex;
    gap: 28px;
    list-style: none;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.btn-menu {
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    color: white;
    box-shadow: var(--shadow);
}

.menu-toggle {
    width: 40px;
    height: 30px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3;
}

.menu-toggle span {
    height: 4px;
    background: white;
    border-radius: 999px;
    transition: var(--transition);
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

@media(max-width: 992px) {
    .menu-toggle {
        display: flex;
    }
    .menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        padding: 25px;
        background: rgba(0, 0, 0, .92);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }
    .menu.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .menu ul {
        flex-direction: column;
    }
}


/* ============================================
   HERO
============================================ */

.hero {
    z-index: 2;
    padding: 60px 0;
    position: relative;
}

.hero-content h1 {
    color: white;
    font-size: 2.4rem;
    font-weight: 800;
}

.hero-content p {
    color: white;
    opacity: .9;
    max-width: 480px;
    margin-bottom: 20px;
}

.hero-cta {
    padding: 12px 28px;
    background: white;
    color: var(--accent-2);
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow);
}


/* ============================================
   CARROSSEIS
============================================ */

.carousels-row {
    display: flex;
    gap: 40px;
    margin: 60px auto;
}

.carousel-box {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.carousel-slider {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.carousel-item img {
    height: 350px;
    object-fit: cover;
}

#servicos .carousel-item img {
    filter: saturate(1.25) contrast(1.1) brightness(1.05);
}

.carousel-legend {
    margin-top: 12px;
    font-weight: 700;
    font-size: 1.2rem;
}

@media(max-width: 992px) {
    .carousels-row {
        flex-direction: column;
    }
}


/* ============================================
   CLIENTES
============================================ */

.clientes h2 {
    text-align: center;
    margin-top: 60px;
    font-weight: 800;
}

.clientes-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px auto;
}

.clientes-grid img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow);
}


/* ============================================
   AVALIAÇÃO + ORÇAMENTO
============================================ */

.form-sections {
    display: flex;
    gap: 40px;
    margin: 70px auto;
    padding: 32px 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(34, 77, 123, 0.08), rgba(29, 146, 85, 0.08));
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.form-sections section {
    flex: 1;
    background: #fff;
    padding: 26px 24px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--accent);
    transition: var(--transition);
}

.form-sections section:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    border-color: var(--accent-2);
}

.form-sections h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--accent-2);
}

form input,
form textarea {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 12px;
}

.btn-enviar {
    width: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    padding: 12px;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    color: #fff;
}


/* ============================================
   SOBRE & FOOTER
============================================ */

.sobre {
    text-align: center;
    padding: 60px 0;
}

footer {
    text-align: center;
    opacity: .7;
    padding: 20px;
}


/* ============================================
   REDES SOCIAIS FLUTUANTES
============================================ */

.social-floating {
    position: fixed;
    right: 22px;
    /* ajusta aqui a posição horizontal */
    bottom: 120px;
    /* ajusta aqui a posição vertical */
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.social-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--accent-2);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.social-btn svg {
    width: 24px;
    height: 24px;
}


/* cores de cada rede */

.social-btn.instagram {
    color: #E1306C;
}

.social-btn.whatsapp {
    color: #25D366;
}


/* hover */

.social-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}


/* Responsivo: deixa um pouco mais alto no mobile */

@media (max-width: 768px) {
    .social-floating {
        right: 16px;
        bottom: 90px;
    }
}