body

/* 1. Reset universal */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 2. Variáveis e estilos base */
:root {
    --navbar-bg: #fbfaf4;
    --navbar-text: #000000;
    --navbar-hover: #256cbe;
}

html,
body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    text-transform: uppercase;
}

.navbar {
    background-color: var(--navbar-bg);
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
}

.navbar-brand img {
    height: 30px;
}

.navbar .navbar-brand,
.navbar .nav-link,
.navbar .navbar-toggler-icon {
    color: var(--navbar-text) !important;
}

.navbar .navbar-link:hover,
.navbar .navbar-brand:hover {
    color: var(--navbar-hover) !important;
}

/* 4. Navbar flutuante */
.floating-navbar {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1800px;
    border: 2px solid black;
    border-radius: 0.5rem;
    background: var(--navbar-bg);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    z-index: 1050;
    padding: 0.1rem 10px;
}



#quemsomos {
    background-image: url('/images/pattern1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* fixa a imagem na viewport */
    min-height: 100vh;
    /* altura para enxergar o efeito */
}

#contato {
    min-height: 90vh;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.info-box {
    background-color: #e8f5e8;
    border: 1px solid #28a745;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

/* Remove qualquer background global do body */

body.pagina-contato {
    background: url('../images/pattern1.png') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
}

/* 5. Tipografia principal */
.arizona-titulo-texto {
    font-family: 'Univers LT Std 85 Extra Black Oblique', sans-serif;
    font-size: clamp(2.5rem, 4vw, 10rem);
    line-height: 1.1;
    overflow-wrap: break-word;
}


/* 2) Use o MESMO nome aqui */

.arizona-titulo-texto .text-yellow {
    color: #F5E814;
    -webkit-text-stroke: 2px black;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.arizona-titulo-texto .text-pink {
    color: #fc7ab0;
    -webkit-text-stroke: 2px black;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    animation: color-switch-effect 3s linear infinite;
}

.arizona-body-copy {
    font-family: 'Gotham Medium', sans-serif;
    text-transform: uppercase;
    line-height: 1.6;
    letter-spacing: 0;
}

.sub-headlines {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    letter-spacing: 0.075rem;
    line-height: 1.1;
    text-transform: uppercase;
    font-size: clamp(1rem, 4vw, 1.75rem);
    color: #F8F6D7;
    overflow-wrap: break-word;
}

.sub-headlines-lojas {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    letter-spacing: 0.075rem;
    line-height: 1.1;
    text-transform: uppercase;
    font-size: clamp(1rem, 4vw, 1.75rem);
    color: #000000;
    overflow-wrap: break-word;
}


.hero-section {
    min-height: 100vh;
    width: 100%;
    background: url('/images/car1.png') top center no-repeat #333;
    background-size: cover;
    display: flex;
    align-items: flex-end;
}

.hero-content {
    padding: 0 2% 1%;
    max-width: 90%;
}


.btn-arizona {
    background-color: #FC7AB0;
    color: black;
    font-weight: bold;
    font-size: 1.5rem;
    text-transform: uppercase;
    border: 2px solid black;
    border-radius: 0;
    padding: 1.75rem 2.5rem;
    box-shadow: 5px 5px 0 black;
    transition: all 0.2s ease-in-out;
}

.btn-arizona:hover {
    background-color: #f6d90a;
    box-shadow: none;
    transform: translate(5px, 5px);
}




.btn-acessarsite {
    display: inline-block;
    padding: 12px 28px;
    background-color: #00c7b1;
    color: white;
    border: 2px solid #000000;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 1.1;
    text-align: center;
    box-shadow: 4px 4px 0px #000000;
    transition: all 0.1s ease-in-out;
    cursor: pointer;
}

.btn-acessarsite:hover {
    box-shadow: 6px 6px 0px #000000;
    transform: translate(-2px, -2px);
}

.btn-acessarsite:active {
    transform: translate(4px, 4px);
    box-shadow: none;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

#produtos {
    display: flex;
    align-items: center;
    background-color: #f3eed4;
    /* centraliza verticalmente */
    justify-content: center;
    /* centraliza horizontalmente */
    min-height: 100vh;
    /* ocupa toda altura da janela */
    width: 100%;
    padding: 0;
}

/* 2. Ajusta o container interno para manter responsividade */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}


#instagram {
    min-height: 60vh;
}


.img-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.img-efeito {
    transition: filter 0.4s, transform 0.4s;
    display: block;
    width: 100%;
    height: auto;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.img-container:hover .img-efeito {
    filter: brightness(1.2);
    transform: scale(1.08);
}

.img-container:hover .overlay-text {
    opacity: 1;
}

a.img-link {
    text-decoration: none;
}

.mountain-card {
    position: relative;
    width: 90%;

    height: 750px;
    aspect-ratio: 3 / 4;
    margin: 0 auto;
    overflow: visible;
    cursor: pointer;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.5s;
    font-family: 'Bebas Neue', sans-serif;
}

.mountain-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.mountain-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 1rem;
    transition: filter 0.8s;
}

.mountain-card .card-icon {
    width: 450px;
    /* defina o tamanho desejado */
    height: 450px;
}

.mountain-card .gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.0) 100%);
    opacity: 0;
    transition: opacity 1.2s;
    z-index: 1;
    border-radius: 1rem;
}

