:root {
  --petrol:#0E2430;
  --petrol2:#143646;
  --deep:#0B1B24;
  --gold:#C8A96A;
  --ice:#F5F3EE;
  --text:#132A36;
}

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

html, body { overflow-x:hidden; }

body {
  min-height:100vh;
  background:linear-gradient(to bottom, var(--petrol), var(--deep));
  font-family:'Inter', sans-serif;
  color:white;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:40px 24px;
}

/* ===================== LAYOUT ===================== */
.content-row {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:28px;
  width:100%;
  max-width:900px;
}

@media(min-width:700px) {
  .content-row {
    flex-direction:row;
    align-items:stretch;
    max-height:calc(100vh - 220px);
  }

  .video-wrapper {
    flex:1;
    max-width:none;
    margin-bottom:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#000;
  }

  .video-wrapper video,
  .video-wrapper iframe {
    width:100%;
    height:100%;
    max-height:100%;
    aspect-ratio:9/16;
    object-fit:contain;
    display:block;
    border:none;
  }

  .links {
    flex:1;
    max-width:none;
    justify-content:center;
  }
}

/* ===================== HERO ===================== */
.hero {
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  margin-bottom:40px;
}

.hero-photo {
  width:120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
  object-position:center top;
  border:3px solid var(--gold);
  margin-bottom:22px;
  box-shadow:0 0 0 8px rgba(200,169,106,0.15);
}

.tag {
  display:inline-block;
  padding:7px 18px;
  border:1px solid rgba(200,169,106,0.45);
  border-radius:40px;
  color:var(--gold);
  letter-spacing:0.25em;
  font-size:11px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.hero-title {
  font-family:'Cormorant Garamond', serif;
  font-size:42px;
  letter-spacing:0.04em;
  line-height:1.1;
  color:white;
  font-weight:500;
  margin-bottom:10px;
}

.hero-subtitle {
  font-size:14px;
  letter-spacing:0.3em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:500;
}

.hero-whats {
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:16px;
  text-decoration:none;
  color:rgba(255,255,255,.8);
  font-size:.85rem;
  font-weight:500;
  letter-spacing:.04em;
  transition:color .2s;
}

.hero-whats:hover { color:#fff; }

.hero-whats img {
  width:22px;
  height:22px;
  object-fit:contain;
  display:block;
}

/* ===================== VIDEO (base / mobile) ===================== */
.video-wrapper {
  width:100%;
  max-width:420px;
  margin-bottom:28px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(200,169,106,0.3);
  box-shadow:0 12px 40px rgba(0,0,0,0.35);
  background:#000;
}

.video-wrapper video,
.video-wrapper iframe,
.video-wrapper #youtube-player {
  display:block;
  width:100%;
  aspect-ratio:9/16;
  height:auto;
  object-fit:contain;
  border:none;
}

.video-wrapper #youtube-player iframe {
  width:100%;
  height:100%;
  border:none;
}

/* ===================== LINKS ===================== */
.links {
  display:flex;
  flex-direction:column;
  gap:16px;
  width:100%;
  max-width:420px;
}

.link-card {
  display:flex;
  align-items:center;
  gap:16px;
  padding:20px 24px;
  background:rgba(255,255,255,0.055);
  border:1px solid rgba(200,169,106,0.25);
  border-radius:16px;
  text-decoration:none;
  color:white;
  font-size:16px;
  font-weight:400;
  letter-spacing:0.02em;
  transition:background 0.2s, border-color 0.2s;
}

.link-card:hover {
  background:rgba(200,169,106,0.12);
  border-color:rgba(200,169,106,0.55);
}

