/* Estilos Gerais */
* {
    font-family: 'Inter';
}   

body {
    font-family: 'Inter';
    color: rgb(26, 26, 26); 
    background-color: #f2f2f2 !important;
    overflow-x: hidden;
    scroll-behavior: smooth;
    min-height: 100%;
}

html {
    scroll-padding-top: 70px; /* ajuste conforme a altura real da sua navbar */
}
/* Estilos para a Navbar */
.blur-navbar {
    background: rgba(201, 201, 201, 0.2);
    -webkit-backdrop-filter: blur(5px); 
    backdrop-filter: blur(5px);
    border-bottom: 1px solid #444242;
    padding: 10px 0;
}

a {
    color: red;
}

.navbar-brand, .nav-link {
    font-size: 18px;
    color: #000000 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-link {
    margin-left: 15px;
}


.nav-link:hover {
    color: rgb(255, 0, 0) !important;
}

.navbar-brand {
    padding-left: 1rem;
}

/* Imagem de Fundo - Header */
.background-imagem {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px; /* Altura fixa como antes */
    background-color: transparent !important;
    background-image: url("img/1.webp");
    background-size: cover; 
    background-position: center center;
    z-index: -1;
    background-repeat: no-repeat;
    border-bottom: 2px solid #444242;
    
}

/* Titulo e Sub-título */
.titulo {
    color: white;
    font-size: 6.5rem;
    font-weight: 700;
    padding-top: 7rem;
    padding-bottom: 0px;
    margin-bottom: 0px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 70px;
    font-family: 'Rethink Sans' !important;
}

.subtitulo {
    color: white;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    font-size: 2rem; /* Tamanho do texto */
    padding-top: 10px;
}


/* Pílula - Selecionar cidade e modo */
.facaproposta {
    color: rgb(238, 216, 74);;
    font-size: clamp(20px, 1.5vw, 25px);
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 7px;
}

/* Agrupador do texto + botões */
.facaproposta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 0;
  width: 50%;
  margin-inline: auto;
}

/* Container dos pills */
.btn-pill-container {
  margin-top: 0;
  display: flex;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  align-items: stretch; /* faz os filhos terem a mesma altura */
  gap: 0; /* usamos spacer separado */
  box-sizing: border-box;
}

/* espacador entre os dois */
.btn-pill-spacer {
  width: 4px;
  background: transparent;
}

/* estilo base dos "pills" (link e label) */
.btn-pill {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;                 /* altura consistente */
  box-sizing: border-box;
  background: rgba(196, 190, 190, 0.5);
  color: #ffffff;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 0 18px;                  /* espaçamento lateral igual para ambos */
  white-space: nowrap;
  transition: all 0.23s ease;
  position: relative;               /* para o ::after do caret */
  overflow: hidden;
}

/* link também deve comportar como flex */
.btn-pill.fluxo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hover/focus */
.btn-pill:hover,
.btn-pill:focus {
  background: rgb(238, 216, 74);
  color: #333;
  outline: none;
}

/* variação específica do select (mantemos a aparência do pill) */
.btn-pill.selecionar-cidade {
  padding: 0;                        /* select cuidará do padding interno */
  background: rgba(255, 241, 163, 0.7);
  color: #333;
}

/* seta customizada via pseudo-elemento do container (igual em todos os browsers) */
.btn-pill.selecionar-cidade::after {
  content: '▼';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85em;
  color: #333;
  pointer-events: none;
}

/* O select ocupa todo o espaço do label, sem aparência nativa */
.btn-pill.selecionar-cidade select {
  -webkit-appearance: none; /* Safari/Chrome */
  -moz-appearance: none;    /* Firefox */
  appearance: none;
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  padding: 0 40px 0 18px;   /* espaço à direita para a seta custom */
  font-weight: 700;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;       /* mantém o texto centralizado como o outro botão */
}

/* Remove a seta padrão do IE/Edge */
.btn-pill.selecionar-cidade select::-ms-expand {
  display: none;
}

/* foco acessível (para keyboard users) */
.btn-pill:focus-visible {
  box-shadow: 0 0 0 3px rgba(238, 216, 74, 0.25);
  z-index: 2;
}

/* se quiser um estilo diferente quando uma cidade for selecionada (opcional) */
.btn-pill.selecionar-cidade.has-value {
  /* exemplo: escurecer um pouco a cor quando já escolheu */
  background: rgba(255, 230, 120, 0.9);
  color: #111;
}

