/* ==================================================
   HEADER
================================================== */

.header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background: rgba(255, 255, 255, .95);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid var(--color-gray-200);

}

.header-container {

    max-width: 1300px;

    margin: 0 auto;

    padding: 14px 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}

/* ==================================================
   LOGOS
================================================== */

.logos {

    display: flex;

    align-items: center;

    gap: 18px;

    min-width: 0;

}

.logo-main {

    height: 58px;

    width: auto;

}

.logo-secondary {

    height: 48px;

    width: auto;

}

/* ==================================================
   NAV
================================================== */

.nav {

    display: flex;

    align-items: center;

    gap: 32px;

}

.nav a {

    color: var(--color-primary);

    font-weight: 600;

    position: relative;

}

.nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: var(--color-secondary);

    transition: .3s;

}

.nav a:hover::after {

    width: 100%;

}

/* ==================================================
   MENU MOBILE
================================================== */

.menu-toggle {

    display: none;

    font-size: 1.8rem;

    color: var(--color-primary);

}

.menu-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .45);

    opacity: 0;

    visibility: hidden;

    transition: .3s;

    z-index: 1050;

}

.menu-overlay.active {

    opacity: 1;

    visibility: visible;

}

/* ==================================================
   SECTIONS
================================================== */

.section {

    padding: 110px 0;

}

.section-alt {

    background: var(--color-gray-100);

}

/* ==================================================
   GRID PADRÃO
================================================== */

.section-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;

}

.section-grid.reverse {

    direction: rtl;

}

.section-grid.reverse>* {

    direction: ltr;

}

/* ==================================================
   TEXTOS
================================================== */

.section-text h2 {

    margin-bottom: 24px;

}

.section-text p {

    margin-bottom: 18px;

    font-size: 1.05rem;

}

/* ==================================================
   IMAGENS DAS SEÇÕES
================================================== */

.section-image {

    position: relative;

}

.section-image img {

    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-md);

}

/* ==================================================
   FOOTER
================================================== */

.footer {

    background:
        linear-gradient(180deg,
            var(--color-secondary),
            #0F1B40);

    color: white;

    padding: 70px 0 30px;

    margin-top: 0;

}

.footer-container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

}

/* FAIXA */
.footer-top {

    margin-bottom: 25px;

}

.footer-top span {

    display: inline-block;

    padding: 10px 18px;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, .08);

    border:
        1px solid rgba(255, 255, 255, .12);

    font-size: .9rem;

    letter-spacing: .5px;

}

/* LOGOS */

.footer-logos {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 40px;

    margin-bottom: 40px;

    flex-wrap: wrap;

}

.footer-logos img {

    height: 65px;

    width: auto;

    filter:
        drop-shadow(0 5px 15px rgba(0, 0, 0, .25));

    transition: .3s ease;

}

.footer-logos img:hover {

    transform:
        translateY(-5px);

}

/* TEXTO */

.footer-content {

    max-width: 800px;

    text-align: center;

}

.footer-content h3 {

    color: white;

    margin-bottom: 15px;

    font-size: 1.5rem;

}

.footer-content p {

    color:
        rgba(255, 255, 255, .8);

    line-height: 1.8;

}

/* DESENVOLVEDORES */

.footer-devs {

    margin-top: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    flex-wrap: wrap;

    padding-top: 25px;

    border-top:
        1px solid rgba(255, 255, 255, .12);

}

.footer-devs strong {

    color: white;

}

.footer-devs span {

    color:
        rgba(255, 255, 255, .7);

}

/* COPYRIGHT */

.footer-bottom {

    margin-top: 25px;

}

.footer-bottom p {

    font-size: .9rem;

    color:
        rgba(255, 255, 255, .55);

}

