/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800;900&display=swap');

:root {
  --tqp-bg: #222;
  --tqp-card: rgba(44, 44, 52, 0.96);
  --tqp-card-strong: rgba(32, 32, 40, 0.98);
  --tqp-text: #fff;
  --tqp-muted: rgba(255, 255, 255, 0.68);
  --tqp-soft: rgba(255, 255, 255, 0.09);
  --tqp-soft-border: rgba(255, 255, 255, 0.10);
  --tqp-primary: #667eea;
  --tqp-secondary: #764ba2;
  --tqp-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  --tqp-radius: 28px;
  --tqp-gradient: linear-gradient(145deg, #667eea, #764ba2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 1.6;
  color: var(--tqp-text);
  background:
    radial-gradient(circle at top left, rgba(102, 126, 234, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(118, 75, 162, 0.16), transparent 36%),
    var(--tqp-bg);
}

img {
  max-width: 100%;
}

a,
button,
input {
  font-family: inherit;
}

/* ======================= */
/* Estado Login Home       */
/* ======================= */

.home-guest-only,
.home-auth-only {
  display: none !important;
}

body.home-auth-checking .home-guest-only,
body.home-auth-checking .home-auth-only {
  display: none !important;
}

body.home-authenticated .home-guest-only {
  display: none !important;
}

body.home-authenticated .home-auth-only {
  display: inline-flex !important;
}

body.home-guest .home-guest-only {
  display: inline-flex !important;
}

body.home-guest .home-auth-only {
  display: none !important;
}

/* ======================= */
/* MENU                    */
/* ======================= */

.site-nav {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 1000;

  width: min(1180px, calc(100% - 28px));
  min-height: 74px;
  padding: 10px 14px 10px 18px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;

  border-radius: 28px;

  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(102, 126, 234, 0.94), rgba(118, 75, 162, 0.94));

  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.20);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  transform: translateX(-50%);
}

.site-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  border-radius: inherit;

  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.22),
      transparent 28%,
      transparent 72%,
      rgba(255, 255, 255, 0.12)
    );

  pointer-events: none;
}

.logo-nav {
  display: flex;
  align-items: center;
}

.logo-nav a {
  width: 68px;
  height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.12);

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 8px 20px rgba(0, 0, 0, 0.10);

  transition:
    transform 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.logo-nav a:hover {
  transform: translateY(-2px) scale(1.03);
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    0 12px 26px rgba(0, 0, 0, 0.16);
}

.logo-nav img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.22));
}

.nav-links {
  justify-self: center;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  list-style: none;
}

.nav-links a {
  min-height: 42px;
  padding: 0 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  color: #fff;
  text-decoration: none;

  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;

  background: rgba(255, 255, 255, 0.08);

  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);

  transition:
    transform 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 10px 24px rgba(0, 0, 0, 0.14);
  outline: none;
}

.auth {
  justify-self: end;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.auth-link,
.language-btn {
  position: relative;

  min-height: 42px;
  padding: 0 15px;

  border: 0;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  color: #fff;
  background: rgba(255, 255, 255, 0.14);

  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;

  cursor: pointer;
  overflow: hidden;
  isolation: isolate;

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.10);

  transition:
    transform 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.register-link,
.dashboard-link,
.primary-btn,
.registro-btn {
  background: var(--tqp-gradient);
  box-shadow:
    0 10px 24px rgba(102, 126, 234, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.auth-link:hover,
.language-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
  filter: brightness(1.05);

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    0 12px 26px rgba(0, 0, 0, 0.16);
}

.language-wrapper {
  position: relative;
}

.language-btn .material-symbols-outlined {
  font-size: 21px;
  line-height: 1;
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;

  width: 190px;
  padding: 8px;

  display: none;
  list-style: none;

  border-radius: 20px;

  background:
    linear-gradient(180deg, rgba(44, 44, 52, 0.98), rgba(32, 32, 40, 0.96));

  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);

  animation: languageMenuIn 0.2s ease both;
}

.language-menu.show {
  display: block;
}

.language-menu button {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;

  border: 0;
  border-radius: 14px;

  display: flex;
  align-items: center;

  color: #fff;
  background: transparent;

  font-weight: 800;
  text-align: left;

  cursor: pointer;

  transition:
    background 0.18s ease,
    transform 0.18s ease;
}

.language-menu button:hover {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.09);
}

