:root {
    --azul-principal: #64a5d6;
    --azul-escuro: #112536;
    --azul-soft: #f5f8ff;

    --amarelo: #facc15;
    --amarelo-escuro: #7e6607;

    --verde: #25d366;

    --texto: #1f2937;
    --cinza: #6b7280;
    --cinza-claro: #ebebeb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: Arial;
    background: var(--azul-soft);
    color: var(--texto);
}

.fade-in {
    opacity: 1;
    transform: translateY(30px);
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
    transition: 0.8s ease;

}


/* CONTAINER PADRÃO (🔥 ESSENCIAL) */
.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* HEADER */
header {
    position: fixed;
    width: 100%;
    background: var(--azul-escuro);
    padding: 15px 0;
    z-index: 1000;
}

/* BOTÃO HEADER */
.btn-header {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--amarelo);
    color: var(--amarelo-escuro);
    padding: 10px 12px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-header i {
    font-size: 18px;
}

/* MENU HAMBURGUER */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.menu-toggle i {
    color: var(--amarelo);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 50px;
}

.logo-text {
    font-size: 15px;
    color: var(--amarelo);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

nav a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
}

/* HERO */
.hero {
    position: relative;
    padding-top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* CONTEÚDO */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.4;
}

.hero p {
    margin: 20px 0;
}

/* BOTÕES */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    background: var(--amarelo);
    padding: 14px 25px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--amarelo-escuro);
}

.btn-outline {
    color: var(--texto);
    background: transparent;
    border: 2px solid var(--cinza);
}

.sobre {
    padding: 100px 20px;
    padding-bottom: 0;
}

.sobre-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sobre-content-destaque {
    background: var(--cinza-claro);
    border-radius: 12px;
    padding: 10px;
    color: var(--texto);
}

/* IMAGENS */
.sobre-img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

/* IMAGENS */
.sobre-img img {
    padding: 10px 10px;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
}

/* IMAGEM DE BAIXO (DESTAQUE) */
.sobre-img img:nth-child(3) {
    grid-column: span 2;
    width: 55%;
    margin: 0 auto;
    margin-top: -70px;
    z-index: 2;
}


/* TEXTO */
.sobre-content h2 {
    font-size: 1.8rem;
    margin: 15px 0;
}

.sobre-content p {
    margin-bottom: 20px;
}

/* TAG AZUL */
.tag {
    width: 60px;
    height: 10px;
    background: var(--amarelo);
    border-radius: 5px;
    margin-bottom: 10px;
}

/* LISTA */
.lista-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.lista-grid ul {
    list-style: none;
}

