:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --card: #101010;
  --card-2: #151515;
  --text: #ffffff;
  --muted: #b8b8b8;
  --muted-2: #8e8e8e;
  --line: rgba(255, 106, 0, 0.18);
  --accent: #FF6A00;
  --accent-soft: rgba(255, 106, 0, 0.14);
  --shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
}

/* ================= GERAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}


html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.09), transparent 25%),
    linear-gradient(180deg, #020202 0%, #080808 100%);
  color: var(--text);
}

main {
  width: 100%;
  margin: 0 auto;
  padding: 0 4%;
  opacity: 0;
  transform: translateY(20px);
  animation: mainFadeIn 0.9s ease-out 0.7s forwards;
}

.interface {
  max-width: 1400px;
  margin: 0 auto;
}

.flex {
  display: flex;
}

/* ================= HEADER ================= */
header {
  padding: 28px 4%;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.84);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  overflow: visible;
}

header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.7;
}

header > .interface {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
}

header a {
  color: #979797;
  text-decoration: none;
  display: inline-block;
  transition: 0.25s ease;
}

header a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 34px;
}

header nav ul li {
  display: inline-block;
}


/* ================= BOTÃO MENU MOBILE ================= */
.menu-toggle {
  display: inline-flex;
  width: 56px;
  height: 56px;
  position: relative;
  z-index: 140;
  border: none;
  border-radius: 12px;
  background: var(--accent);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  border-radius: 999px;
  background: #050505;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.28);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ================= BOTÕES ================= */
.btn-contact button,
.btn-outline {
  padding: 13px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
}

.btn-contact button {
  border: none;
  background: var(--accent);
  color: #050505;
  box-shadow: 0 0 0 transparent;
}

.btn-contact button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.28);
}

