/* ==========================================================================
   01. VARIÁVEIS (DESIGN SYSTEM)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rye&display=swap');

:root {
  /* Paleta de Cores Principais */
  --cor-verde: #084222;
  --cor-vermelho: #8f2317;
  --cor-amarelo: #e99931;
  --cor-azul: #072530;
  
  /* Cores Neutras e Texto */
  --cor-branco: #ffffff;
  --cor-preto: #000000;
  --cor-texto: #000000;
  --cor-texto-claro: #ffffff;
  --cor-texto-muted: rgba(255, 255, 255, 0.7);
  --cor-fundo-escuro: #111111;

  /* Cores de Destaque e Links */
  --cor-destaque: #ffd9a8;
  --cor-link: #6ec1ff;
  --cor-link-hover: #9fd7ff;
  --cor-link-alt: #00BFFF;

  /* Tipografia */
  --font-principal: 'Inter', sans-serif;
  --font-titulos: 'Rye', serif;

  /* Sombras e Efeitos */
  --sombra-texto: 0px 4px 8px rgba(0, 0, 0, 0.4);
  --sombra-card: 0 10px 25px rgba(0, 0, 0, 0.15);
  --sombra-forte: 0 25px 50px rgba(0, 0, 0, 0.35);
  --sombra-slide: 0 30px 60px rgba(0, 0, 0, 0.45);
  
  /* Transições */
  --transition-speed: 0.3s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #000;
    width: 100%;
    overflow-x: hidden;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* HERO */
.hero-section {
    width: 100%;
    height: 80vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: 1;
}

/* Escurece levemente a imagem para o título aparecer melhor */
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.hero-title-container {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 100%;
    text-align: center;
    z-index: 5;
    pointer-events: none;
    padding: 0 20px;
}

.hero-title-discover {
    font-family: 'Rye', serif;
    font-size: 4vw;
    line-height: 1.2;
    letter-spacing: 0.45em;
    color: #ffffff;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.45);
    margin: 0;

}

/* COPYRIGHT PADRÃO */

.copyright-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 6;

    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;

    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}
/*
.copyright-tag---hero {
    margin-bottom: 70px !important;
}

.hero-copyright {
    right: 14px;
    left: auto;
    z-index: 6;
}*/

.copyright-tag-img {
    position: absolute;
    right: 14px;
    bottom: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1;
    z-index: 4;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.copyright-tag---hero {
    margin-bottom: 70px !important;
}

/* LISTAGEM */
.list-section {
    padding: 40px 20px 150px;
    background-color: #e9962c;
    display: flex;
    justify-content: center;
}

.list-cards-container {
    width: 100%;
    max-width: 1200px;

    display: grid;
    grid-template-columns: repeat(3, 300px);
    justify-content: center;

    gap: 32px 70px;
    margin: 0 auto;
}

.list-cards-container .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    background: transparent;
    padding: 0;
    border-radius: 10px;
    overflow: visible;
    text-decoration: none;
}

.card-link-area {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    flex-shrink: 0;

    border-radius: 10px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    transition: transform 0.4s ease;
}

.list-cards-container .card:hover .card-image {
    transform: scale(1.04);
}

.list-cards-container .card-title {
    color: #000000;

    margin-top: 8px;
    margin-bottom: 0;

    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 700;

    text-align: center;
}

/* RESPONSIVO */
.resize-transition-stopper .main-nav {
    transition: none !important;
}

.resize-transition-stopper .header-right {
    transition: none !important;
}

@media (max-width: 1024px) {
    .list-cards-container {
        grid-template-columns: repeat(2, 300px);
        gap: 32px 40px;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 80px;
        background: transparent;
        position: absolute;
        z-index: 101;
        justify-content: space-between;
        padding: 0 20px;
    }

    .logo-header {
        width: 150px;
    }

    .main-nav {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        position: fixed;
        top: 80px;
        left: 0;

        width: 100%;
        height: calc(100vh - 80px);

        background: rgba(0, 0, 0, 0.95);
        z-index: 100;

        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .main-nav.nav-active {
        transform: translateX(0);
    }

    .menu-toggle {
        display: block;
        padding: 0;
        margin: 0;

        line-height: 1;
        font-size: 30px;

        color: #ffffff;
        text-shadow: none;
    }

    .menu-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 40px;

        color: white;
        font-size: 40px;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .main-nav a {
        font-size: 28px;
        font-weight: 500;
        color: white;
        text-shadow: none;
    }

    .header-right {
        width: auto !important;
        gap: 20px !important;
        margin-left: auto;
        margin-right: -10px;

        display: flex;
        align-items: center;
        justify-content: flex-end;

        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }

    .social-icon {
        display: flex !important;
    }

    .social-icon img {
        width: 26px;
        height: 26px;
    }

    .header-right.header-right-hidden {
        transform: translateX(100%);
        opacity: 0;
    }

    .hero-section {
        height: 75vh;
    }

    .hero-title-discover {
        font-size: 7vw;
        letter-spacing: 0.20em;
    }

    .list-section {
        padding: 60px 15px 150px;
    }

    .list-cards-container {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 32px;
    }

    .list-cards-container .card {
        width: 100%;
        max-width: 320px;
    }

    .card-image-wrapper {
        height: 210px;
    }

    .list-cards-container .card-title {
        font-size: 1.35rem;
        margin-top: 7px;
        margin-bottom: 0;
    }

    .copyright-tag {
        font-size: 11px;
        right: 8px;
        bottom: 8px;
    }

    .copyright-tag---hero {
        margin-bottom: 35px !important;
    }

    .hero-copyright {
        right: 15px;
    }

    .footer-extra-info {
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
    }
}

@media (max-width: 374px) {
    .site-header {
        padding: 0;
    }

    .logo-header {
        width: 120px;
    }

    .hero-title-discover {
        font-size: 8vw;
        letter-spacing: 0.12em;
    }

    .copyright-tag {
        font-size: 10px;
    }

    .list-cards-container .card-title {
        font-size: 1.25rem;
    }
}

/* * {
    outline: 1px solid red;
} */