/* Remove a seta padrão em Edge */
.btn-pill.selecionar-cidade select::-ms-expand {
    display: none;
}

/* Estilos gerais do Body */
.big-title {
    letter-spacing: -0.05em;
    font-weight: 500;
    font-size: 70px;
    padding-bottom: 0px;
    margin-bottom: 3px;
    margin-left: 1rem;
}

.paragrafo {
    width: 90%;
    font-size: 18px;
    text-align: justify;
}

.border-custom {
    border-left: 2px solid #9a9a9a;
    padding-left: 10px;
}

.micro-space {
    height: 10px;
}

.big-space {
    height: 50px;
}

.sublinhado {
    background-color: #ffc82f8c;
    display: inline;
    padding: 4px 9px;
    border-radius: 10px;
    -webkit-box-decoration-break: clone; /* Safari/Chrome */
    box-decoration-break: clone;
    margin-left: 3px;
}

.text-yellow {
    color: rgb(238, 216, 74);
    font-family: 'Rethink Sans';
    font-style: italic;
    font-weight: bold;
}

.text-yellow-dark {
    color: rgb(235, 171, 9);
}

.text-drama {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    color: #727272;
    padding-top: 40px;
    padding-bottom: 10px;
}

.img-custom {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.aspect-16-9 {
    position: relative;
    width: 85%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
    padding: 0px;
    margin-bottom: 0px;
}

.aspect-16-9 img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
    max-width: 100%;
}

.legenda {
    font-size: 16px;
    font-weight: 500;
    color: #727272;
    text-align: center;
}

/* Para a Mupi Session */
.mupi-text {
    font-size: 40px;
    font-weight: 500;
    line-height: 35px;
    color: #333;
}

.especificacao {
  font-size: 18px;
  line-height: 0.95;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Footer Blur */
.blur-footer {
    background: rgba(201, 201, 201, 0.2);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px); 
    border-top: 1px solid #444242;
}

.navbar {
    max-width: 100vw;
    overflow-x: auto;
}

.infinity {
    height: 120px;
}

@media (max-width: 576px) {
    /* Header Responsivo */
    .infinity {
        height: 120px;
    }

    .container {
        max-width: 95%;
    }

    .blur-navbar {
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .nav-link {
        margin-left: 1rem;
    }

    .background-imagem {
        max-height: 50%;
    }

    .facaproposta-container {
        width: 90%;
    }

    .facaproposta-container, .titulo {
        margin-top: 0;
        padding-top: 1.5rem;
    }

    .titulo {
        font-size: 3.5rem;
        padding-top: 5rem;
        line-height: 45px;
    }

    .subtitulo {
        font-size: 1.2rem;
        padding-top: 15px;
        text-align: center;
    }

    .big-title {
        font-size: 1.5rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        display: block;
        font-style: bold;
        margin-bottom: 0px;
    }

    .navbar-brand, .nav-link {
        font-size: 16px;
    }

    .btn-pill-container {
        flex-direction: column;
        border-radius: 10px;
        max-width: 95vw;
        width: 65%;
        align-items: stretch;
        gap: 2px;
    }

    .btn-pill-spacer {
        display: none;
    }

    .btn-pill {
        width: 100%;
        margin: 0;
        justify-content: center;
        height: 34px;
        align-items: center;
        display: flex;
        font-size: 1rem;
        min-height: 34px;
        box-sizing: border-box;
    }

    .btn-pill.selecionar-cidade select {
        height: 34px;
        min-height: 34px;
        font-size: 1rem;
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* Estilos gerais */
    .sublinhado {
        padding: 2px 4px;
        font-size: 1em;
        margin-left: 2px;
        margin-right: 2px;
    }

    .paragrafo {
        width: 100%;
        font-size: 15px;
        text-align: justify;
    }

    /* Mupi session */
    .mupi-text {
        font-size: 30px;
        font-weight: 500;
        line-height: 30px;
        color: #333;
        padding: 0px;
        text-align: center;
    }

    .especificacao {
        font-size: 16px;
        line-height: 0.95;
        font-weight: 500;
        margin-bottom: 1rem;
    }

    .text-drama {
        font-size: 15px;
    }

    .aspect-16-9 {
        position: relative;
        width: 95%;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        border-radius: 10px;
        padding: 0px;
        margin-bottom: 0px;
    }

}
