* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #EA5D1D;
}

body {
    font-family: 'Inter',sans-serif;
    color: #3D3D3D;
   
}




/* =========================
HEADER FIXO PREMIUM
========================= */

.header {
    position: relative; /* ou static */
    width: 100%;
    z-index: 9999;
    padding: 15px 0;
    background: rgba(3,120,100,1);
    backdrop-filter: blur(12px);
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}


    /* ESTADO AO ROLAR */

    .header.scrolled {
        padding: 18px 0;
        background: rgba(3,120,100,1);
        backdrop-filter: blur(16px);
        box-shadow: 0 10px 40px rgba(0,0,0,.18);
    }



/* =========================
NAVBAR
========================= */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}



/* =========================
MENU
========================= */

.menu {
    display: flex;
    align-items: flex-end;
    gap: 70px;
    list-style: none;
}

.menu-item {
    position: relative;
}

    .menu-item > a {
        color: white;
        text-decoration: none;
        font-size: 13px;
        letter-spacing: .5px;
        font-family: 'Inter', sans-serif;
        display: flex;
        align-items: center;
        gap: 10px;
        padding-bottom: 20px;
        transition: .3s;
        position: relative;
    }

    .menu-item:hover > a {
        color: rgba(234,93,29,1);
    }

    .menu-item.active > a {
        color: rgba(234,93,29,1);
    }


        /* LINHA DOURADA */

        .menu-item.active > a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 3px;
            background: rgba(234,93,29,1);
            border-radius: 20px;
        }



.arrow {
    font-size: 17px;
}



/* =========================
BOTÃO
========================= */

.btn-header {
    background: rgba(234,93,29,1);
    color: #03211f;
    text-decoration: none;
    padding: 22px 34px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 13px;
    transition: .3s;
}

    .btn-header:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(197,106,27,.35);
        background: #64B980;
    }



/* =========================
MEGA MENU
========================= */

.mega-menu {
    position: absolute;
    top: 75px;
    left: -220px;
    width: 1050px;
    background: white;
    border-radius: 35px;
    padding: 30px 30px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .35s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}


    /* TRIÂNGULO */

    .mega-menu::before {
        content: '';
        position: absolute;
        top: -18px;
        left: 320px;
        width: 35px;
        height: 35px;
        background: white;
        transform: rotate(45deg);
    }


/* ABRIR HOVER */

.menu-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}



/* =========================
COLUNAS
========================= */

.menu-column {
    flex: 1;
    padding: 0 10px;
    border-right: 1px solid #e3c98e;
}

    .menu-column:last-child {
        border-right: none;
    }



/* =========================
ÍCONE
========================= */

.icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid #e3c98e;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

    .icon-circle img {
        width: 70px;
    }



/* =========================
TÍTULOS
========================= */

.menu-column h3 {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.2;
    color: #3D3D3D;
    margin-bottom: 35px;
    min-height: 90px;
    text-align: center;
    font-weight: bold;
}



/* =========================
SUBMENU
========================= */

.menu-column h2 {
    list-style: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    margin-bottom: 30px;

}

    .menu-column h2 a {
        text-decoration: none;
        color: #3D3D3D;
        font-size: 12px;
        transition: .3s;
    }

        .menu-column h2 a:hover {
            color: rgba(234,93,29,1);
            padding-left: 5px;
        }



/* =========================
RESPONSIVO
========================= */

@media(max-width:1200px) {

    .mega-menu {
        width: 1000px;
        left: -150px;
        overflow: auto;
    }
}



@media(max-width:992px) {

    body {
        padding-top: 160px;
    }

    .navbar {
        flex-direction: column;
        gap: 30px;
    }

    .menu {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .mega-menu {
        position: relative;
        width: 100%;
        left: 0;
        top: 20px;
        flex-direction: column;
        gap: 40px;
    }

        .mega-menu::before {
            display: none;
        }

    .menu-column {
        border-right: none;
        border-bottom: 1px solid #e3c98e;
        padding-bottom: 40px;
    }
}



/* =========================================
ANIMAÇÃO GLOBAL DAS SEÇÕES
========================================= */

section {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s ease, transform 1s ease;
}


    section.show {
        opacity: 1;
        transform: translateY(0);
    }




/* =========================================
MOBILE MENU PREMIUM
========================================= */

.mobile-toggle {
    display: none;
    font-size: 34px;
    color: white;
    cursor: pointer;
}


/* =========================================
RESPONSIVO TABLET
========================================= */

@media(max-width: 992px) {

    body {
        padding-top: 100px;
    }

    .header {
        padding: 18px 0;
    }

    .navbar {
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-toggle {
        display: block;
    }

    .menu {
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: linear-gradient(90deg, #021f1d 0%, #063937 100%);
        border-radius: 22px;
        padding: 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        display: none;
        box-shadow: 0 15px 40px rgba(0,0,0,.22);
    }

        .menu.active {
            display: flex;
        }

    .menu-item {
        width: 100%;
    }

        .menu-item > a {
            width: 100%;
            justify-content: space-between;
            padding-bottom: 10px;
            font-size: 16px;
        }

            .menu-item.active > a::after {
                display: none;
            }

    .btn-header {
        display: none;
    }


    /* =========================================
    MEGA MENU MOBILE
    ========================================= */

    .mega-menu {
        position: relative;
        top: 15px;
        left: 0;
        width: 100%;
        padding: 20px;
        border-radius: 20px;
        flex-direction: column;
        gap: 30px;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
    }

        .mega-menu::before {
            display: none;
        }

    .menu-item:hover .mega-menu {
        display: flex;
    }

    .menu-column {
        border-right: none;
        border-bottom: 1px solid #e3c98e;
        padding: 0 0 25px 0;
    }

        .menu-column:last-child {
            border-bottom: none;
        }

    .icon-circle {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }

        .icon-circle img {
            width: 50px;
        }

    .menu-column h3 {
        min-height: auto;
        margin-bottom: 20px;
        font-size: 16px;
    }

    .menu-column h2 {
        margin-bottom: 18px;
    }

        .menu-column h2 a {
            font-size: 14px;
        }
}


/* =========================================
SMARTPHONES
========================================= */

@media(max-width: 576px) {

    .header {
        padding: 15px 0;
    }

    .mobile-toggle {
        font-size: 30px;
    }

    .menu {
        top: 75px;
        padding: 20px;
    }

    .menu-item > a {
        font-size: 15px;
    }

    .mega-menu {
        padding: 15px;
    }

    .icon-circle {
        width: 75px;
        height: 75px;
    }

        .icon-circle img {
            width: 42px;
        }

    .menu-column h3 {
        font-size: 15px;
    }

    .menu-column h2 a {
        font-size: 13px;
    }
}