@keyframes languageMenuIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  border: 0;
  border-radius: 50%;

  align-items: center;
  justify-content: center;

  color: #fff;
  background: rgba(255, 255, 255, 0.14);

  cursor: pointer;

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.10);
}

.menu-toggle .material-symbols-outlined {
  font-size: 28px;
}

/* ======================= */
/* HERO                    */
/* ======================= */

.hero-section {
  position: relative;

  min-height: 100vh;
  padding: 150px 24px 80px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background:
    url('https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExbjk5OWFrOGVubWpjd3Rhb2Yzanp6NW5hamk2N29uZGFmbWd2a2ZwdyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/s9fGBclTeUP1xoQpKY/giphy.gif')
    center / cover no-repeat;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at center, rgba(102, 126, 234, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(34, 34, 34, 0.96));

  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.10),
      transparent 34%,
      transparent 72%,
      rgba(118, 75, 162, 0.18)
    );

  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;

  width: min(860px, 100%);
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;

  animation: heroIn 0.85s cubic-bezier(.16, .9, .24, 1) both;
}

.hero-logo {
  width: min(420px, 82vw);
  height: auto;

  margin-bottom: 18px;

  filter:
    drop-shadow(0 24px 42px rgba(0, 0, 0, 0.36))
    drop-shadow(0 0 22px rgba(102, 126, 234, 0.20));
}

.hero-eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 12px;
  padding: 7px 16px;

  border-radius: 999px;

  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;

  color: #cfd5ff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-content h1 {
  max-width: 760px;

  margin: 0;

  font-size: clamp(2rem, 6vw, 4.7rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -1.6px;

  color: #fff;
}

.hero-content p {
  max-width: 620px;

  margin: 16px auto 0;

  font-size: clamp(0.96rem, 2.2vw, 1.15rem);
  line-height: 1.65;

  color: rgba(255, 255, 255, 0.74);
}

.hero-actions {
  margin-top: 28px;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.primary-btn,
.secondary-btn,
.login-btn,
.registro-btn,
.subscribe-btn,
.footer-subscribe-btn {
  min-height: 48px;
  padding: 12px 22px;

  border: 0;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  text-decoration: none;

  font-size: 0.98rem;
  font-weight: 900;

  cursor: pointer;

  transition:
    transform 0.22s ease,
    filter 0.22s ease,
    box-shadow 0.22s ease;
}

.primary-btn,
.login-btn,
.subscribe-btn {
  background: var(--tqp-gradient);
  box-shadow: 0 12px 28px rgba(102, 126, 234, 0.34);
}

.secondary-btn,
.registro-btn {
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 10px 24px rgba(0, 0, 0, 0.14);
}

.primary-btn:hover,
.secondary-btn:hover,
.login-btn:hover,
.registro-btn:hover,
.subscribe-btn:hover,
.footer-subscribe-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* ======================= */
/* SEÇÕES                  */
/* ======================= */

.content-section {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 90px 24px;
}

.section-card,
.about-card {
  position: relative;
  overflow: hidden;

  width: 100%;
  padding: clamp(24px, 4vw, 44px);

  border-radius: var(--tqp-radius);

  background:
    radial-gradient(circle at top right, rgba(102, 126, 234, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(44, 44, 52, 0.98), rgba(32, 32, 40, 0.96));

  box-shadow:
    var(--tqp-shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);

  animation: sectionCardIn 0.7s cubic-bezier(.16, .9, .24, 1) both;
}

.section-card::before,
.about-card::before {
  content: "";
  position: absolute;
  inset: -40%;

  background:
    radial-gradient(circle at top left, rgba(102, 126, 234, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(118, 75, 162, 0.16), transparent 34%);

  pointer-events: none;
}

.section-card > *,
.about-card > * {
  position: relative;
  z-index: 1;
}

.section-card h2,
.about-card h2 {
  margin: 0 0 22px;

  font-size: clamp(1.75rem, 4vw, 3.35rem);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -1px;

  color: #fff;
  text-align: center;
}

.intro-card p,
.split-text p,
.about-card p {
  max-width: 860px;

  margin: 0 auto;

  font-size: 1rem;
  line-height: 1.85;
  font-weight: 600;

  color: rgba(255, 255, 255, 0.70);
  text-align: justify;
}

.play-title {
  margin-top: 34px !important;
  margin-bottom: 16px !important;

  font-size: clamp(1.5rem, 3vw, 2.4rem) !important;
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;

  margin-top: 20px;
}

/* ======================= */
/* NOVIDADES               */
/* ======================= */

.news-section {
  width: 100%;
  max-width: none;

  padding-left: 24px;
  padding-right: 24px;

  background:
    radial-gradient(circle at center left, rgba(102, 126, 234, 0.14), transparent 30%),
    radial-gradient(circle at center right, rgba(118, 75, 162, 0.14), transparent 32%);
}

.news-section .section-card {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;

  padding: 16px;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.07);

  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.10);

  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.10);
}