.btn-contact a {
  text-decoration: none !important;
  color: inherit !important;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

/* ================= SEÇÕES GERAIS ================= */
section {
  padding: 100px 0;
}

/* ================= TOPO DO SITE ================= */
.topo-do-site {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  padding-top: 70px;
}

.topo-do-site .flex {
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.txt-topo-site,
.img-topo-site {
  flex: 1 1 460px;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.08);
  border: 1px solid rgba(255, 106, 0, 0.18);
  color: #ffb27a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.txt-topo-site h1,
.section-header h2,
.contato-texto h2 {
  font-size: clamp(3.1rem, 3.2vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.txt-topo-site h1 span,
.section-header h2 span,
.contato-texto h2 span {
  color: var(--accent);
}

.txt-topo-site p,
.section-header p,
.bio-card p,
.especialidade p,
.portfolio-card p,
.contato-texto p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

.txt-topo-site p {
  margin: 22px 0 30px;
  max-width: 720px;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

/* ================= AÇÕES DO HERO ================= */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.topo-do-site .btn-contact {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.topo-do-site .btn-contact.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= BOTÃO PORTFÓLIO (ANIMAÇÃO) ================= */
.btn-portfolio {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.btn-portfolio.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= CARDS DO TOPO ================= */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 18px;
  max-width: 650px;
}

.stat-card,
.bio-card,
.especialidade,
.portfolio-card,
.contato-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat-card {
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: none;

  transition: all 0.3s ease;
  cursor: pointer;
}

.stat-card {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.stat-card {
  cursor: pointer;
}



.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.stat-card span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ================= IMAGEM DO HERO ================= */
.hero-image-frame {
  position: relative;
  max-width: 590px;
  margin-left: auto;
  padding: 24px;
  border-radius: 30px;
  background: radial-gradient(190px, rgba(255, 102, 0, 0), rgba(255, 102, 0, 0));
  border: radial-gradient(190px, rgba(255, 102, 0, 0), rgba(255, 102, 0, 0));
  filter: drop-shadow(0 14px 14px rgba(255, 106, 0, 0.164));
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 24px;
  pointer-events: none;
}

.img-topo-site img:hover {
  animation-play-state: paused;
  transform: scale(1.02);
}

.img-topo-site img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  animation: premiumFloat 5s ease-in-out infinite;
}

@keyframes premiumFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.03);
  }
}

/* ================= INDICADOR DE ROLAGEM ================= */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: -30px;
  color: var(--muted-2);
  animation: fadeIn 1.2s ease 1.5s both;
}

.arrow {
  color: var(--accent);
  animation: bounce 1.6s infinite;
}

/* ================= CABEÇALHO DAS SEÇÕES ================= */
.section-header {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-header p {
  margin-top: 16px;
}

/* ================= BIO E PORTFÓLIO GRID ================= */
.bio-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.bio-card,
.portfolio-card,
.especialidade,
.contato-box {
  border-radius: 22px;
}

.bio-card,
.portfolio-card {
  padding: 30px;
}

.bio-card h3,
.portfolio-card h3,
.especialidade h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.bio-card.destaque {
  border-color: rgba(255, 106, 0, 0.28);
  background: linear-gradient(180deg, rgba(255,106,0,0.10), rgba(255,255,255,0.02));
}

/* ================= ESPECIALIDADES ================= */
.cards-especialidades {
  align-items: stretch;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.especialidade {
  max-width: 380px;
  text-align: center;
  padding: 34px 26px;
  transition: 0.3s ease;
}

.especialidade:hover,
.portfolio-card:hover,
.bio-card:hover,
.contato-box:hover,
.stat-card:hover {
  transform: scale(1.02);
  border-color: rgba(255, 106, 0, 0.26);
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.1);
}
.especialidade img {
  margin-bottom: 18px;
}

/* ================= PORTFÓLIO ================= */
.portfolio-number {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 16px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

/* ================= CONTATO ================= */
.contato-box {
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(135deg, rgba(255,106,0,0.10), rgba(255,255,255,0.03));
}

.contato-actions {
  display: flex;
  flex-direction: column;
  align-items: center; /* centraliza */
  justify-content: center;
  gap: 14px;
}

.contact-link {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.contact-link:hover {
  color: var(--accent);
}

/* ================= FOOTER ================= */
footer {
  padding: 28px 4% 34px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-content p,
.footer-content a {
  color: var(--muted-2);
  text-decoration: none;
}

/* ================= ANIMAÇÕES DE REVELAÇÃO ================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= KEYFRAMES ================= */
@keyframes mainFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes flutuar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ================= RESPONSIVO ================= */
@media (max-width: 1100px) {
  .bio-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

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

  .contato-actions {
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  header > .interface,
  .topo-do-site .flex {
    flex-direction: column;
  }

  header > .interface {
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
    align-self: flex-end;
  }
  .menu.desktop {
    width: min(220px, 88vw);
    right: 74px;
  }

  .menu.desktop ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .menu.desktop ul li {
    display: block;
  }

  .menu.desktop ul li a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
  }

  .menu.desktop ul li a:hover {
    background: rgba(255, 106, 0, 0.08);
  }

  .txt-topo-site,
  .img-topo-site {
    flex: 1 1 100%;
    text-align: center;
  }

  .txt-topo-site p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image-frame {
    margin: 0 auto;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .header-cta {
    display: block;
  }
}

@media (max-width: 640px) {
  section {
    padding: 78px 0;
  }

  header {
    padding: 22px 4%;
  }

  header nav ul {
    gap: 12px 18px;
  }

  .hero-actions {
  flex-direction: column;
  align-items: center;
}

.hero-actions .btn-contact,
.hero-actions .btn-portfolio {
  width: 100%;
  max-width: 320px;
}

.hero-actions .btn-contact button,
.hero-actions .btn-outline {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

  .contato-box {
    padding: 28px;
  }

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

/* ===== MENU GLOBAL (DESKTOP + MOBILE) ===== */
.menu.desktop {
  display: block;
  position: absolute;
  top: 50%;
  left: 71%;
  right: auto;
  width: max-content;
  max-width: calc(100% - 220px);
  padding: 8px 10px;
  border-radius: 18px;
  background: rgba(13, 13, 13, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 90;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-120px, -50%) scale(0.985);
  transform-origin: right center;
  transition:
    opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.42s ease;
}

.menu.desktop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-170px, -50%) scale(1);
}

.menu.desktop ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.menu.desktop ul li {
  display: inline-block;
}

.menu.desktop ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 12px;
  transition:
    background 0.28s ease,
    color 0.28s ease,
    transform 0.28s ease;
}

.menu.desktop ul li a:hover {
  background: rgba(255, 106, 0, 0.10);
  transform: translateY(-1px);
}

/* botão sempre acima e clicável */
.menu-toggle,
#menu-toggle {
  position: relative;
  z-index: 140;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .menu.desktop {
  left: 4%;
  right: 88px;
  top: calc(100% - 32px);

  max-width: calc(100vw - 120px);
  padding: 7px 8px;

  overflow-x: auto;
  overflow-y: hidden;

  transform: translateX(20px);
}

.menu.desktop ul {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.menu.desktop ul li a {
  font-size: 12px;
  padding: 6px 8px;
}

.menu.desktop.active {
  transform: translateX(0);
}

  .menu.desktop.active {
    transform: translate(0, -50%) scale(1);
  }

  .menu.desktop::-webkit-scrollbar {
    display: none;
  }

  .menu.desktop ul {
    gap: 6px;
  }

  .menu.desktop ul li a {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .menu.desktop {
    right: 88px;
    max-width: calc(100vw - 150px);
    padding: 7px 8px;
  }

  .menu.desktop ul li a {
    padding: 8px 11px;
    font-size: 13px;
  }
}

/* ===== SCROLLBAR PERSONALIZADA ===== */

/* Chrome, Edge e Safari */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #050505; 
}

::-webkit-scrollbar-thumb {
  background: var(--accent); 
  border-radius: 10px;
  border: 2px solid #050505;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff7b1a; 
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) #050505;
}


/* ================= HEADER MOBILE ================= */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 900px) {
  header > .interface.header-container {
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .logo img {
    max-width: 170px;
    height: auto;
  }

  .menu-toggle {
    margin-left: auto;
    flex-shrink: 0;
  }

  .menu.desktop {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    padding: 14px;
    border-radius: 16px;
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }

  .menu.desktop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu.desktop ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    white-space: normal;
  }

  .menu.desktop ul li {
    display: block;
    width: 100%;
  }

  .menu.desktop ul li a {
    display: flex;
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 15px;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .logo img {
    max-width: 150px;
  }

  .menu-toggle {
    width: 54px;
    height: 54px;
  }

  .menu.desktop {
    top: calc(100% + 8px);
    padding: 12px;
  }
}




/* ================= MENU MOBILE LATERAL COM LOGO OCULTA ================= */
.logo {
  transition: opacity 0.28s ease, transform 0.28s ease, width 0.28s ease, margin 0.28s ease;
}

@media (max-width: 900px) {
  header > .interface,
  header > .interface.header-container {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    position: relative;
  }

  .logo {
    flex: 0 0 auto;
    min-width: 0;
  }

  .logo img {
    display: block;
    max-width: 170px;
    height: auto;
  }

  .menu-toggle {
    margin-left: auto;
    flex-shrink: 0;
  }

  .menu.desktop {
    position: absolute;
    top: 50%;
    right: 72px;
    left: auto;
    width: calc(100% - 88px);
    max-width: calc(100% - 88px);
    padding: 7px 8px;
    border-radius: 16px;
    background: rgba(13, 13, 13, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(24px, -50%) scale(0.985);
    transform-origin: right center;
    transition:
      opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.35s ease;
  }

  .menu.desktop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(0, -50%) scale(1);
  }

  .menu.desktop ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .menu.desktop ul li {
    display: inline-block;
  }

  .menu.desktop ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 10px;
  }

  header.menu-open .logo,
  .logo.hide-on-menu {
    opacity: 0;
    transform: translateX(-18px);
    width: 0;
    margin-right: -8px;
    pointer-events: none;
    overflow: hidden;
  }

  .menu.desktop::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 640px) {
  .logo img {
    max-width: 150px;
  }

  .menu.desktop {
    right: 68px;
    width: calc(100% - 82px);
    max-width: calc(100% - 82px);
  }

  .menu.desktop ul li a {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 13px;
  }
}

/* ================= COOKIES ================= */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 560px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(13, 13, 13, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 9999;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.cookie-banner p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

#accept-cookies {
  background: var(--accent);
  color: #050505;
}

#accept-cookies:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(255, 106, 0, 0.25);
}

#reject-cookies {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

#reject-cookies:hover {
  background: rgba(255, 255, 255, 0.05);
}

.cookie-banner.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-actions button {
    flex: 1;
    width: 100%;
  }
}

