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

html, body {
    height: 100%;
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
}

/* ===== Theme tokens (ajuste as cores conforme sua paleta) ===== */
:root{
  --item-bg: transparent;  /* sem fundo no item, só círculo */
  --text: #ffffff;
  --ring: #ffffff;
  --ring-hover: #ffffff;
  --ring-alpha: 0.35;
  --gap: 1.25rem;
  --pad-y: 1rem;
  --pad-x: 1rem;
  --radius-pill: 999px;
}


/* Frame principal - 2880x2048 como no Figma */
.frame {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin: 0 auto;
    overflow: hidden;
}

/* Background principal - Rectangle_bg */
.bg-rectangle {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../bg-poligonos/Rectangle_bg.png') center/cover no-repeat;
}

/* Polygon branco - posição exata do Figma */
.polygon-white {
    position: absolute;
    left: 14.8%;
    top: 0;
    width: 85.2%;
    height: 100%;
    background: url('../bg-poligonos/Polygon_white.png') center/cover no-repeat;
    opacity: 0.35;
}

/* Polígono azul - posição exata do Figma */
.blue-polygon {
    position: absolute;
    left: 5.5%;
    top: 0;
    width: 94.5%;
    height: 100%;
    background: url('../bg-poligonos/blue_poligon_img.png') center/cover no-repeat;
}

/* Elipse inferior - posição exata do Figma */
.ellipse-bottom {
    position: absolute;
    left: 4.5%;
    top: 85%;
    width: 90.9%;
    height: 15%;
    background: url('../bg-poligonos/Ellipse_bottom.png') center/cover no-repeat;
}

/* Elipse superior - posição exata do Figma */
.ellipse-top {
    position: absolute;
    left: -1.1%;
    top: -5%;
    width: 31.8%;
    height: 20%;
    background: url('../bg-poligonos/Ellipse_top.png') center/cover no-repeat;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .frame {
        height: 100vh;
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }
    
    .ellipse-top {
        left: -5%;
        top: -8%;
        width: 40%;
        height: 25%;
    }
    
    .ellipse-bottom {
        left: 2%;
        top: 82%;
        width: 96%;
        height: 18%;
    }
}

.container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 40px 40px 40px 70px;
    display: flex;
    flex-direction: row;
}

/* Logo - sem position absolute */
.logo {
    height: 40%;
    position: relative;
    top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    height: 360px;
    /* object-fit: contain; */
}

/* Controles de Volume - sem position absolute */
.volume-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.volume-btn {
    width: 60px;
    height: 60px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.volume-btn:hover {
    transform: scale(1.05);
}

.volume-btn:active {
    transform: scale(0.95);
}

/* Indicador de Volume */
.volume-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 80px;
}