.lista-grid li {
    margin: 8px 0;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.lista-grid i {
    color: var(--amarelo);
    margin-right: 8px;
}

/* CARD */
.card-destaque {
    margin: 40px auto;
    max-width: 700px;
    padding: 20px;
    border-radius: 10px 10px 40px 10px;
    background: var(--azul-escuro);
    border-left: 5px solid var(--amarelo);
    color: var(--azul-soft);
    font-size: 14px;
}


/* SECTION */
.section p {
    line-height: 1.6;
}

.descricao {
    margin-bottom: 20px;
    font-size: 2rem;
}

/* GALERIA */
.galeria {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.galeria img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* TRABALHOS */
.section-trabalho {
    text-align: center;
    padding: 100px 0;
    padding-bottom: 0;
}

.section-trabalho h2 {
    color: var(--amarelo);
    padding: 0 20px;
    font-size: 1.9rem;
}

.section-trabalho p {
    padding: 25px 20px;
    padding-top: 10px;
}

.carousel {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: scroll 20s linear infinite;
    padding: 10px 0;
}

.carousel img {
    border-radius: 12px;
    width: 480px;
    height: 350px;
    object-fit: cover;
    transition: 0.3s;
}

/* HOVER */
.carousel img:hover {
    transform: scale(1.05);
}


/* INFO */
.info-modern {
    position: relative;
    padding: 100px 20px;
}

/* conteúdo */
.info-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    color: var(--texto);
}

.info-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.info-content p {
    max-width: 800px;
    margin: 10px auto;
    line-height: 1.6;
}

.info-desc {
    margin-bottom: 50px;
    opacity: 0.8;
}

/* GRID */
.info-cards {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.card {
    background: var(--azul-soft);
    color: #222;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
}

/* destaque azul */
.card.destaque {
    background: var(--azul-escuro);
    color: white;
}

/* ícones */
.card i {
    font-size: 35px;
    margin-bottom: 10px;
    display: block;
    color: var(--amarelo);
}

/* textos */
.card h3 {
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    margin-bottom: 20px;
}

/* botão */
.btn-card {
    display: inline-block;
    background: var(--amarelo);
    color: var(--amarelo-escuro);
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}

/* hover */
.card:hover {
    transform: translateY(-8px);
}

/* TOPO DIVIDIDO */
.info-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

/* lado esquerdo */
.info-text-left h2 {
    font-size: 2.8rem;
    text-align: left;
}

/* lado direito */
.info-text-right {
    text-align: left;
}

.info-text-right p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* FORM */
form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: auto;
}

input,
button {
    margin: 10px 0;
    padding: 12px;
}

button {
    background: var(--amarelo);
    border: none;
    color: white;
}

/* FOOTER */
.footer {
    background: #3a3a3a;
    color: white;
}

/* PARTE DE CIMA */
.links-centro {
    display: flex;
    flex-direction: column;
    align-items: center !important;
}

/* título */
.links-centro h4 {
    text-align: center !important;
}

/* lista */
.links-centro ul {
    padding: 0;
}

/* itens */
.links-centro ul li {
    text-align: center !important;
}

/* links */
.links-centro a {
    justify-content: center; /* importante por causa do flex */
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding: 30px 20px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;   /* centraliza a coluna */

}

/* TITULOS */
.footer-col h4 {
    margin-bottom: 15px;
}

/* LISTAS */
.footer-col ul {
    width: 100%;
    max-width: 200px;
    text-align: left;
    list-style: none;
}


.footer-col ul li {
    margin: 8px 0;
}

/* 🔥 AJUSTE AQUI (ÍCONES) */
.footer-col a {
    align-items: center;
    gap: 8px;                  /* espaço entre ícone e texto */
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
}

.footer-col a i {
    font-size: 16px;
    min-width: 18px;
    color: var(--amarelo);
}

.footer-col a:hover {
    color: var(--amarelo);
}

/* TEXTO */
.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

/* PARTE DO MEIO */
.footer-bottom {
    background: #2e2e2e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 90px 15px 20px;
    
}

/* LOGO */
.footer-logo p {
    font-weight: bold;
    color: var(--amarelo);
}

/* SOCIAL */
.footer-social a {
    margin-left: 20px;
    color: white;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--amarelo);
}

/* COPYRIGHT */
.footer-copy {
    text-align: center;
    padding: 15px;
    font-size: 13px;
}

/* BOTÃO WHATS FLUTUANTE */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--amarelo);
    color: var(--amarelo-escuro);
    font-size: 28px;
    padding: 10px;
    border-radius: 50%;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* LOGO NA COLUNA */
.footer-logo-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* IMAGEM DA LOGO */
.footer-logo-img {
    width: 220px;
    margin-bottom: 10px;
}




/* RESPONSIVO */
@media (max-width: 1024px) {
    .galeria {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .container{
        gap: 10px;
    }

    .logo-text{
        font-size: 13px;
    }

    .logo-area{
        gap: 2px;
    }

    nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: var(--azul-escuro);
        width: 200px;
        display: flex;
        flex-direction: column;
        padding: 20px;
        transform: translateX(100%);
        transition: 0.3s;
    }

    nav.active {
        transform: translateX(0);
    }

    nav a {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
        padding-right: 10px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .galeria {
        grid-template-columns: 1fr;
    }

    .sobre-container {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .sobre-img {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        order: 2;
    }

    .img {
        position: static;
        width: 100%;
        height: 10px;
    }

    .lista-grid {
        grid-template-columns: 1fr;
    }

    .carousel img {
        width: 200px;
        height: 140px;
    }

    .info-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .info-text-left h2 {
        text-align: center;
        font-size: 2rem;
    }

    .info-text-right {
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo-col{
        align-items: center;
    }

    .footer-bottom{
            padding: 15px 20px 15px 20px;

    }


}

@media (max-width: 600px) {
    .info-cards {
        grid-template-columns: 1fr;
    }

    .info-content h2 {
        font-size: 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

}

/* ANIMAÇÃO SLIDESHOW + ZOOM */
@keyframes slideshow {

    0% {
        background-image: url("img/bg1.png");
        transform: scale(1);
    }

    33% {
        background-image: url("img/bg2.png");
        transform: scale(1.1);
    }

    66% {
        background-image: url("img/bg3.png");
        transform: scale(1);
    }

    100% {
        background-image: url("img/bg1.png");
        transform: scale(1.1);
    }
}

/* ANIMAÇÃO SUAVE */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}