:root {
  --red: #aa151b;
  --red-dark: #7f0f14;
  --yellow: #f1bf00;
  --yellow-soft: #fff4bf;
  --bg: #fffaf2;
  --white: #ffffff;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: rgba(170, 21, 27, 0.10);
  --shadow: 0 22px 60px rgba(127, 15, 20, 0.14);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(241,191,0,0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(170,21,27,0.08), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 100%);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

.flag-top {
  height: 15px;
  background: linear-gradient(
    to bottom,
    var(--red) 0%, var(--red) 25%,
    var(--yellow) 25%, var(--yellow) 75%,
    var(--red) 75%, var(--red) 100%
  );
}

.container {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,250,242,0.90));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(170,21,27,0.10);
  transition: box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-header::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--red) 0%,
    var(--red) 22%,
    var(--yellow) 22%,
    var(--yellow) 78%,
    var(--red) 78%,
    var(--red) 100%
  );
}

.site-header.scrolled {
  box-shadow: 0 16px 34px rgba(127, 15, 20, 0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,250,242,0.94));
  border-bottom-color: rgba(170,21,27,0.14);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 13px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: 214px;
  max-width: 45vw;
  border-radius: 12px;
  filter: drop-shadow(0 8px 14px rgba(127, 15, 20, 0.08));
}

.nav-links {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,244,191,0.36));
  border: 1px solid rgba(170,21,27,0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    0 12px 28px rgba(127, 15, 20, 0.08);
}

.nav-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--red-dark);
  font-weight: 900;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.nav-pill:hover {
  transform: translateY(-1px);
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 12px 24px rgba(170, 21, 27, 0.20);
}

.nav-pill:focus-visible {
  outline: 3px solid rgba(241, 191, 0, 0.55);
  outline-offset: 3px;
}

.nav-pill-cta {
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 12px 24px rgba(170, 21, 27, 0.22);
  border: 1px solid rgba(241, 191, 0, 0.34);
}

.nav-pill-cta:hover {
  background: linear-gradient(135deg, var(--yellow), #ffdc43);
  color: var(--red-dark);
  box-shadow: 0 14px 28px rgba(241, 191, 0, 0.22);
}

.top-banner {
  padding: 38px 0 20px;
}

.top-banner-card {
  min-height: 390px;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(127,15,20,0.14);
  border: 1px solid rgba(241,191,0,0.34);
  display: flex;
  align-items: flex-end;
  padding: 36px;
  background:
    linear-gradient(90deg, rgba(20,28,40,0.56) 0%, rgba(20,28,40,0.26) 38%, rgba(20,28,40,0.06) 100%),
    url("assets/banner-principal-espanha.webp");
  background-size: cover;
  background-position: center;
}

.top-banner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(0,0,0,0.04));
  pointer-events: none;
}

.top-banner-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(241,191,0,0.18);
  border: 1px solid rgba(241,191,0,0.42);
  color: #fff6c8;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow-light {
  background: var(--yellow-soft);
  border-color: rgba(241,191,0,0.46);
  color: var(--red-dark);
}

.top-banner h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-shadow: 0 5px 22px rgba(0,0,0,0.22);
}

.top-banner p {
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  text-shadow: 0 3px 12px rgba(0,0,0,0.20);
}

.hero {
  padding: 20px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 28px;
  align-items: center;
}

.hero-card,
.section-card,
.info-card,
.cta-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 28px;
}

.hero-copy h2 {
  margin: 0 0 14px;
  color: var(--red-dark);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1rem;
}

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.hero-bullet {
  background: #fffdf8;
  border: 1px solid rgba(170,21,27,0.08);
  border-radius: var(--radius-md);
  padding: 16px;
}

.hero-bullet strong {
  display: block;
  color: var(--red-dark);
  margin-bottom: 6px;
}

.hero-bullet span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  padding: 22px;
}

.hero-visual-box {
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: #f5efe7;
}

.hero-visual-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.hero-visual-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(0,0,0,0.03));
  pointer-events: none;
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.hero-note {
  background: #fffdf8;
  border: 1px solid rgba(170,21,27,0.08);
  border-radius: 16px;
  padding: 14px;
}

