/* ============================= */
/* RESET GLOBAL */
/* ============================= */

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

html {
    -webkit-text-size-adjust: 100%;
}

body {

    margin: 0;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}

/* remove estilos automáticos */
button,
input,
textarea,
select {

    font: inherit;

    border: none;
    outline: none;

    background: none;

    color: inherit;

}

/* remove estilo automático dos links */

a {

    color: inherit;
    text-decoration: none;

}

/* imagens nunca rebentam layout */

img {

    max-width: 100%;
    height: auto;

}

/* remove highlight azul Android */

* {
    -webkit-tap-highlight-color: transparent;
}

/* remove aparência específica do sistema */

button,
input,
select {

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a0a;
    color: white;
    line-height: 1.6;
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}


/* ============================= */
/* NAVBAR */
/* ============================= */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #000;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    transition: transform 0.3s ease;
}

.navbar.hide {
    transform: translateY(-100%);
}

.logo img {
    height: 45px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #0077cc;
    border-bottom: 2px solid #0077cc;
}

.nav-link.active {
    color: #0077cc;
}

.nav-link.active {
    color: #0077cc;
    border-bottom: 2px solid #0077cc;
    padding-bottom: 4px;
}

.hamburger {

    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;

}

.hamburger span {

    width: 25px;
    height: 3px;
    background: white !important;
    display: block;

}


/* ============================= */
/* HERO */
/* ============================= */

.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 20px;

    background: radial-gradient(circle at left, rgba(0, 119, 204, 0.35), transparent 50%),
    radial-gradient(circle at right, rgba(0, 119, 204, 0.35), transparent 50%),
    #000;

}

.hero a {
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: clamp(260px, 40vw, 550px);
    margin-bottom: 30px;
}

.hero h1 {
    font-size: clamp(18px, 2.5vw, 30px);
    margin-bottom: 10px;
}

.hero p {
    color: #ccc;
    margin-bottom: 25px;
}

.hero-divider {
    width: 200px;
    height: 3px;
    background: #0077cc;
    margin: 15px auto 25px auto;
    border-radius: 3px;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 220px;

    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}

.btn-primary {

    display: inline-block;
    padding: 14px 32px;

    background: linear-gradient(180deg, #1f7fd0, #1667a8);
    color: white !important;

    border-radius: 10px;
    text-decoration: none;

    transition: all 0.25s ease;

}

.btn-primary:hover {

    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 119, 204, 0.35);

}

.btn-primary:disabled {
    background: #555;
    cursor: not-allowed;
    opacity: 0.7;
}

/* ============================= */
/* MARCAS */
/* ============================= */

.hero-marcas {
    background: #000;
}

