/* ===================================================
RESET / BASE
=================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 100px;
}

body {
    background: #f5f5f5;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===================================================
HEADER / NAVBAR
=================================================== */

header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);

    position: sticky;
    top: 0;
    z-index: 9999;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e3a5f;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.10s;
}

nav a:hover {
    color: #f39c12;
}

/* DROPDOWN */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: none;
    min-width: 200px;
    z-index: 9999;
}

.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu li a {
    color: #333;
    font-size: 14px;
}

.dropdown-menu li:hover {
    background: #f5f5f5;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* MENU BURGER */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
}


/* ===================================================
BANNER / CAROUSEL
=================================================== */

.banner {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.mobile-carousel {
    display: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.1);
    border: none;
    color: white;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 5;
    border-radius: 50%;
    transition: 0.3s;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

/* ===================================================
SOBRE
=================================================== */

.sobre {
    padding: 60px 0;
    background: white;
}

.sobre-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.sobre-img img {
    width: 100%;
    max-width: 470px;
    border-radius: 10px;
}

.sobre-texto h2 {
    margin-bottom: 20px;
    color: #1e3a5f;
}

.sobre-texto p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* ===================================================
ÁREAS
=================================================== */

.areas {
    padding: 60px 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.area .icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #f39c12;
}

.area h3 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #1e3a5f;
}

.area p {
    font-size: 14px;
    color: #666;
}

/* ===================================================
SERVIÇOS
=================================================== */

.servicos {
    padding: 60px 0;
    background: white;
}

.titulo-servicos {
    text-align: center;
    margin-bottom: 60px;
    color: #1e3a5f;
}

.servicos-content {
    display: flex;
    gap: 30%;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    padding-left: 5%;
    border-radius: 15px;
    background: #fafafa;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
    transition: 0.3s;
}

.servicos-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.servico-img img {
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    transition: 0.4s;
}

.servico-img img:hover {
    transform: scale(1.03);
}

.servico-texto h3 {
    color: #f39c12;
    margin-bottom: 20px;
}

.servico-texto ul {
    list-style: none;
}

.servico-texto li {
    margin-bottom: 12px;
    font-weight: 500;
    padding-left: 20px;
    position: relative;
}

.servico-texto li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f39c12;
    font-weight: bold;
}

/* ===================================================
CLIENTES
=================================================== */

.clientes {
    padding: 80px 0;
    background: #f4f4f4;
    overflow: hidden;
}

.clientes h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1e3a5f;
}

.carousel-clientes {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 60px;
    width:max-content;
}

.cliente {
    min-width: 120px;
    text-align: center;
}

.cliente img {
    height: 70px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: 0.3s;
}

.cliente img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.cliente span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
}

@keyframes scrollClientes {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===================================================
ORÇAMENTO
=================================================== */

.orcamento {
    padding-top: 60px;
    background: white;
    overflow: hidden;
}

.orcamento-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.orcamento-texto {
    flex: 1;
}

.orcamento-texto h2 {
    margin-bottom: 15px;
    color: #1e3a5f;
}

.orcamento-texto p {
    margin-bottom: 30px;
    color: #666;
}

.orcamento-texto img {
    max-width: 400px;
    margin-top: 20px;
}

.formulario {
    flex: 1;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
    margin-bottom: 25px;
}

.formulario h3 {
    margin-bottom: 20px;
    color: #1e3a5f;
}

.formulario form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.formulario input,
.formulario textarea {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.formulario textarea {
    resize: none;
    height: 100px;
}

.formulario button {
    background: #f39c12;
    border: none;
    padding: 12px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.formulario button:hover {
    background: #e67e22;
}

/* ===================================================
FOOTER
=================================================== */

footer {
    background: #ffffff;
    color: #333;
    padding: 50px 0;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.22);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo img {
    height: 50px;
}

.footer-info p {
    margin-bottom: 8px;
}

.footer-info a {
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #f39c12;
    font-size: 22px;
    transition: 0.3s;
}

.footer-social a:hover {
    transform: scale(1.2);
}

.footer-info i {
    color: #f39c12;
    margin-right: 8px;
    font-size: 18px;
}

/* ===================================================
RESPONSIVIDADE
=================================================== */

@media (max-width:1024px) {

    .sobre-content,
    .servicos-content,
    .orcamento-content {
        flex-direction: column;
        text-align: center;
    }

}

/*@media (max-width:768px){

.header-content{
flex-direction:column;
gap:15px;
}

nav ul{
gap:15px;
font-size:14px;
}

.desktop-carousel{
display:none;
}

.mobile-carousel{
display:block;
}

.banner{
height:500px;
}

.logo img{
height:40px;
}

}*/
@media (max-width:768px) {

    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .menu-toggle {
        display: flex;
    }



    nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav ul li {
        border-bottom: 1px solid #eee;
    }

    nav ul li a {
        display: block;
        padding: 15px;
    }

    nav.active {
        display: block;
    }

    .desktop-carousel {
        display: none;
    }

    .mobile-carousel {
        display: block;
    }

    .banner {
        height: 500px;
    }

    .logo img {
        height: 40px;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        display: none;
    }

    nav.active {
        display: block;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
    }

}

@media (max-width:480px) {

    .footer-content {
        margin-top: 20px;
    }

    .container {
        width: 95%;
    }

    .banner {
        height: 380px;
    }

    .logo img {
        height: 35px;
    }

    .cliente img {
        height: 50px;
    }



}