:root{
  --bg1: #202639;
  --bg2: #1d337b;
  --text: #1a1a1a;
  --muted: #6b7280;
  --primary: #ff7a59;
  --primary-600: #ff5c35;
  --ring: rgba(0,0,0,.08);
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}

*{ box-sizing: border-box; }
html,body{
  padding:0; margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg1), var(--bg2) 100%);
}

.bg{
  position: fixed; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 400px at 10% -5%, rgba(116, 218, 255, 0.467), transparent 50%),
    radial-gradient(600px 300px at 110% 0%, rgba(53, 93, 255, 0.523), transparent 50%);
  z-index: 0;
}

.header{
  position: relative; z-index: 1;
  max-width: 980px; margin: 48px auto 24px; padding: 0 20px;
  text-align: center;
}

.avatar{
  width: 100%; height:
  object-fit: cover;
  margin: 0 auto 16px;
}

.title{
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.1; margin: 0 0 6px;
  font-weight: 800;
}

.subtitle{
  margin: 0 auto 18px;
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(14px, 2vw, 16px);
}

.cta-row{
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

.btn{
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 999px; text-decoration: none;
  font-weight: 600; border: 1px solid var(--ring);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}

.btn:hover{ transform: translateY(-1px); box-shadow: 0 14px 34px rgba(0,0,0,.1); }

.btn-primary{ background: var(--primary); border: none; }
.btn-primary:hover{ background: var(--primary-600); }

.container{
  position: relative; z-index: 1;
  max-width: 900px; margin: 10px auto 0px; padding: 0 20px;
}

.highlight{
  background: var(--card); border-radius: var(--radius);
  padding: 18px 20px; border: 1px solid var(--ring);
  margin-bottom: 18px;
}
.highlight h2{ margin: 0 0 6px; font-size: 18px; }
.highlight p{ margin: 0; color: var(--muted); }

.gallery{
  
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
}
@media (min-width: 640px){
  .gallery{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px){
  .gallery{ grid-template-columns: repeat(4, 1fr); }
}


.video-container {
    width: 375px;
    height: 500px;
    margin: 0 auto;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden; 
}

/*.video-container {
    width: 400px;
    height: 400px;
    margin: 0 auto;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden; 
}*/

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px; /* reforça a borda em todos os navegadores */
    display: block;
    aspect-ratio: 1 / 1; /* garante proporção exata */
    object-fit: cover; /* mantém enquadramento */
}


.card{
  border-radius: var(--radius);
  display: flex; flex-direction: column;
}

.card img{
  width: 100%; object-fit: cover; display: block;
}

.card-body{ padding: 12px 14px 14px; display: grid; gap: 8px; }
.card-body h3{ margin: 0; font-size: 16px; }
.card-body p{ margin: 0; color: var(--muted); font-size: 14px; }

.card-link{
  margin-top: 4px; display: inline-block;
  text-decoration: none; font-weight: 600;
}

.links{
 margin-top: 40px; display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.link-pill{
  background: border: 1px solid var(--ring); box-shadow: var(--shadow);
  border-radius: 999px; padding: 10px 14px; text-decoration: none; color: var(--text);
  font-weight: 600;
}

.imagem-hover {
  width: 100%; /* A imagem preenche a largura do contêiner */
  transition: transform 0.3s ease; /* Transição suave ao ampliar */
}

.card:hover .imagem-hover {
  transform: scale(0.97); /* Amplia a imagem em 20% */
}

.sharebar{
  position: fixed; right: 18px; bottom: 90px; z-index: 10;
}
.share-btn{
  border: 0; background: border: 1px solid var(--ring);
  box-shadow: var(--shadow); border-radius: 999px; padding: 10px 14px;
  font-weight: 700; cursor: pointer;
}
.share-menu{
  margin-top: 8px; background: border: 1px solid var(--ring);
  box-shadow: var(--shadow); border-radius: 12px; padding: 10px;
  display: grid; gap: 6px;
}
.share-menu a{ text-decoration: none; color: var(--text); font-size: 14px; }




.slider-container {
  position: relative;
  width: 100%;
  height: 300px;
  margin: auto;
  overflow: hidden;
  border-radius: 15px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.slider {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 300px;
  height: 100%;
  margin-right: 25px; /* Espaço entre imagens */
  flex-shrink: 0;
}

.slide img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
}

/* Botões */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.671);
  color: #fff;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 25%;
  font-size: 20px;
  user-select: none;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
  background: rgba(0, 0, 0, 0.52);
}




.whatsapp-float{
  position: fixed; right: 18px; bottom: 18px; z-index: 10;
  width: 56px; height: 56px; border-radius: 999px;
  display: grid; place-items: center; background: #25D366; color: #fff;
  text-decoration: none; font-size: 24px; box-shadow: var(--shadow);
}

.footer{
text-align: center; padding: 28px 20px; color: var(--muted); font-size: 14px;
}
.footer a{ color: inherit; text-decoration: none; font-weight: 600; }