.volume-bar-container {
    width: 80px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.volume-bar {
    height: 100%;
    width: 50%;
    background: linear-gradient(180deg, #F9AE1B, #F06623);
    border-radius: 4px;
    transition: width 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.volume-percentage {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    min-width: 40px;
    text-align: center;
}

.volume-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.main-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Container principal do header */
.header-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    width: 100%;
    gap: 100px;
    z-index: 20;
    margin-bottom: 40px;
}

/* Container de navegação */
.navigation-container {
    display: flex;
    gap: 40px;
}

/* Elemento ao vivo */
.live-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.live-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: white;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

.live-status {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #bc0e0e;
    padding: 16px 24px;
    border-radius: 32px;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.live-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: white;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.nav-btn {
    background: white;
    border: none;
    border-radius: 111.841px;
    padding: 20px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 15px;
    color: #434343;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
    
    text-align: center;
}

.nav-btn:hover {
    background: linear-gradient(180deg, #F9AE1B, #F06623);
    color: white;
    text-shadow: 0px 7px 4.5px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.nav-btn.active {
    background: linear-gradient(180deg, #F9AE1B, #F06623);
    color: white;
    text-shadow: 0px 7px 4.5px rgba(0, 0, 0, 0.15);
}

.nav-btn.active:hover {
    background: linear-gradient(180deg, #F9AE1B, #F06623);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.main-content{
    display: flex;
    flex-direction: column;
    align-items: end;
    width: 100%;
    gap: 30px;
}

/* ===== Container da barra ===== */
.social-bar{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  padding: var(--pad-y) var(--pad-x);
  border-radius: var(--radius-pill);
  width: 100%;
  box-sizing: border-box;
}

/* ===== Cada link/item ===== */
.social-item{
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: var(--text);
  padding: .5rem .75rem;
  border-radius: var(--radius-pill);
  transition: transform .15s ease, background .2s ease, color .2s ease, outline-color .2s ease;
  outline: 0 solid transparent;
}

.social-item:focus-visible{
  outline: 2px solid rgba(255,255,255,.7);
  outline-offset: 2px;
}

/* ===== Círculo com o ícone ===== */
.social-item .icon{
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--ring);
  background: var(--item-bg);
  position: relative;
}

/* “dupla borda” sutil como no mock */
.social-item .icon::after{
  content:"";
  position:absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,var(--ring-alpha));
}

.social-item svg{
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ===== Texto ===== */
.social-item .label{
  font: 500 16px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  white-space: nowrap;
}

/* ===== Hover/active ===== */
@media (hover:hover){
  .social-item:hover{
    transform: translateY(-1px);
  }
  .social-item:hover .icon{
    border-color: var(--ring-hover);
  }
}

/* ===== Empacotamento responsivo ===== */
@media (max-width: 640px){
  .social-item .label{ font-size: 15px; }
  .social-item .icon{
    width: 46px; height: 46px; min-width:46px; min-height:46px;
  }
}

.album-artista{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10vw;
    height: 230px;
}

.album img{
    height: 500px;
    transform: translateY(100px);
}

.info{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.album-artista-right{
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: white;
}

.orange-box{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px;
    border-bottom-left-radius: 16px;
    border-top-left-radius: 16px;
    background: linear-gradient(90deg, #F9AE1B, #F06623);
    font-weight: 600;
    transform: translateX(40px);
}

.quote-text{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whatsapp-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #fff;
}

.icon-music-btn,
.icon-whatsapp-btn {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: transform 0.3s ease-out;
}

.icon-whatsapp-btn{
    border: 3px solid #fff;
}

.icon-music-btn:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-out;
  cursor: pointer;
}

.icon-whatsapp-btn img{
    width: 28px;
    height: 28px;
}

.icon-whatsapp-btn:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-out;
}

.icon-music-btn img{
    width: 20px;
    height: 20px;
}

.icon-music-btn {
  background: #ffffff;
  border: none;
}

.icon-whatsapp-btn {
  background: #00ff5e;
}
.icon-whatsapp-btn svg {
  width: 30px;
  height: 30px;
}

.text {
  font-size: 16px;
  line-height: 1.3;
  color: #ffffff;
}

.text strong {
  font-weight: 700;
}

.store-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.store-btn:hover{
    transform: translateY(-3px);
    box-shadow: 2px 12px 13px 1px rgba(0,0,0,0.3);
    transition: all 0.3s ease-out;
}

.store-btn img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.text .small {
  font-size: 13px;
  color: #333333;
}

.text .bold {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}

/* Responsivo */
@media (max-width: 480px) {
  .store-btn {
    padding: 0.6rem 1rem;
  }
  .store-btn img {
    width: 28px;
    height: 28px;
  }
  .text .bold {
    font-size: 15px;
  }
}


/* Container principal dos controles */
.controls-container {
    position: relative;
    width: 100px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 10;
}

/* Controles de Volume - sem position absolute */
.volume-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    margin-bottom: 30px;
}

.volume-btn {
    width: 60px;
    height: 60px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.volume-btn:hover {
    transform: scale(1.05);
}

.volume-btn:active {
    transform: scale(0.95);
}

/* Play/Tradução - sem position absolute */
.play-translate {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 20px;
}

.play-btn {
    background: linear-gradient(180deg, #0200D4, #01008A);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.play-btn:hover {
    transform: scale(1.05);
}

.play-btn:active {
    transform: scale(0.95);
}

.play-icon {
    width: 70px;
    height: 70px;
    fill: white;
}

.translate-btn {
    position: relative;
    background: white;
    border: 8px solid #F26326;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    left: -70px;
    top: 10px;
}

.translate-btn:hover {
    transform: scale(1.05);
    
}

.translate-btn:active {
    transform: scale(0.95);
}

.translate-icon {
    width: 40%;
    height: 40%;
    object-fit: contain;
    z-index: 1;
}

.Rodape {
    /* width: 100%; */
    height: 100px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    bottom: 0;
    right: 0;
    gap: 40px;
    padding-right: 40px;
    z-index: 20;
    overflow: hidden;
}

.rodape-left, .rodape-right {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.sobre-section {
  max-width: 800px;
  padding: 2rem;
  text-align: end;
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  border-radius: 16px;
}

.sobre-title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.sobre-title span {
  color: #ffb100; /* barra laranja do título */
}

.sobre-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #a8c2ff;
  margin-bottom: 1.8rem;
}

.sobre-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e5ff;
  margin-bottom: 2rem;
}

.sobre-text strong {
  font-weight: 700;
}

/* Pequeno ajuste para telas menores */
@media (max-width: 768px) {
  .sobre-section {
    padding: 1.5rem;
  }
  .sobre-title {
    font-size: 1.6rem;
  }
  .sobre-subtitle {
    font-size: 0.9rem;
  }
  .sobre-text {
    font-size: 0.95rem;
  }
}

/* container geral */
.form-wrap {
  width: 60%;
  padding: 24px;
  border-radius: 18px;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #ffffff;
}

/* grid / linhas */
.contact-form .row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 30px;
}

.contact-form .row.two > * {
  flex: 1 1 320px;      /* duas colunas responsivas */
  min-width: 240px;
}

/* labels acessíveis, mas sem ocupar espaço visual */
.lbl {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/* campos arredondados */
.field {
  display: flex;
  width: 100%;
}
.field input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(255,255,255,0.8);
  background: transparent;
  color: #ffffff;
  border-radius: 28px;
  outline: none;
  font-size: 15px;
}
.field input::placeholder { color: rgba(255,255,255,0.85); }

/* selects sublinhados com caret */
.select {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  padding-top: 8px;
}
.select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
  color: #ffffff;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.7);
  padding: 10px 28px 10px 0;
  font-size: 15px;
  outline: none;
}
.select option { color: #0b0b0b; } /* lista em fundo claro padrão do SO */
.select .caret {
  position: absolute;
  right: 0;
  top: 50%;
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #ffffff;   /* setinha */
  transform: translateY(-50%);
  pointer-events: none;
}

/* textarea grande com borda arredondada */
.textarea {
  display: flex; width: 100%;
}
.textarea textarea {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid rgba(255,255,255,0.8);
  background: transparent;
  color: #ffffff;
  border-radius: 16px;
  resize: vertical;
  font-size: 15px;
  min-height: 140px;
}
.textarea textarea::placeholder { color: rgba(255,255,255,0.85); }

/* checkbox custom sem box-shadow */
.check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.check input {
  position: absolute;
  width: 1px; height: 1px; margin: -1px; border: 0; padding: 0;
  clip: rect(0 0 0 0); overflow: hidden;
}
.check .box {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 4px;
  display: inline-block;
}
.check input:checked + .box {
  background: linear-gradient(135deg, #ffb000, #ff5a00);
  border-color: transparent;
}
.check .txt { color: #ffffff; font-size: 14px; }

/* botão enviar (direita) */
.actions {
  justify-content: space-between;
  align-items: center;
}
.btn-send {
  border: none;
  color: #ffffff;
  background: linear-gradient(135deg, #ffb000, #ff5a00);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 28px;
  font-size: 16px;
  cursor: pointer;
}

/* responsivo */
@media (max-width: 560px) {
  .form-wrap { padding: 18px; }
  .contact-form .row.two > * { flex: 1 1 100%; }
  .btn-send { width: auto; }
}
