/* ==========================================================================
   1. RESET E CONFIGURAÇÕES BASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    list-style: none;
}

html {
    scroll-padding-top: 96px;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* ==========================================================================
   2. CABEÇALHO (HEADER & NAV)
   ========================================================================== */
header {
    padding: 0 3%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: #000000;
    border-bottom: 1px solid #1a1a1a;
}

main {
    padding-top: 95px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    min-height: 95px;
}

.logo {
    position: relative;
    left: 0;
    transform: none;
}

.logo img {
    height: 62px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-right: auto;
    margin-left: 50px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 8px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 22px;
    font-size: 1.4rem;
}

.social-icons a {
    color: #fff;
    transition: opacity 0.3s;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: none !important;
}

.social-icons a::after,
.social-icons a::before {
    content: none !important;
}

.social-icons a:hover {
    opacity: 0.6;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 30px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -2px;
}

.hero p {
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: #888;
    margin-top: 5px;
}

/* ==========================================================================
   4. PHOTO ROLLER (CARROSSEL)
   ========================================================================== */
.photo-roller-section {
    position: relative;
    display: flex;
    align-items: center;
    height: 460px;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
    width: 100%;
    background-color: #000000;
}

.photo-roller {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.photo-roller::-webkit-scrollbar {
    display: none;
}

.roller-container {
    display: flex;
    gap: 20px;
    padding: 0 5%;
    height: 100%;
    width: max-content;
}

.roller-container img {
    height: 100% !important;
    width: auto !important;
    min-width: 340px !important;
    flex: 0 0 auto !important;
    object-fit: cover !important;
    filter: grayscale(100%);
    transition: 0.5s;
    cursor: pointer;
}

.roller-container img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.nav-btn {
    position: absolute;
    z-index: 10;
    background: #000000;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 1.3rem;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.2s, color 0.3s;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.nav-btn:hover {
    background: #ffffff;
    color: #000000;
}

.prev {
    left: 25px;
}

.next {
    right: 25px;
}

/* ==========================================================================
   5. SEÇÕES PADRÃO
   ========================================================================== */
.content-section {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 10%;
    text-align: center;
}

.content-wrapper {
    max-width: 800px;
}

.content-wrapper-wide {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.section-about {
    background-color: #000000;
    border-bottom: 1px solid #1a1a1a;
    scroll-margin-top: 96px;
}

.section-about h2 {
    font-size: 3rem;
    font-weight: 900;
}

/* ==========================================================================
   6. FAIXA DAS EMPRESAS
   ========================================================================== */
.brands-split-section {
    min-height: auto;
    display: flex;
    width: 100%;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    scroll-margin-top: 96px;
}

.brand-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 4% 26px;
    text-align: justify;
    transition: transform 0.4s ease;
}

.column-content {
    max-width: 400px;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-logo {
    height: 138px;
    width: 248px;
    margin-bottom: 0.8rem;
    object-fit: contain;
}

.brand-column p {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1rem;
    text-align: justify;
    text-justify: inter-word;
}

.visit-btn {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px 25px;
    transition: 0.3s ease;
    text-transform: uppercase;
    margin-top: auto;
    align-self: center;
}

.brand-column .column-content > div {
    text-align: justify !important;
    width: 100%;
}

.visit-btn:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.column-ent {
    background: linear-gradient(135deg, #183e28 0%, #4c1f52 100%);
}

.column-corp {
    background: linear-gradient(180deg, #f06d2f 0%, #cd4a12 100%);
    color: #ffffff;
}

.column-dart {
    background: linear-gradient(180deg, #050505 0%, #111111 100%);
    border-left: 1px solid #1a1a1a;
    border-right: 1px solid #1a1a1a;
}

.logo-white {
    filter: brightness(0) invert(1) !important;
    background: transparent !important;
}

/* ==========================================================================
   7. CONTATO
   ========================================================================== */
.section-contato {
    background-color: #000000;
    border-top: 1px solid #1a1a1a;
    scroll-margin-top: 78px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: center;
    text-align: left;
}

.contact-main h2 {
    margin-bottom: 1.5rem;
}

.section-contato h2 {
    margin-bottom: 2rem;
    font-size: 3rem;
}

.contact-info {
    font-size: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info i {
    margin-right: 10px;
    color: #888;
}

.contact-direct-link {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-direct-link:hover {
    opacity: 0.72;
}

.contact-socials {
    display: grid;
    grid-template-columns: repeat(5, minmax(110px, 1fr));
    gap: 18px;
    justify-content: start;
    align-content: center;
}

.contact-socials a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 16px;
    padding: 18px 16px;
    transition: 0.3s;
    width: 100%;
    text-align: center;
    min-height: 88px;
    background: rgba(255, 255, 255, 0.02);
    flex-direction: column;
    max-width: 150px;
}

.contact-socials a i {
    font-size: 1.35rem;
}

.contact-socials a:hover {
    background: #fff;
    color: #000;
}

/* ==========================================================================
   8. MODAL DE EXPANSÃO DE FOTOS
   ========================================================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 80%;
    max-height: 85%;
    border-radius: 4px;
    user-select: none;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    z-index: 1010;
}

.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000000;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 1.3rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1010;
    transition: 0.3s;
}

.modal-nav-btn:hover {
    background: #ffffff;
    color: #000000;
}

.modal-prev {
    left: 40px;
}

.modal-next {
    right: 40px;
}

/* ==========================================================================
   9. MEDIA QUERIES (RESPONSIVIDADE)
   ========================================================================== */
@media (max-width: 992px) {
    .brands-split-section {
        flex-direction: column;
    }

    .brand-column {
        min-height: auto;
        padding: 34px 8%;
    }

    .column-dart {
        border-left: none;
        border-right: none;
        border-top: 1px solid #1a1a1a;
        border-bottom: 1px solid #1a1a1a;
    }

    .modal-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    main {
        padding-top: 70px;
    }

    .social-icons {
        display: none;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #000000;
        padding: 1.4rem 1.25rem 1.6rem;
        gap: 16px;
        margin-left: 0;
        border-bottom: 1px solid #1a1a1a;
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.4rem 0 0.8rem;
        font-size: 0.82rem;
        letter-spacing: 1.5px;
    }

    .logo img {
        height: 45px;
    }

    .nav-container {
        justify-content: space-between;
        min-height: 70px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-btn {
        display: none;
    }

    .photo-roller-section {
        height: 300px;
    }

    .photo-roller {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .roller-container {
        gap: 12px;
        padding: 0 1rem;
    }

    .roller-container img {
        height: 100%;
        min-width: 230px !important;
        scroll-snap-align: center;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .contact-socials {
        grid-template-columns: repeat(2, minmax(130px, 1fr));
        justify-content: stretch;
    }

    .column-content {
        align-items: center;
    }

    .brand-column .column-content > div {
        text-align: center !important;
    }

    .contact-main h2 {
        margin-bottom: 1.25rem;
    }

    .contact-main {
        max-width: 560px;
        margin: 0 auto;
    }

    .contact-info {
        align-items: center;
    }

    .contact-direct-link {
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .content-section {
        padding: 42px 6% !important;
    }

    .section-about h2,
    .section-contato h2 {
        font-size: 2.15rem;
    }

    .content-section p {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .brand-column {
        padding: 26px 6% 30px;
    }

    .brand-logo {
        width: 210px;
        height: 112px;
        margin-bottom: 0.5rem;
    }

    .brand-column p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .visit-btn {
        width: 100%;
        max-width: 240px;
        text-align: center;
        padding: 13px 18px;
    }

    .photo-roller-section {
        height: 250px;
    }

    .roller-container img {
        min-width: 190px !important;
    }

    .contact-info {
        font-size: 1.08rem;
        gap: 14px;
    }

    .contact-socials {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-socials a {
        max-width: none;
        min-height: 78px;
    }
}