.container-marcas {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.container-marcas img {
    width: 33%;
    max-width: 200px;
    opacity: 0.9;
    transition: 0.3s;
}

.container-marcas img:hover {
    opacity: 1;
    transform: scale(1.05);
}


/* ============================= */
/* BOTÕES */
/* ============================= */

.btn-primary {

    display: inline-block;

    width: fit-content;

    padding: 12px 28px;

    background: #0077cc;
    color: white;

    border: none;
    border-radius: 6px;

    font-weight: 500;
    font-size: 16px;

    cursor: pointer;

    transition: 0.25s;
}

.btn-primary:hover {
    background: #005fa3;
}


/* ============================= */
/* SHIMANO SERVICE CENTER */
/* ============================= */

.shimano-oficina {
    padding: 120px 40px;
    background: linear-gradient(to bottom, #000000 0%, #000000 30%, #002a4d 70%, #002a4d 100%);
}

.shimano-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.shimano-texto {
    flex: 1;
    max-width: 550px;
}

.shimano-texto h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.shimano-texto p {
    color: #ccc;
    line-height: 1.6;
}

.shimano-logo img {
    width: 200px;
    border-radius: 10px;
}

.shimano-pontos {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 40px;
}

.ponto {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    gap: 14px;

    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.ponto i {
    font-size: 22px;
    color: #0077cc;
}


/* ============================= */
/* evento XTR */
/* ============================= */

.evento-xtr {
    padding: 90px 40px;
    background: linear-gradient(to bottom, #002a4d, #001f36);
    text-align: center;
    position: relative;
}

.evento-container {
    max-width: 1100px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.evento-xtr h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.evento-xtr p {
    color: #ccc;
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

.evento-galeria {
    display: grid;
    grid-template-columns:2fr 1fr 1fr;
    grid-template-rows:200px 200px;
    gap: 20px;
    margin-bottom: 20px;
}

.evento-galeria img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.evento-galeria img:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.evento-galeria img:first-child {
    grid-row: 1 / span 2;
}

.evento-botao {
    display: inline-block;
    margin-top: 50px;
}

.evento-xtr::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 180px;

    pointer-events: none;

    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 1) 100%
    );
}

/* ============================= */
/* PROJETOS */
/* ============================= */

.projetos {
    padding: 90px 40px;
    background: #000;
    text-align: center;
}

.projetos h2 {
    font-size: 34px;
    margin-bottom: 60px;
}

.projetos-galeria {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 20px;

    max-width: 1100px;
    margin: auto;
    margin-bottom: 50px;
}

.projetos-galeria img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 10px;

    transition: transform 0.4s ease, filter 0.4s ease;
}

.projetos-galeria img:hover {
    transform: scale(1.05);
    filter: brightness(0.9);
}


/* ============================= */
/* CONTACTOS FINAL */
/* ============================= */

.contactos-final {
    padding: 90px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-margin-top: 100px;
    text-align: center;

    background: radial-gradient(circle at center,
    rgba(0, 119, 204, 0.35),
    transparent 70%),
    #000;

}

.contactos-wrapper {
    max-width: 520px;
    width: 100%;
}

/* TÍTULO */

.contactos-final h2 {
    font-size: 34px;
    margin-bottom: 80px;
}

/* HORÁRIO */
.horario {
    margin-bottom: 40px;
}

.horario h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.horario p {
    font-size: 17px;
    color: #ccc;
    margin-bottom: 8px;
}

.horario .dias {
    margin-top: 20px;
    font-weight: 500;
    color: white;
}

.btn-contactos {
    margin-top: 15px;
    margin-bottom: 15px;

}

/* CONTACTOS */


.contactos-info {
    margin-top: 35px;
    margin-bottom: 50px;
}

.contactos-info h3 {
    margin-bottom: 25px;
}

.contacto-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    font-size: 20px;
    margin-bottom: 12px;
}

.contacto-item i {
    font-size: 22px;
}

/* REDES */

.contactos-links {
    display: flex;
    justify-content: center;
    gap: 90px;
    margin-bottom: 80px;
}

.contactos-links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.contactos-links i {
    font-size: 46px;
    margin-bottom: 12px;
}

.contactos-links span {
    font-size: 16px;
}

.contactos-links a:hover {
    transform: translateY(-6px);
    color: #0077cc;
}


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

footer {
    padding: 30px;
    background: #000;
    text-align: center;
    color: #777;
}

/* ============================= */
/* FADE IN SCROLL */
/* ============================= */

.fade-in {

    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================= */
/* VISUAL DE SELEÇAO DE TEXTO */
/* ============================= */

::selection {
    background: #0077cc;
    color: white;
}

/* ============================= */
/* SERVIÇOS */
/* ============================= */

#servicos {
    background: linear-gradient(to right, rgba(0, 119, 204, 0.35), transparent 300px),
    linear-gradient(to left, rgba(0, 119, 204, 0.35), transparent 300px),
    #000;
}


.services-section {
    padding: 100px 40px;
    max-width: 900px;
    margin: auto;

}

.services-title {
    font-size: 42px;
    margin-bottom: 10px;
}

.services-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.services-category {
    font-size: 28px;
    margin-top: 70px;
    margin-bottom: 30px;
    font-weight: 600;
}

/* BLOCO DE SERVIÇO */

.service {
    padding: 22px 25px;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.25s ease;
}

/* HOVER MODERNO */

.service:hover {
    transform: scale(1.05);
    transition: 0.3s;

}

/* muda cor do título */
.service:hover h3 {
    color: #0077cc;
}

/* muda cor do preço */
.service:hover .price {
    color: #0077cc;
}

/* transição suave */
.service h3,
.service .price {
    transition: color 0.3s ease;
}


/* HEADER */

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service h3 {
    font-size: 20px;
    margin: 0;
    color: #f7f7f7;
    transition: color 0.3s ease;

}


.price {
    font-weight: 600;
    font-size: 20px;
    color: #f7f7f7;
}

/* DESCRIÇÃO */

.service-desc {
    font-size: 15px;
    color: #666;
    margin-top: 8px;
    line-height: 1.5;
    max-width: 700px;
}

.services-cta-top {
    margin-top: 30px;
}

.reserva-trigger {
    background: #0077cc;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    margin-top: 30px;
    margin-bottom: 30px;
}

.reserva-trigger:hover {
    background: #005fa3;
}

.floating-reserva {
    position: fixed;
    bottom: 30px;
    right: 30px;

    background: #0077cc;
    color: white;

    padding: 14px 22px;
    border-radius: 30px;

    font-weight: 500;
    text-decoration: none;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);

    transition: 0.3s;

    opacity: 0;
    pointer-events: none;
}