.hero-note strong {
  display: block;
  color: var(--red-dark);
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.hero-note span {
  color: var(--muted);
  font-size: 0.84rem;
}


.section-divider {
  padding: 18px 0 0;
}

.divider-card {
  position: relative;
  overflow: hidden;
  min-height: 86px;
  border-radius: 24px;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: 72px 1fr;
  grid-template-areas:
    "num title"
    "num desc";
  align-items: center;
  column-gap: 18px;
  background:
    linear-gradient(135deg, rgba(127, 15, 20, 0.96), rgba(170, 21, 27, 0.94)),
    linear-gradient(90deg, var(--red), var(--red-dark));
  border: 1px solid rgba(241, 191, 0, 0.46);
  box-shadow: 0 18px 40px rgba(127, 15, 20, 0.16);
}

.divider-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(241, 191, 0, 0.16), transparent 36%),
    radial-gradient(circle at 92% 20%, rgba(241, 191, 0, 0.22), transparent 20%);
  pointer-events: none;
}

.divider-card::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -90px;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  border: 32px solid rgba(241, 191, 0, 0.12);
  pointer-events: none;
}

.divider-card span {
  grid-area: num;
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--red-dark);
  font-weight: 900;
  font-size: 1.05rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.divider-card strong {
  grid-area: title;
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.divider-card em {
  grid-area: desc;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.84);
  font-style: normal;
  font-size: 0.95rem;
}

.divider-card-final {
  background:
    linear-gradient(135deg, rgba(241, 191, 0, 0.96), rgba(255, 220, 67, 0.94)),
    linear-gradient(90deg, var(--yellow), #ffdc43);
  border-color: rgba(170, 21, 27, 0.20);
}

.divider-card-final span {
  background: var(--red);
  color: var(--yellow);
}

.divider-card-final strong,
.divider-card-final em {
  color: var(--red-dark);
}

.divider-card-final::before {
  background:
    linear-gradient(90deg, rgba(170, 21, 27, 0.12), transparent 40%),
    radial-gradient(circle at 92% 20%, rgba(170, 21, 27, 0.12), transparent 20%);
}


section {
  padding: 54px 0 74px;
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 38px;
}

.section-head h2 {
  margin: 0 0 12px;
  color: var(--red-dark);
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.two-col {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.image-card {
  overflow: hidden;
  padding: 18px;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(127,15,20,0.10);
}

.content-card {
  padding: 28px;
}

.content-card h3 {
  margin: 0 0 12px;
  color: var(--red-dark);
  font-size: 1.55rem;
  line-height: 1.15;
}

.content-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.feature-card {
  background: #fffdf8;
  border: 1px solid rgba(170,21,27,0.08);
  border-radius: var(--radius-md);
  padding: 16px;
}

.feature-card strong {
  display: block;
  color: var(--red-dark);
  margin-bottom: 6px;
}

.feature-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.services-wrap {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 24px;
  align-items: start;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  padding: 22px;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(170,21,27,0.12), rgba(241,191,0,0.24));
  color: var(--red-dark);
}

.service-card h3 {
  margin: 0 0 8px;
  color: var(--red-dark);
  font-size: 1.08rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.stages-wrap {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: start;
}

.stages-list {
  display: grid;
  gap: 16px;
}

.stage-card {
  padding: 20px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
}

.stage-number {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--yellow);
  font-size: 1rem;
  font-weight: 900;
}

.stage-body h3 {
  margin: 0 0 6px;
  color: var(--red-dark);
  font-size: 1.04rem;
}

.stage-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.extra-card {
  padding: 24px;
}

.extra-card h3 {
  margin: 0 0 8px;
  color: var(--red-dark);
  font-size: 1.06rem;
}

.extra-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.cta {
  padding-top: 82px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  padding: 34px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(127,15,20,0.88) 0%, rgba(127,15,20,0.56) 44%, rgba(127,15,20,0.12) 100%),
    url("assets/cta-final-espanha.webp");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(241,191,0,0.44);
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.08));
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  color: #ffffff;
}

.cta-content h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.cta-content p {
  margin: 0 0 20px;
  color: rgba(255,255,255,0.92);
  font-size: 1.02rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 900;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary,
.btn-banner {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(170,21,27,0.24);
}

.btn-banner {
  margin-top: 20px;
  border: 1px solid rgba(241,191,0,0.40);
}


.contact-section {
  padding: 24px 0 18px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 30px;
  background:
    radial-gradient(circle at top left, rgba(241, 191, 0, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,250,242,0.94));
  border: 1px solid rgba(170, 21, 27, 0.10);
  box-shadow: var(--shadow);
}

.contact-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -100px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  border: 34px solid rgba(241, 191, 0, 0.16);
  pointer-events: none;
}

