/**
 * Clean Base CSS
 * Reset + Variáveis
 */

/* ====================================
   FONTS
   ==================================== */
/* Poppins - Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Janson Text LT Std - Local */
@font-face {
    font-family: 'Janson Text LT Std';
    src: url('../fonts/JansonTextLTStd-Roman.woff2') format('woff2'),
        url('../fonts/JansonTextLTStd-Roman.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Janson Text LT Std';
    src: url('../fonts/JansonTextLTStd-Italic.woff2') format('woff2'),
        url('../fonts/JansonTextLTStd-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Janson Text LT Std';
    src: url('../fonts/JansonTextLTStd-Bold.woff2') format('woff2'),
        url('../fonts/JansonTextLTStd-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Janson Text LT Std';
    src: url('../fonts/JansonTextLTStd-BoldItalic.woff2') format('woff2'),
        url('../fonts/JansonTextLTStd-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* ====================================
   CSS VARIABLES
   ==================================== */
:root {
    /* Verde */
    --verde: #024638;
    --Atai-Inst---Verde-Verde-800: #011914;
    --Atai-Inst---Verde-Verde-700: #01241D;
    --Atai-Inst---Verde-Verde-600: #012F26;
    --Atai-Inst---Verde-Verde-500: #013A2F;
    --Atai-Inst---Verde-Verde-Main: #024638;
    --Atai-Inst---Verde-Verde-100: #3B7468;
    --Atai-Inst---Verde-Verde-200: #74A298;
    --Atai-Inst---Verde-Verde-300: #ADD0C8;
    --Atai-Inst---Verde-Verde-400: #E6FEF9;

    /* Terra */
    --marrom: #B58150;
    --Atai-Inst---Terra-Terra-800: #120D08;
    --Atai-Inst---Terra-Terra-700: #3B2A1A;
    --Atai-Inst---Terra-Terra-600: #64472C;
    --Atai-Inst---Terra-Terra-500: #8D643E;
    --Atai-Inst---Terra-Terra-Main: #B58150;
    --Atai-Inst---Terra-Terra-100: #C69D77;
    --Atai-Inst---Terra-Terra-200: #D7B99E;
    --Atai-Inst---Terra-Terra-300: #E8D5C5;
    --Atai-Inst---Terra-Terra-400: #F7F2ED;

    /* White */
    --branco: #fff;
    --Atai-Inst---White-White-800: #0D0D0D;
    --Atai-Inst---White-White-700: #4A4A4A;
    --Atai-Inst---White-White-600: #878787;
    --Atai-Inst---White-White-500: #C4C4C4;
    --Atai-Inst---White-White-Main: #FFF;
    --Atai-Inst---White-White-100: #FCFCFC;
    --Atai-Inst---White-White-200: #F9F9F9;
    --Atai-Inst---White-White-300: #F6F6F6;
    --Atai-Inst---White-White-400: #F2F2F2;

    /* Typography */
    --poppins: "Poppins";
    --janson: "Janson Text LT Std";

    --font-primary: "Poppins", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-serif: "Janson Text LT Std", Georgia, serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;

    --poppins: font-family: Poppins, , font-style: normal, font-weight: 400, line-height: 110%;


    /* Tamanhos */
    --font30: font-size: 30px;
    --font36: font-size: 36px;
    --font40: font-size: 40px;
    --font44: font-size: 44px;
    --font46: font-size: 46px;
    --font50: font-size: 50px;
    --font56: font-size: 56px;
    --font60: font-size: 60px;
    --font64: font-size: 64px;

    /* Font Weight */
    --normal: font-weight: 400;
    --medium: font-weight: 500;
    --semibold: font-weight: 600;
    --bold: font-weight: 700;
}




/* ====================================
   RESET
   ==================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: var(--font-size-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: var(--line-height-base);
    color: var(--Atai-Inst---White-White-800);
    background-color: var(--Atai-Inst---White-White-Main);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

ul,
ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
    transform: translateY(-3px);
}

/* ====================================
   UTILITIES
   ==================================== */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ====================================
   BUTTONS
   ==================================== */
.btn {
    display: flex;
    padding: 0.75rem 1.5rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    border: 1px solid var(--Atai-Inst---White-White-Main, #FFF);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--Atai-Inst---White-White-Main, #FFF);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Botão 01 - Outline */
.btn--outline {
    background: transparent;
    border: 1px solid var(--Atai-Inst---White-White-Main, #FFF);
    color: var(--Atai-Inst---White-White-Main, #FFF);
}

.btn--outline:hover {
    background: var(--Atai-Inst---White-White-Main, #FFF);
    color: var(--Atai-Inst---Verde-Verde-Main, #024638);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Botão 02 - Terra Main */
.btn--terra {
    flex-direction: column;
    gap: 0.5rem;
    background: var(--Atai-Inst---Terra-Terra-Main, #B58150);
    border: 1px solid var(--Atai-Inst---White-White-Main, #FFF);
    color: var(--Atai-Inst---White-White-Main, #FFF);
}

.btn--terra:hover {
    background: var(--Atai-Inst---Terra-Terra-600, #64472C);
    border-color: var(--Atai-Inst---Terra-Terra-600, #64472C);
}

/* Botão 03 - Verde 600 */
.btn--verde {
    background: var(--Atai-Inst---Verde-Verde-600, #012F26);
    border: 1px solid var(--Atai-Inst---White-White-Main, #FFF);
    color: var(--Atai-Inst---White-White-Main, #FFF);
}

.btn--verde:hover {
    background: var(--Atai-Inst---Verde-Verde-Main, #024638);
    border-color: var(--Atai-Inst---Verde-Verde-Main, #024638);
}

/* Botão 04 - Terra 600 */
.btn--terra-dark {
    flex-direction: column;
    gap: 0.5rem;
    background: var(--Atai-Inst---Terra-Terra-600, #64472C);
    border: 1px solid var(--Atai-Inst---White-White-Main, #FFF);
    color: var(--Atai-Inst---White-White-Main, #FFF);
}

.btn--terra-dark:hover {
    background: var(--Atai-Inst---Terra-Terra-700, #3B2A1A);
    border-color: var(--Atai-Inst---Terra-Terra-700, #3B2A1A);
}

/* Botão 05 - Outline Terra */
.btn--outline-terra {
    gap: 0.5rem;
    align-self: stretch;
    background: transparent;
    border: 1px solid var(--Atai-Inst---Terra-Terra-Main, #B58150);
    color: var(--Atai-Inst---Terra-Terra-Main, #B58150);
}

.btn--outline-terra:hover {
    background: var(--Atai-Inst---Terra-Terra-Main, #B58150);
    color: var(--Atai-Inst---White-White-Main, #FFF);
    box-shadow: 0 0 15px rgba(181, 129, 80, 0.3);
}

/* BANNER */
.banner-page {
    background: url("../images/image-banner-bikepark.png"), var(--Atai-Inst---Verde-Verde-Main, #024638);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center right;
    display: flex;
    width: 100%;
    justify-content: center;
}

.content-banner {
    width: 100%;
    max-width: 1300px;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.breadcrumb {
    color: var(--Atai-Inst---Verde-Verde-100, #3B7468);
    font-family: Poppins;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    /* 107.692% */
}

.titulo-banner {
    display: flex;
    flex-direction: column;
    padding: 32px 0;
    gap: 6px;
    width: 40%;
}

.titulo-banner h1 {
    color: var(--Atai-Inst---White-White-Main, #FFF);
    font-family: "Janson Text LT Std";
    font-size: 40px;
    font-style: italic;
    font-weight: 700;
    line-height: 48px;
    /* 120% */
    margin-top: 70px;
}

.titulo-banner p {
    color: var(--Atai-Inst---White-White-Main, #FFF);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.64px;
}

.imagem-banner {
    width: 70%;
    height: 382px;
}


/* INFORMAÇÕES BIKEPARK */

.infos-bikepark {
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
    padding: 140px 20px 80px 20px;
}

.destaque-maiuscula {
    text-transform: uppercase;
}

.text-infos {
    display: flex;
    flex-direction: column;
}

.container-imagem {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.container-imagem p {
    color: var(--Atai-Inst---White-White-700, #4A4A4A);
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0.56px;
}

.destaque-legenda {
    color: var(--Atai-Inst---Terra-Terra-Main, #B58150);
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    /* 100% */
    letter-spacing: 0.56px;
}

.text-infos h2 {
    margin-top: 35px;
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--Atai-Inst---Verde-Verde-100, #3B7468);
}

/* RESPONSIVE */

@media (max-width: 1024px) {

    /* UTILITIES */
    .container {
        width: 100%;
        padding: 0 20px;
    }

    /* BANNER */
    .banner-page {
        background-position: center;
        background-size: cover;
        height: auto;
        padding: 60px 20px;
        flex-direction: column;
    }

    .content-banner {
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .titulo-banner {
        width: 100%;
        padding: 0;
        align-items: center;
    }

    .titulo-banner h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-top: 20px;
    }

    .imagem-banner {
        width: 100%;
        height: 250px;
        margin-top: 40px;
        background-size: cover;
        background-position: center;
    }

    /* INFOS BIKEPARK (Fallback) */
    .infos-bikepark {
        width: 100%;
        padding: 40px 20px;
    }

    .container-imagem img {
        width: 100%;
        height: auto;
    }
}