.floating-reserva.show {
    opacity: 1;
    pointer-events: auto;
}


.services-final-cta {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 100px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================= */
/* RESERVAS */
/* ============================= */

.reserva-section {
    padding: 120px 20px;
}

.reserva-container {
    max-width: 650px;
    margin: auto;
}

.reserva-container h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.reserva-intro {
    color: #aaa;
    margin-bottom: 40px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.8;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}


/* STEPS */

.reserva-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #777;
    font-size: 14px;
}

.step span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step.active span {
    background: #0077cc;
    border: none;
    color: white;
}

.step.active {
    color: white;
}


/* FORMULÁRIO */

.reserva-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group select {

    background: #111;
    color: white;

    border: 1px solid #333;
    border-radius: 6px;

    padding: 12px;
    padding-right: 40px;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    cursor: pointer;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M2 5l6 6 6-6'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
}


.form-group input,
.form-group textarea {

    background: #111;
    color: #fff;

    border: 1px solid #333;
    border-radius: 6px;

    padding: 12px;

    font-family: 'Poppins', sans-serif;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    outline: none;

    border-color: #0077cc;

    box-shadow: 0 0 0 1px #0077cc;

}

/* BOTÕES */

.form-buttons {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.form-step button {
    margin-top: 10px;
}


.btn-reserva-submit {

    padding: 14px 24px;
    background: #0077cc;
    border: none;

    color: white;
    font-weight: 500;
    border-radius: 6px;

    cursor: pointer;
    transition: 0.3s;
}

.btn-reserva-submit:hover {
    background: #005fa3;
}


.btn-cancelar {

    padding: 14px 24px;
    background: #222;
    border: 1px solid #444;

    color: #aaa;
    border-radius: 6px;

    cursor: pointer;
}

.btn-cancelar:hover {
    background: #333;
}


/* BOTÃO VOLTAR */

.btn-voltar {
    background: none;
    border: none;
    color: #0077cc;
    margin-bottom: 30px;
    cursor: pointer;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.resumo {
    background: #111;
    border: 1px solid #333;
    padding: 24px;
    border-radius: 8px;
    margin-top: 10px;
}

.resumo p {
    margin-bottom: 14px;
}

.form-step h3 {
    margin-bottom: 18px;
}


.reserva-steps {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.step {
    opacity: 0.4;
    transition: 0.3s;
}

.step.active {
    opacity: 1;
}

.step.done span {
    background: #0077cc;
    border: none;
    color: white;
}

.step.done {
    opacity: 1;
}

.horas-container {
    margin-top: 10px;
    margin-bottom: 10px;
}



.hora-item {
    display: inline-block;
    padding: 8px 12px;
    margin: 5px;
    border: 1px solid #ccc;
    cursor: pointer;
    border-radius: 5px;
}

.hora-item.ativa {
    background-color: #0d6efd;
    color: white;
    border-color: #0d6efd;
}

/* ============================= */
/* CONFIRMAÇÃO */
/* ============================= */

.confirmacao-section {
    padding: 180px 20px;
    text-align: center;
}

.confirmacao-container {
    max-width: 600px;
    margin: auto;
}

.confirmacao-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.confirmacao-mensagem {
    font-size: 18px;
    margin-bottom: 10px;
}

.confirmacao-info {
    color: #aaa;
    margin-bottom: 40px;
    line-height: 1.6;
}

.confirmacao-check {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px auto;
}

.checkmark {
    width: 70px;
    height: 70px;
}

.checkmark-check {

    stroke-dasharray: 48;
    stroke-dashoffset: 48;

    animation: drawCheck 0.6s ease forwards;
    animation-delay: 0.2s;

}

@keyframes drawCheck {

    to {
        stroke-dashoffset: 0;
    }

}

/* ============================= */
/* MARCAS */
/* ============================= */


/* SECTION */

.brands-section {

    padding: 100px 40px;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;

    background: radial-gradient(
            circle at center,
            rgba(0, 140, 255, 0.12) 2%,
            rgba(0, 0, 0, 0) 65%
    );

}


/* TITLE */

.brands-title {

    font-size: 32px;
    margin-bottom: 80px;
    letter-spacing: 1px;

}

/* GRID */

.brands-grid {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: auto;

}

/* LOGOS */

.brands-grid img {

    max-width: 140px;
    width: 100%;

    filter: grayscale(100%);
    opacity: 0.65;

    transition: all 0.35s ease;

}

/* HOVER */

.brands-grid img:hover {

    filter: grayscale(0%);
    opacity: 1;

    transform: scale(1.15);

    filter: drop-shadow(0 0 10px rgba(0, 140, 255, 0.6));

}

/* ============================= */
/* CONTACTOS */
/* ============================= */

.contact-section {

    padding: 100px 40px;
    max-width: 1400px;
    margin: auto;

}

.contact-title {

    text-align: center;
    margin-bottom: 60px;

}

.contact-container {

    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 120px;

    align-items: center;

}

/* INFO LOJA */

.contact-info {

    max-width: 420px;

}

/* Nome da loja */

.contact-info h2 {

    font-size: 28px;
    margin-bottom: 25px;
    transition: 0.3s;

}

.contact-info h2:hover {
    filter: grayscale(0%);
    opacity: 1;

    transform: scale(1.05);

    filter: drop-shadow(0 0 10px rgba(0, 140, 255, 0.6));
}

/* BLOCO (Morada / Telefone / Email / Horário) */

.contact-block {

    margin-bottom: 35px;
    transition: 0.3s;

}

.contact-block:hover {
    filter: grayscale(0%);
    opacity: 1;

    transform: scale(1.05);

    filter: drop-shadow(0 0 10px rgba(0, 140, 255, 0.6));
}


/* Informação */

.contact-block p {

    margin: 0;
    color: #cfcfcf;
    line-height: 1.6;

}

/* MAPA */

.map-container {

    width: 100%;
    height: 450px;

    border-radius: 12px;
    overflow: hidden;

}

.map-container iframe {

    width: 100%;
    height: 100%;
    border: none;

}

/* BOTÃO GOOGLE MAPS */

.maps-button {

    display: inline-block;
    margin-top: 20px;

    padding: 12px 26px;

    background: #0a84ff;
    color: white;

    border-radius: 8px;
    text-decoration: none;

    font-weight: 500;

    transition: 0.3s;

}

/* ============================= */
/* GALERIA */
/* ============================= */

#galeria {
    padding: 120px 40px;
    max-width: 1400px;
    margin: auto;
}

.titulo {
    text-align: center;
    font-size: 40px;
    margin-bottom: 80px;
}

.categoria {
    font-size: 24px;
    margin: 60px 0 30px 0;
}

.categoria, h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.gal-divider {
    width: 200px;
    height: 3px;

    background: linear-gradient(
            90deg,
            transparent,
            #0077cc,
            transparent
    );

    margin: 20px auto 35px auto;
}

/* MASONRY */

.grid-galeria {
    column-count: 4;
    column-gap: 20px;
}


/* IMAGENS */

.grid-galeria img {

    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;

    break-inside: avoid;

    cursor: pointer;

    opacity: 0;
    transform: translateY(20px);

    transition: transform .35s ease,
    box-shadow .35s ease,
    opacity .6s ease;
}

.grid-galeria img.show {
    opacity: 1;
    transform: translateY(0);
}

.grid-galeria img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 999;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

#close-lightbox {
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* setas */

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    padding: 10px;
    user-select: none;
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

.nav:hover {
    opacity: 0.7;
}


/* ============================= */
/* RESPONSIVO GLOBAL */
/* ============================= */

/* TABLET */
@media (max-width: 1100px) {

    .grid-galeria {
        column-count: 3;
    }

    .projetos-galeria {
        grid-template-columns: repeat(4, 1fr);
    }

    .maps-button {
        white-space: nowrap;
    }
}

@media (min-width: 769px) {

    .shimano-pontos {
        align-items: flex-start;
    }

    .ponto {
        margin: 0;
        max-width: none;
    }

}


/* MOBILE */
@media (max-width: 768px) {

    /* ESPAÇAMENTO GLOBAL */
    section {
        padding: 70px 20px;
    }

    /* NAVBAR */
    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: #000;

        flex-direction: column;
        align-items: center;
        gap: 35px;
        padding: 40px 0;

        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;

        transition: all 0.35s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .hamburger {
        display: flex;
    }


    /* HERO */
    .hero {
        min-height: 90svh;
        padding: 0 20px;
    }

    .hero-logo {
        width: clamp(220px, 60vw, 400px);
    }

    .hero h1 {
        font-size: 22px;
    }


    /* MARCAS */
    .container-marcas {
        flex-direction: column;
        gap: 30px;
    }

    .container-marcas img {
        width: 60%;
        max-width: 180px;
    }

    .hero-marcas {
        padding: 80px 20px;
    }

    .hero-marcas img {
        margin: 40px;
    }

    .brands-grid img {
        max-width: 110px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
    }


    /* SHIMANO */
    .shimano-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .shimano-texto {
        max-width: 100%;
    }

    .shimano-logo img {
        width: 100%;
        max-width: 200px;
        margin-top: 20px;
    }

    .shimano-pontos {
        align-items: center;
    }


    /* EVENTO */
    .evento-galeria {
        grid-template-columns:1fr;
        grid-template-rows:auto;
    }

    .evento-galeria img {
        height: 220px;
    }

    .evento-galeria img:first-child {
        grid-row: auto;
    }


    /* PROJETOS */
    .projetos-galeria {
        grid-template-columns:1fr;
    }


    /* SERVIÇOS */
    .services-section {
        padding: 80px 20px;
    }

    .services-title {
        font-size: 32px;
    }

    .services-category {
        font-size: 24px;
    }

    .service-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .price {
        font-size: 18px;
    }


    /* CONTACTOS */
    .contact-container {
        grid-template-columns:1fr;
        gap: 40px;
    }

    .contact-info {
        max-width: 100%;
        text-align: center;
    }

    .map-container {
        height: 300px;
    }


    /* GALERIA */
    .grid-galeria {
        column-count: 2;
    }


    /* LIGHTBOX */
    .nav {
        top: auto;
        bottom: 25px;
        transform: none;
        font-size: 40px;
    }

    .prev {
        left: 30%;
    }

    .next {
        right: 30%;
    }

}


/* MOBILE PEQUENO */
@media (max-width: 500px) {

    .grid-galeria {
        column-count: 1;
    }

    .projetos-galeria {
        grid-template-columns:1fr;
    }

    .hero h1 {
        font-size: 20px;
    }

    .reserva-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .brands-grid img {
        max-width: 100px;
    }

    .brands-grid {
        gap: 30px;
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 480px) {

    .ponto {
        margin: 0;
        max-width: none;
        text-align: left;
    }

    .shimano-pontos {
        align-items: flex-start;
    }

}

/* ============================= */
/* COOKIES */
/* ============================= */

.cookie-banner {

    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);

    width: calc(100% - 30px);
    max-width: 520px;

    z-index: 2000;

}

.cookie-card {

    background: #111;
    border: 1px solid #333;

    padding: 18px;

    border-radius: 10px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);

}

.cookie-text {

    font-size: 14px;
    color: #ccc;

    margin-bottom: 14px;
    line-height: 1.5;

}

.cookie-actions {

    display: flex;
    gap: 8px;
    flex-wrap: wrap;

}

.cookie-btn-primary {

    background: #0077cc;

    color: white;

    padding: 8px 14px;

    border-radius: 6px;

    font-size: 13px;

    cursor: pointer;

}

.cookie-btn-outline {

    border: 1px solid #444;

    padding: 8px 14px;

    border-radius: 6px;

    font-size: 13px;

    cursor: pointer;

}

.cookie-btn-outline:hover {

    border-color: #0077cc;

}

@media (max-width: 600px) {

    .cookie-actions {

        flex-direction: column;

    }

    .cookie-btn-primary,
    .cookie-btn-outline {

        width: 100%;

    }

}