.contact-head {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 22px;
}

.contact-head h2 {
  margin: 0 0 8px;
  color: var(--red-dark);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  letter-spacing: -0.03em;
}

.contact-head p {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 18px;
  border-radius: 22px;
  background: #fffdf8;
  border: 1px solid rgba(170, 21, 27, 0.10);
  box-shadow: 0 12px 28px rgba(127, 15, 20, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(170, 21, 27, 0.24);
  box-shadow: 0 18px 36px rgba(127, 15, 20, 0.14);
}

.contact-icon {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--yellow);
  box-shadow: 0 12px 24px rgba(170, 21, 27, 0.18);
}

.contact-item strong {
  display: block;
  color: var(--red-dark);
  font-size: 1rem;
  margin-bottom: 3px;
}

.contact-item small {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  word-break: break-word;
}

.social-row {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(170, 21, 27, 0.10);
}

.social-row span {
  color: var(--red-dark);
  font-weight: 900;
  margin-right: 4px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--yellow-soft);
  color: var(--red-dark);
  border: 1px solid rgba(241, 191, 0, 0.55);
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.social-row a:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #ffffff;
}


.final-contact-cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(170, 21, 27, 0.10);
}

.btn-final-contact {
  min-width: min(100%, 340px);
  min-height: 54px;
  font-size: 1rem;
  letter-spacing: -0.01em;
  box-shadow: 0 18px 36px rgba(170, 21, 27, 0.24);
}

.btn-final-contact:hover {
  box-shadow: 0 22px 42px rgba(170, 21, 27, 0.30);
}


.section-divider-link {
  cursor: pointer;
}

.divider-card-clickable {
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.divider-card-clickable:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(170, 21, 27, 0.18);
  filter: saturate(1.04);
}

.divider-card-clickable::after {
  content: "Acessar briefing →";
  position: relative;
  z-index: 1;
  justify-self: end;
  align-self: center;
  grid-column: 2;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.28);
  color: var(--red-dark);
  border: 1px solid rgba(127, 15, 20, 0.14);
  font-weight: 900;
  font-size: 0.9rem;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .divider-card-clickable::after {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: start;
    margin-top: 10px;
  }
}

.site-footer {
  padding: 30px 0 48px;
}

.footer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 22px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 180px;
  border-radius: 10px;
}

.footer-copy {
  text-align: right;
  color: #6b7280;
  font-size: 0.92rem;
}

.footer-copy strong {
  display: block;
  color: var(--red-dark);
  margin-bottom: 4px;
}

.footer-copy small {
  display: block;
  margin-top: 6px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .two-col,
  .services-wrap,
  .stages-wrap {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .extras-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {

  .contact-card {
    padding: 22px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-item {
    min-height: auto;
  }

  .social-row {
    align-items: flex-start;
  }


  .divider-card {
    grid-template-columns: 56px 1fr;
    column-gap: 14px;
    padding: 16px;
    border-radius: 20px;
  }

  .divider-card span {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .divider-card em {
    font-size: 0.88rem;
  }


  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .top-banner-card,
  .cta-card {
    padding: 24px;
    min-height: 320px;
  }

  .hero-copy,
  .hero-visual,
  .content-card,
  .service-card,
  .extra-card,
  .stage-card,
  .footer-card {
    padding: 20px;
  }

  .hero-bullets,
  .feature-grid,
  .hero-notes,
  .service-grid,
  .extras-grid {
    grid-template-columns: 1fr;
  }

  .image-card img {
    min-height: 280px;
  }

  .footer-copy {
    text-align: left;
  }

  section {
    padding: 60px 0;
  }
}



/* ===== Alto relevo e brilho premium ===== */
.divider-card,
.btn,
.nav-pill,
.social-row a,
.contact-item,
.btn-final-contact {
  position: relative;
  overflow: hidden;
}

.divider-card::after,
.btn::after,
.nav-pill::after,
.social-row a::after,
.contact-item::after,
.btn-final-contact::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.28) 0%,
    rgba(255,255,255,0.10) 20%,
    rgba(255,255,255,0.00) 45%,
    rgba(0,0,0,0.03) 100%
  );
  pointer-events: none;
}

.divider-card::before,
.btn::before,
.nav-pill::before,
.social-row a::before,
.contact-item::before,
.btn-final-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 42%;
  height: 100%;
  transform: skewX(-24deg);
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.00) 0%,
    rgba(255,255,255,0.12) 38%,
    rgba(255,255,255,0.42) 52%,
    rgba(255,255,255,0.10) 66%,
    rgba(255,255,255,0.00) 100%
  );
  pointer-events: none;
  opacity: 0.9;
}