.mountain-card:hover .gradient-overlay {
    opacity: 1;
}

.mountain-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0 1.5rem 1.5rem 1.5rem;
    z-index: 2;
}

.icon-title-group {
    position: absolute;
    left: 50%;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(-50%) translateY(0);
    transition: transform 0.8s cubic-bezier(.4, 1.7, .7, 1.01);
    z-index: 10;
    pointer-events: none;
}

.mountain-card:hover .icon-title-group {
    transform: translateX(-50%) translateY(-220px);
}

.card-icon {
    /* FIXED: Icon size was too large for the card. Reduced from 400px. */
    width: 280px;
    height: 280px;
    object-fit: contain;
    display: block;
    margin-bottom: 0.3rem;
    transition: transform 0.8s cubic-bezier(.4, 1.7, .7, 1.01);
}

.mountain-card:hover .card-icon {
    transform: rotate(45deg);
}

.cards-wrapper {
    display: flex;
    flex-wrap: wrap;

    /* AUMENTAR gap: simplesmente deixe o valor maior */
    gap: 2.5rem;

    /* OU usar distribuição: */
    /* justify-content: space-between;  espaço igual nas laterais e entre os itens */
    /* justify-content: space-around;   espaço igual só entre itens */
    /* justify-content: space-evenly;   espaço igual borda ↔ itens ↔ itens ↔ borda */
    justify-content: space-around;

    width: 100%;
    box-sizing: border-box;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0;
    text-align: center;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity 0.8s;
}

.mountain-card:hover .card-title {
    opacity: 0.7;
}

.mountain-card .card-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.8s, opacity 0.8s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mountain-card:hover .card-details {
    max-height: 300px;
    opacity: 1;
    transition-delay: 0.2s;
}

.mountain-card .card-desc {
    font-size: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0.01rem;
}

.mountain-card .custom-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s 0.4s, transform 0.6s 0.4s;
    pointer-events: none;
    margin-top: 0.5rem;
    margin-bottom: 0.2rem;
}

.mountain-card:hover .custom-btn {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#embreve {
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
}

/* Responsividade Celulares */
@media (max-width: 576px) {
    .arizona-titulo-texto2 {
        font-family: 'Black Oblique Iphone', sans-serif;
        font-size: clamp(2rem, 10vw, 4rem);
        line-height: 1.1;
        overflow-wrap: break-word;
    }

    .arizona-titulo-texto {
        font-family: 'Arizona', -apple-system, BlinkMacSystemFont, 'Segoe UI',
            Roboto, 'Helvetica Neue', Arial, sans-serif;
        font-weight: 900;
        font-style: oblique;
        /* ou 'italic' */
        font-synthesis: none;
        /* não “invente” bold/italic */
        line-height: 1.2;
        /* um pouco maior evita clipping no iOS */
        overflow-wrap: break-word;
        /* ok; pode trocar por 'anywhere' se quiser */
        /* Suavização (pode ajudar visualmente em iOS) */
        -webkit-font-smoothing: antialiased;
    }

    .sub-headlines {
        font-size: clamp(0.75rem, 5vw, 1rem);
    }

    .btn-arizona {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .instalink {
        font-size: clamp(2rem, 8vw, 4rem);
    }



    .fill-column-image {
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 80%;
        /* opcional: reduz o tamanho da imagem em telas pequenas */
    }

    #quemsomos .col-md-3 {
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: center;
    }


    .info-box {
        margin: 0 auto;
        width: 98%;
        text-align: center;
    }

    .arizona-body-copy {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
        line-height: 1.4;
    }

    #contato .container {
        padding: 0 1rem;
    }


    .esperaacabou {
        font-size: clamp(2rem, 3vw, 4rem) !important;
    }

    .mountain-card {
        position: relative;
        width: 80%;
        max-width: 350px;
        height: 700px;
        aspect-ratio: 3 / 4;
        overflow: visible;
        cursor: pointer;
        border-radius: 1rem;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
        transition: box-shadow 0.5s;
        font-family: 'Bebas Neue', sans-serif;
    }

    .mountain-card .card-icon {
        width: 300px;
        /* defina o tamanho desejado */
        height: 300px;
    }

    .row {
        flex-wrap: wrap;
        margin-left: 0;
        margin-right: 0;
    }

    .card-img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

}

/* Fontes */
@font-face {
    font-family: 'Univers LT Std 85 Extra Black Oblique';
    src: url('../fonts/universltstd-xblackobl.woff') format('woff');
    font-weight: 900;
    font-style: oblique;
}

@font-face {
    font-family: 'Black Oblique Iphone';
    src: url('../fonts/blackobl.otf') format('opentype');
    font-weight: 900;
    font-style: oblique;
}

@font-face {
    font-family: 'Gotham Medium';
    src: url('../fonts/Gotham-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}


@font-face {
    font-family: 'Arizona';
    src: url('/fonts/Arizona-BlackOblique.woff2') format('woff2'),
        url('/fonts/Arizona-BlackOblique.woff') format('woff');
    font-weight: 900;
    /* ajuste conforme o arquivo */
    font-style: oblique 10deg;
    /* ou 'italic' se for itálico verdadeiro */
    font-display: swap;
    /* Evite local() para não depender de fontes instaladas no sistema */
}