* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #f7f7f7;
}

/* ============================================
   TÍTULOS PADRONIZADOS
============================================ */

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: #1f1f1f;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 35px;

    position: relative;
    display: inline-block;
    padding-bottom: 10px;

    transform: translateY(25px);
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title.show {
    opacity: 1;
    transform: translateY(0);
}

/* Linha dourada com glow */
.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 75px;
    height: 4px;

    background: linear-gradient(90deg, #b88418, #d69a2b, #f1c75c);
    box-shadow: 0 0 8px #d6a22a;

    transform: translateX(-50%);
    border-radius: 2px;
}

@keyframes fadeUpTitle {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ============================================
   HEADER
============================================ */

header {
    position: fixed;
    top: 0;
    width: 100%;

    background: linear-gradient(90deg, #0d0d0d, #1c1c1c, #0d0d0d);

    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    z-index: 1000;
}

header a img {
    transition: 1.5s ease;
     border-radius: 8px;
    transition: 0.3s ease;
}

header a img:hover {
    opacity: 0.85;
    transform: scale(1.02);
   
}

header img {
    height: 55px;
}

.nav-menu a {
    color: #fff;
    margin-left: 25px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
}

.nav-menu a:hover {
    color: #d69a2b;
}

/* Menu mobile */
.menu-toggle {
    font-size: 32px;
    cursor: pointer;
    display: none;
    color: white;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 75px;
    right: 0;

    background: linear-gradient(180deg, #1c1c1ccf, #0a0a0acd);

    width: 220px;
    padding: 20px;
    border-radius: 0 0 0 12px;
    box-shadow: -4px 4px 12px rgba(0,0,0,0.4);
}

.mobile-menu a {
    display: block;
    color: white;
    padding: 12px 0;
    text-decoration: none;
    border-bottom: 1px solid #333;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

@media (max-width: 900px) {
    .nav-menu { display: none; }
    .menu-toggle { display: block; }
}


/* ============================================
   HERO
============================================ */

.hero {
    height: 90vh;
    background: url('hero.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 90px 40px 0 40px;
}

/* Overlay com degradê */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.18),
        rgba(0,0,0,0.05)
    );

    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    color: #fff;
}

.hero h1 {
    font-size: 42px;
    font-weight: bold;
    text-shadow: 0px 2px 6px rgba(0,0,0,0.35);
}

.hero p {
    margin: 15px 0;
    font-size: 18px;
    text-shadow: 0px 2px 6px rgba(0,0,0,0.35);
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(90deg, #d69a2b, #f2c55a);
    padding: 12px 20px;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}


/* ============================================
   CARROSSEL
============================================ */

.carousel-section {
    padding: 80px 40px;
    background: white;
    text-align: center;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 30px;
}

.carousel-track {
    display: flex;
    gap: 25px;
    animation: scrollInfinite 35s linear infinite;
}

.carousel-item {
    min-width: 480px;
    height: 300px;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: 14px;

    /* efeito leve */
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.carousel-item:hover {
    transform: scale(1.05);
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scrollInfinite {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}


/* ============================================
   MODAL
============================================ */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.75);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: #fff;
    padding: 25px;
    width: 90%;
    max-width: 450px;
    border-radius: 10px;
    text-align: center;
}

#closeModal {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 26px;
    cursor: pointer;
}

#modalText {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
}


/* ============================================
   SEÇÃO QUEM SOMOS
============================================ */

.sobre-section {
    padding: 80px 40px;
    background: #ffffff;
    text-align: center;
}

/* Seção marcos com degradê */
.sobre-section.marcos {
    padding: 80px 40px;
    background: linear-gradient(
        135deg,
        #f1c40f,
        #e5b50d,
        #d9a30a,
        #c48708
    );
    color: #1f1f1f;
}

.sobre-intro {
    margin-bottom: 40px;
    font-size: 18px;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

/* Sócios */
.socios-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.socio-card {
    width: 280px;
    background: white;

    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    text-align: center;

    transition: 0.35s ease;
    overflow: hidden;

    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

.socio-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.4s ease;
}

.socio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

.socio-card:hover img {
    filter: brightness(0.8);
    transform: scale(1.05);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ============================================
   DETALHES - CARDS COM DEGRADÊ PRETO PREMIUM
============================================ */

.detalhes {
    padding: 40px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    justify-items: center;
}

/* CARD PRETO COM DEGRADÊ */
.detalhe-card {
    background: linear-gradient(160deg, #000000, #1a1a1a, #101010);
    color: #ffffff;
    width: 100%;
    max-width: 340px;
    padding: 25px;
    border-radius: 14px;

    box-shadow: 0 4px 16px rgba(0,0,0,0.25);

    border-top: 4px solid #ffffff33;

    opacity: 0;
    transform: translateY(25px);
    animation: fadeUpDetail 0.9s ease forwards;
}

@keyframes fadeUpDetail {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ============================================
   FOOTER COM DEGRADÊ PRETO → GRAFITE
============================================ */

.footer {
    background: linear-gradient(180deg, #0a0a0a, #1b1b1b, #0e0e0e);
    color: #d4d4d4;
    padding-top: 60px;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px 60px;
    align-items: start;
}

.footer-bottom {
    text-align: center;
    padding: 18px 20px;
    background: #0a0a0a;
    color: #8d8d8d;
}

/* Ajuste para impedir que a logo quebre o layout */
.footer-logo {
    max-width: 180px;
    width: 100%;
    height: auto;
    display: block;
}

/* Melhor alinhamento das colunas */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Links organizados */
.footer-col a {
    color: #d4d4d4;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-col a:hover {
    color: #f1c40f;
}

/* Em mobile reforçamos o alinhamento central */
@media (max-width: 600px) {
    .footer-col {
        align-items: center;
    }
}


/* ============================================
   BOTÃO WHATSAPP
============================================ */

.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;

    background: linear-gradient(135deg, #25d366, #1eba57);

    color: white;
    font-size: 26px;
    padding: 18px 20px;
    border-radius: 50%;

    box-shadow: 0px 4px 14px rgba(0,0,0,0.3);
    text-decoration: none;
    z-index: 1000;

    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* ============================================
   RESPONSIVIDADE (mantida)
============================================ */

/* todo seu responsivo continua igual (removido aqui só pra encurtar) */




/* ================================
   RESPONSIVIDADE GERAL
================================ */

/* ===== RESPONSIVO GERAL ===== */
@media (max-width: 1100px) {

    .detalhes {
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel-item {
        min-width: 380px;
        height: 260px;
    }

    .hero h1 {
        font-size: 34px;
    }
}

/* ===== TABLET ===== */
@media (max-width: 900px) {

    /* HERO */
    .hero {
        padding: 110px 25px 0 25px;
        height: 70vh;
        text-align: center;
        justify-content: center;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
    }

    /* CARROSSEL */
    .carousel-item {
        min-width: 320px;
        height: 220px;
    }

    /* SÓCIOS */
    .socios-container {
        gap: 25px;
    }

    .socio-card {
        width: 240px;
    }

    .socio-card img {
        height: 220px;
    }

    /* DETALHES */
    .detalhes {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .detalhe-card {
        max-width: 100%;
        padding: 20px;
    }

    /* FOOTER */
    .footer-grid {
        padding: 0 20px 40px 20px;
    }
}

/* ===== CELULAR — ATÉ 600px ===== */
@media (max-width: 600px) {

    /* HEADER */
    header {
        padding: 12px 20px;
    }

    header img {
        height: 48px;
    }

    /* HERO */
    .hero {
        padding: 120px 20px 0 20px;
        height: 75vh;
    }

    .hero h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 15px;
    }

    .btn-primary {
        padding: 10px 18px;
        font-size: 15px;
    }

   /* CARROSSEL — MOBILE */
.carousel-section {
    padding: 60px 20px;
    overflow: hidden;
}

/* Permite arrastar com o dedo */
.carousel-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    /* Remove barra de scroll */
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 auto;
    min-width: 260px;
    height: 200px;
    pointer-events: auto;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: center;
    position: relative;

    /* Aparência mais moderna */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.carousel-item:active {
    transform: scale(0.97);
}

/* Quem Somos */
.sobre-section {
    padding: 60px 20px;
}

.sobre-intro {
    font-size: 16px;
}

/* Cards dos sócios mobile */
.socios-container {
    flex-direction: column;
    gap: 25px;
}

.socio-card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.socio-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    border-radius: 14px;
}

    /* DETALHES */
    .detalhes {
        grid-template-columns: 1fr; /* 1 card por linha no celular */
    }

    .detalhe-card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    /* TITULOS */
    .section-title {
        font-size: 26px;
    }

    /* FOOTER */
    .footer {
        margin-top: 30px;
        padding-top: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-logo {
        margin: 0 auto 15px;
    }

    .footer-bottom {
        padding: 15px 0;
    }

    /* WHATSAPP */
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        font-size: 23px;
        padding: 15px;
    }
}

/* ===== CELULAR MUITO PEQUENO — ATÉ 420px ===== */
@media (max-width: 420px) {

    .hero h1 {
        font-size: 22px;
    }

    .carousel-item {
        min-width: 220px;
        height: 150px;
    }
}