.feature-image-wrap {
  min-height: 260px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;

  background: rgba(0, 0, 0, 0.18);

  overflow: hidden;
}

.feature-card img {
  width: min(400px, 100%);
  height: auto;

  object-fit: contain;

  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.28));

  transition: transform 0.32s ease;
}

.feature-card:hover img {
  transform: scale(1.06) rotate(-1deg);
}

.feature-card h3 {
  margin: 16px 0 6px;

  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 900;

  color: #fff;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
}

/* ======================= */
/* COLECIONE               */
/* ======================= */

.collect-section .section-card {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.split-block {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;

  padding: 18px;
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.055);

  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.split-block-reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.split-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-media img {
  width: min(360px, 100%);
  max-height: 320px;

  object-fit: cover;

  border-radius: 24px;

  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.10);

  transition:
    transform 0.32s ease,
    filter 0.32s ease;
}

.split-media img:hover {
  transform: translateY(-4px) scale(1.03);
  filter: brightness(1.06);
}

/* ======================= */
/* SOBRE                   */
/* ======================= */

.about-section {
  position: relative;

  min-height: 100vh;
  padding: 100px 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: url('/imagens/waves.png') center / cover no-repeat;

  overflow: hidden;
}

.about-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 50% 20%, rgba(102, 126, 234, 0.20), transparent 34%),
    rgba(0, 0, 0, 0.72);

  z-index: 1;
}

.about-card {
  position: relative;
  z-index: 2;

  width: min(900px, 100%);
}

.subscribe-form {
  margin: 30px auto 0;

  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;

  max-width: 560px;
}

.email-input {
  min-height: 48px;
  padding: 12px 16px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;

  color: #fff;
  background: rgba(255, 255, 255, 0.08);

  font-size: 0.96rem;
  font-weight: 800;

  outline: none;

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 10px 28px rgba(0, 0, 0, 0.16);

  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.email-input:focus {
  border-color: rgba(102, 126, 234, 0.85);
  background: rgba(255, 255, 255, 0.12);

  box-shadow:
    0 0 0 4px rgba(102, 126, 234, 0.20),
    0 14px 34px rgba(0, 0, 0, 0.22);
}

/* ======================= */
/* RODAPÉ                  */
/* ======================= */

#rodape {
  padding: 44px 24px 38px;

  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(102, 126, 234, 0.96), rgba(118, 75, 162, 0.96));

  color: #fff;
  text-align: center;

  box-shadow: 0 -18px 44px rgba(0, 0, 0, 0.22);
}