.link-card .icon {
  flex-shrink:0;
  width:40px;
  height:40px;
  border-radius:50%;
  background:rgba(200,169,106,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
}

.link-card .icon img {
  width:36px;
  height:36px;
  object-fit:contain;
}

.link-card .icon svg {
  width:22px;
  height:22px;
  fill:var(--gold);
}

.link-card .label {
  flex:1;
}

.link-card .label span {
  display:block;
  font-size:13px;
  color:rgba(255,255,255,0.45);
  margin-top:2px;
  letter-spacing:0.05em;
}

.link-card .arrow {
  color:var(--gold);
  font-size:18px;
  opacity:0.7;
}

.link-card--static {
  cursor:default;
  pointer-events:none;
  opacity:0.85;
}

.link-card--static .label span {
  font-size:11px;
  word-break:break-all;
}

/* ===================== FOOTER ===================== */
.footer {
  background:var(--deep);
  padding:16px 24px;
  text-align:center;
  width:100%;
  margin-top:20px;
}

.footer-sub {
  color:var(--gold);
  font-size:14px;
  letter-spacing:0.04em;
  margin-bottom:6px;
}

.contact-block {
  margin-top:8px;
  color:#DCE3E7;
  font-size:13px;
  line-height:1.7;
  word-break:break-word;
  overflow-wrap:break-word;
}

.whatsapp {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  margin-top:18px;
}

.whatsapp-icon {
  width:28px;
  height:28px;
  display:block;
}

/* ── Botão flutuante WhatsApp ── */
.whats-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.32), 0 2px 6px rgba(0,0,0,0.22);
  z-index: 9999;
  transition: transform .25s ease, box-shadow .25s ease, background .2s;
  text-decoration: none;
}

.whats-float:hover {
  transform: scale(1.06);
  background: #20bd5a;
  box-shadow: 0 12px 28px rgba(0,0,0,0.38), 0 4px 10px rgba(0,0,0,0.28);
}

.whats-float:active { transform: scale(0.98); }

.whats-icon {
  width: 32px;
  height: 32px;
  display: block;
  position: relative;
  z-index: 1;
}

.whats-pulse {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.55);
  opacity: 0;
  animation: whats-pulse 3.6s ease-out infinite;
  pointer-events: none;
}

@keyframes whats-pulse {
  0%   { transform: scale(1);    opacity: 0.5;  }
  60%  { transform: scale(1.28); opacity: 0;    }
  100% { transform: scale(1.28); opacity: 0;    }
}

@media(max-width:767px) {
  .whats-float {
    bottom: 24px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
  .whats-icon { width: 28px; height: 28px; }
}

/* ===================== RESPONSIVE ===================== */

/* Mobile */
@media(max-width:767px) {
  body {
    justify-content:flex-start;
    padding:16px 14px;
    min-height:auto;
  }

  .hero {
    margin-bottom:8px;
  }

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

  .hero-subtitle {
    font-size:10px;
    letter-spacing:0.15em;
  }

  .hero-whats {
    margin-top:8px;
    font-size:.8rem;
  }

  .video-wrapper {
    max-width:100%;
    margin-bottom:12px;
    border-radius:10px;
    overflow:hidden;
    background:#000;
  }

  .video-wrapper video,
  .video-wrapper iframe {
    width:100%;
    height:auto;
    max-height:32vh;
    aspect-ratio:9/16;
    object-fit:contain;
    display:block;
    border:none;
  }

  .links {
    max-width:100%;
    gap:10px;
  }

  .link-card {
    padding:11px 14px;
    font-size:14px;
    border-radius:10px;
    gap:12px;
  }

  .link-card .icon {
    width:32px;
    height:32px;
  }

  .link-card .icon img {
    width:28px;
    height:28px;
  }

  .link-card .icon svg {
    width:18px;
    height:18px;
  }

  .link-card .label span {
    font-size:11px;
  }

  .footer {
    margin-top:10px;
    padding:10px 14px;
  }
}

/* Desktop médio (768px – 1199px) */
@media(min-width:768px) and (max-width:1199px) {
  body {
    padding:28px 32px;
  }

  .hero {
    margin-bottom:28px;
  }

  .content-row {
    max-width:860px;
    max-height:calc(100vh - 200px);
  }

  .hero-title {
    font-size:36px;
  }
}

/* Desktop grande (>=1280px) */
@media(min-width:1280px) {
  body {
    padding:36px 60px;
  }

  .hero {
    margin-bottom:32px;
  }

  .content-row {
    max-width:1100px;
    max-height:calc(100vh - 220px);
  }

  .hero-title {
    font-size:48px;
  }

  .link-card {
    padding:22px 28px;
    font-size:17px;
  }
}