.divider-card {
  box-shadow:
    0 22px 48px rgba(127, 15, 20, 0.16),
    inset 0 2px 0 rgba(255,255,255,0.28),
    inset 0 -3px 0 rgba(0,0,0,0.10);
}

.divider-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 26px 54px rgba(127, 15, 20, 0.20),
    inset 0 2px 0 rgba(255,255,255,0.32),
    inset 0 -3px 0 rgba(0,0,0,0.12);
}

.divider-card span {
  box-shadow:
    0 10px 20px rgba(0,0,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.38),
    inset 0 -3px 0 rgba(0,0,0,0.12);
}

.btn,
.nav-pill,
.social-row a,
.btn-final-contact {
  box-shadow:
    0 14px 28px rgba(127, 15, 20, 0.16),
    inset 0 2px 0 rgba(255,255,255,0.32),
    inset 0 -3px 0 rgba(0,0,0,0.12);
}

.btn:hover,
.nav-pill:hover,
.social-row a:hover,
.btn-final-contact:hover {
  box-shadow:
    0 18px 34px rgba(127, 15, 20, 0.22),
    inset 0 2px 0 rgba(255,255,255,0.38),
    inset 0 -3px 0 rgba(0,0,0,0.14);
}

.btn-primary,
.btn-banner,
.nav-pill-cta,
.btn-final-contact {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.00)),
    linear-gradient(135deg, var(--red), var(--red-dark));
}

.btn-primary:hover,
.btn-banner:hover,
.nav-pill-cta:hover,
.btn-final-contact:hover {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0.02)),
    linear-gradient(135deg, #c71d25, #7f0f14);
}

.nav-pill {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.34), rgba(255,255,255,0.06)),
    linear-gradient(180deg, #fffdf8, #fff3cf);
  border: 1px solid rgba(170, 21, 27, 0.10);
}

.nav-pill:hover {
  color: #ffffff;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.02)),
    linear-gradient(135deg, var(--red), var(--red-dark));
}

.social-row a {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.04)),
    linear-gradient(180deg, #fff8da, #ffeeb0);
}

.social-row a:hover {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.02)),
    linear-gradient(135deg, var(--red), var(--red-dark));
}

.contact-item {
  box-shadow:
    0 14px 28px rgba(127, 15, 20, 0.10),
    inset 0 2px 0 rgba(255,255,255,0.42),
    inset 0 -3px 0 rgba(0,0,0,0.05);
}

.contact-item:hover {
  box-shadow:
    0 18px 34px rgba(127, 15, 20, 0.15),
    inset 0 2px 0 rgba(255,255,255,0.46),
    inset 0 -3px 0 rgba(0,0,0,0.06);
}

.divider-card-clickable::after {
  content: "Acessar briefing →";
  position: relative;
  z-index: 2;
  justify-self: end;
  align-self: center;
  grid-column: 2;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.42), rgba(255,255,255,0.10)),
    rgba(255,255,255,0.18);
  color: var(--red-dark);
  border: 1px solid rgba(127, 15, 20, 0.16);
  font-weight: 900;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow:
    0 10px 18px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.52),
    inset 0 -2px 0 rgba(0,0,0,0.05);
}

/* brilho animado suave */
@keyframes glossySweep {
  0%   { left: -40%; }
  100% { left: 130%; }
}

.divider-card:hover::before,
.btn:hover::before,
.nav-pill:hover::before,
.social-row a:hover::before,
.contact-item:hover::before,
.btn-final-contact:hover::before {
  animation: glossySweep 0.9s ease forwards;
}

@media (max-width: 760px) {
  .divider-card-clickable::after {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: start;
    margin-top: 10px;
  }
}