.footer-content {
  width: min(1180px, 100%);
  margin: 0 auto;
}

#rodape h2 {
  font-size: clamp(1.55rem, 4vw, 2.2rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.5px;

  margin-bottom: 10px;
}

#rodape p {
  margin-bottom: 14px;

  font-size: 0.96rem;
  font-weight: 700;

  color: rgba(255, 255, 255, 0.78);
}

.social-menu {
  margin: 16px 0 20px;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;

  list-style: none;
}

.social-menu a {
  min-height: 38px;
  padding: 8px 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  color: #fff;
  background: rgba(255, 255, 255, 0.13);

  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;

  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);

  transition:
    transform 0.22s ease,
    background 0.22s ease;
}

.social-menu a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
}

.footer-subscribe-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.10);
}

/* ======================= */
/* ANIMAÇÕES               */
/* ======================= */

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.98);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes sectionCardIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* ======================= */
/* RESPONSIVO              */
/* ======================= */

@media (max-width: 1060px) {
  .site-nav {
    grid-template-columns: auto auto;
    align-items: center;
  }

  .menu-toggle {
    justify-self: end;
    display: inline-flex;
  }

  .nav-links,
  .auth {
    grid-column: 1 / -1;

    display: none;
    width: 100%;
  }

  .nav-links.show,
  .auth.show {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 8px;

    padding-top: 10px;
  }

  .nav-links a {
    width: 100%;
  }

  .auth {
    flex-wrap: wrap;
    justify-content: center;

    padding-top: 4px;
  }

  .language-menu {
    right: 50%;
    transform: translateX(50%);
  }

  .language-menu.show {
    display: block;
  }

  .language-wrapper {
    width: auto;
  }
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .feature-image-wrap {
    min-height: 220px;
  }

  .split-block,
  .split-block-reverse {
    grid-template-columns: 1fr;
  }

  .split-block-reverse .split-media {
    order: 2;
  }

  .split-block-reverse .split-text {
    order: 1;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 100px;
  }

  .site-nav {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 74px;
    padding: 10px 10px 10px 12px;
    border-radius: 24px;
  }

  .logo-nav a {
    width: 58px;
    height: 50px;
    border-radius: 18px;
  }

  .logo-nav img {
    max-height: 46px;
  }

  .hero-section {
    padding: 138px 16px 70px;
  }

  .hero-logo {
    width: min(340px, 78vw);
  }

  .content-section {
    padding: 70px 14px;
  }

  .section-card,
  .about-card {
    border-radius: 24px;
  }

  .intro-card p,
  .split-text p,
  .about-card p {
    text-align: left;
    font-size: 0.94rem;
  }

  .subscribe-form {
    grid-template-columns: 1fr;
  }

  .subscribe-btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .auth {
    flex-direction: column;
    align-items: stretch;
  }

  .auth-link,
  .language-btn {
    width: 100%;
  }

  .language-wrapper {
    width: 100%;
  }

  .language-menu {
    width: 100%;
    right: 0;
    transform: none;
  }

  .hero-actions,
  .action-buttons {
    width: 100%;
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn,
  .login-btn,
  .registro-btn {
    width: min(100%, 320px);
  }

  body.home-authenticated .home-auth-only {
    width: min(100%, 320px);
  }

  .feature-image-wrap {
    min-height: 190px;
  }

  .split-block {
    padding: 14px;
    border-radius: 22px;
  }

  .split-media img {
    border-radius: 20px;
  }
}

@media (max-width: 380px) {
  .site-nav {
    width: calc(100% - 12px);
    padding-left: 8px;
    padding-right: 8px;
  }

  .logo-nav a {
    width: 48px;
    height: 44px;
  }

  .logo-nav img {
    max-height: 40px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .section-card,
  .about-card {
    padding: 20px 14px;
  }

  .social-menu {
    flex-direction: column;
    align-items: center;
  }

  .social-menu a {
    width: min(100%, 260px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}