/* ==========================================================
  VARIÁVEIS
========================================================== */
:root {
  --lavender-50: #fcf8ff;
  --lavender-100: #f6edfc;
  --lavender-200: #ead9f4;
  --lavender-300: #d8bce8;
  --purple-400: #a96bc6;
  --purple-500: #81449f;
  --purple-600: #673281;
  --purple-700: #512565;
  --gold-400: #d9aa58;
  --gold-500: #c4933f;
  --text: #3d2948;
  --text-light: #725d7d;
  --white: #ffffff;
  --shadow-soft: 0 20px 60px rgba(103, 50, 129, 0.1);
  --shadow-card: 0 12px 35px rgba(103, 50, 129, 0.08);
  --radius-large: 32px;
  --radius-medium: 20px;
}

/* ==========================================================
  RESET
========================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(216, 188, 232, 0.35),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 5%,
      rgba(234, 217, 244, 0.65),
      transparent 30%
    ),
    linear-gradient(135deg, #ffffff 0%, var(--lavender-50) 50%, #f8effc 100%);
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================
  FUNDO DECORATIVO
========================================================== */
.background-decoration {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.glow {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
}

.glow-1 {
  top: -180px;
  left: -150px;
  background: var(--purple-400);
  animation: floatingGlow 12s ease-in-out infinite;
}

.glow-2 {
  right: -200px;
  bottom: -200px;
  background: var(--gold-400);
  opacity: 0.12;
  animation: floatingGlow 15s ease-in-out infinite reverse;
}

.flower {
  position: absolute;
  color: rgba(129, 68, 159, 0.1);
  font-size: 13rem;
  line-height: 1;
}

.flower-1 {
  top: 9%;
  right: -40px;
  transform: rotate(18deg);
}

.flower-2 {
  bottom: 12%;
  left: -30px;
  font-size: 10rem;
}

.flower-3 {
  top: 48%;
  right: 4%;
  font-size: 5rem;
  opacity: 0.35;
  animation: rotateFlower 20s linear infinite;
}

/* ==========================================================
  HEADER
========================================================== */

.privacy-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(129, 68, 159, 0.1);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--purple-600);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid var(--lavender-300);
  border-radius: 50px;
  color: var(--purple-600);
  font-size: 0.82rem;
  font-weight: 600;
  transition: 0.3s ease;
}

.back-home:hover {
  background: var(--purple-600);
  color: white;
  transform: translateX(-3px);
}

/* ==========================================================
  HERO
========================================================== */
.privacy-hero {
  position: relative;
  padding: 110px 20px 100px;
  text-align: center;
  overflow: hidden;
}

.privacy-hero::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 50%;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold-400));
  opacity: 0.6;
}

.hero-content {
  width: min(760px, 100%);
  margin: auto;
  animation: heroReveal 0.9s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid rgba(196, 147, 63, 0.35);
  border-radius: 50px;
  color: var(--gold-500);
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-hero h1 {
  margin-bottom: 20px;
  color: var(--purple-700);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.3rem, 7vw, 5.8rem);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.privacy-hero h1 span {
  display: block;
  color: var(--purple-400);
  font-style: italic;
  font-weight: 500;
}

.hero-content > p {
  max-width: 650px;
  margin: 0 auto 25px;
  color: var(--text-light);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
}

.updated {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-light);
  font-size: 0.75rem;
}

.updated i {
  color: var(--gold-500);
}

/* ==========================================================
  CONTEÚDO
========================================================== */
.privacy-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 100px;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

/* ==========================================================
NAVEGAÇÃO
========================================================== */

.privacy-navigation {
  position: sticky;
  top: 110px;
}

.navigation-card {
  padding: 25px 20px;
  border: 1px solid rgba(129, 68, 159, 0.12);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.navigation-title {
  display: block;
  margin-bottom: 16px;
  padding: 0 10px;
  color: var(--purple-600);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.navigation-card nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.navigation-card nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  color: var(--text-light);
  font-size: 0.75rem;
  transition: 0.25s ease;
}

.navigation-card nav a span {
  min-width: 23px;
  color: var(--gold-500);
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  font-weight: 700;
}

.navigation-card nav a:hover {
  padding-left: 15px;
  background: var(--lavender-100);
  color: var(--purple-600);
}

/* ==========================================================
  BLOCOS DE PRIVACIDADE
========================================================== */
.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.privacy-block {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 25px;
  padding: 60px 0;
  border-bottom: 1px solid rgba(129, 68, 159, 0.12);
}

.section-number {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  color: var(--gold-500);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.section-text h2 {
  margin-bottom: 18px;
  color: var(--purple-700);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  font-weight: 600;
}

.section-text p {
  margin-bottom: 16px;
  color: var(--text-light);
  font-size: 0.91rem;
}

.section-text strong {
  color: var(--purple-600);
  font-weight: 600;
}

/* ==========================================================
  CARDS
========================================================== */

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 30px 0;
}

.info-card {
  padding: 25px;
  border: 1px solid rgba(129, 68, 159, 0.1);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 15px;
  border-radius: 50%;
  background: var(--lavender-100);
  color: var(--purple-500);
}

.info-card h3 {
  margin-bottom: 7px;
  color: var(--purple-700);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
}

.info-card p {
  margin: 0;
  font-size: 0.77rem;
}

/* ==========================================================
  AVISOS
========================================================== */

.important-note {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold-400);
  border-radius: 0 15px 15px 0;
  background: linear-gradient(
    90deg,
    rgba(234, 217, 244, 0.55),
    rgba(255, 255, 255, 0.4)
  );
}

.important-note i {
  padding-top: 5px;
  color: var(--gold-500);
}

.important-note p {
  margin: 0;
  font-size: 0.8rem;
}

/* ==========================================================
  LISTA
========================================================== */

.privacy-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 25px 0;
  list-style: none;
}

.privacy-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.88rem;
}

.privacy-list i {
  flex-shrink: 0;
  margin-top: 6px;
  color: var(--gold-500);
  font-size: 0.7rem;
}

/* ==========================================================
  LEGAL BOX
========================================================== */

.legal-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 30px 0;
  padding: 25px;
  border: 1px solid rgba(196, 147, 63, 0.25);
  border-radius: var(--radius-medium);
  background: linear-gradient(
    135deg,
    rgba(234, 217, 244, 0.65),
    rgba(255, 255, 255, 0.75)
  );
}

.legal-box > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--purple-600);
  color: white;
}

.legal-box p {
  margin: 0;
  font-size: 0.82rem;
}

/* ==========================================================
  COOKIES
========================================================== */

.cookie-card {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  padding: 28px;
  border-radius: var(--radius-medium);
  background: var(--purple-700);
  color: white;
  box-shadow: 0 18px 45px rgba(81, 37, 101, 0.18);
}

.cookie-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #f0c875;
  font-size: 1.2rem;
}

.cookie-card h3 {
  margin-bottom: 7px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.cookie-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.small-text {
  font-size: 0.74rem !important;
  opacity: 0.85;
}

/* ==========================================================
  SEGURANÇA
========================================================== */

.security-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  padding: 25px;
  border-radius: var(--radius-medium);
  background: linear-gradient(
    120deg,
    rgba(216, 188, 232, 0.55),
    rgba(255, 255, 255, 0.7)
  );
}

.security-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--purple-600);
  color: white;
  font-size: 1.2rem;
}

.security-highlight strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
}

.security-highlight p {
  margin: 0;
  font-size: 0.78rem;
}

/* ==========================================================
  DIREITOS
========================================================== */

.rights-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 30px 0;
}

.rights-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 17px;
  border: 1px solid rgba(129, 68, 159, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.65);
}

.rights-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--lavender-100);
  color: var(--purple-600);
  font-size: 0.62rem;
  font-weight: 700;
}

.rights-list p {
  margin: 0;
  font-size: 0.74rem;
}

/* ==========================================================
  CONTATO
========================================================== */

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
  padding: 25px;
  border: 1px solid rgba(129, 68, 159, 0.1);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card);
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 13px;
}

.contact-item > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--lavender-100);
  color: var(--purple-600);
}

.contact-item small {
  display: block;
  color: var(--text-light);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-item strong {
  display: block;
  color: var(--purple-700);
  font-size: 0.76rem;
  font-weight: 600;
  word-break: break-word;
}

/* ==========================================================
  ENCERRAMENTO
========================================================== */

.privacy-ending {
  position: relative;
  margin-top: 70px;
  padding: 65px 30px;
  overflow: hidden;
  text-align: center;
  border-radius: var(--radius-large);
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  color: white;
  box-shadow: 0 25px 60px rgba(81, 37, 101, 0.2);
}

.privacy-ending::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: -180px;
  right: -100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.ending-flower {
  margin-bottom: 15px;
  color: #edc976;
  font-size: 2.3rem;
  animation: gentleFloat 4s ease-in-out infinite;
}

.privacy-ending h2 {
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
}

.privacy-ending p {
  max-width: 500px;
  margin: 0 auto 25px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.privacy-ending a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  transition: 0.3s ease;
}

.privacy-ending a:hover {
  background: white;
  color: var(--purple-700);
  transform: translateY(-2px);
}

/* ==========================================================
  FOOTER
========================================================== */

.privacy-footer {
  padding: 30px 20px;
  border-top: 1px solid rgba(129, 68, 159, 0.1);
  text-align: center;
  background: rgba(255, 255, 255, 0.55);
}

.privacy-footer p {
  margin-bottom: 6px;
  color: var(--text-light);
  font-size: 0.68rem;
}

.privacy-footer a {
  color: var(--purple-600);
  font-size: 0.7rem;
  font-weight: 600;
}

/* ==========================================================
  ANIMAÇÕES
========================================================== */

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatingGlow {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, 20px);
  }
}

@keyframes rotateFlower {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ==========================================================
  RESPONSIVIDADE
========================================================== */
@media (max-width: 900px) {
  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .privacy-navigation {
    position: relative;
    top: auto;
  }

  .navigation-card nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .privacy-block {
    grid-template-columns: 42px 1fr;
    gap: 15px;
  }
}

@media (max-width: 650px) {
  .header-inner {
    width: calc(100% - 28px);
    min-height: 68px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .back-home {
    padding: 8px 13px;
    font-size: 0.7rem;
  }

  .privacy-hero {
    padding: 80px 18px 70px;
  }

  .privacy-section {
    width: calc(100% - 28px);
  }

  .navigation-card nav {
    grid-template-columns: 1fr;
  }

  .privacy-block {
    display: block;
    padding: 45px 0;
  }

  .section-number {
    justify-content: flex-start;
    margin-bottom: 7px;
    padding: 0;
  }

  .info-grid,
  .rights-list,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .cookie-card,
  .security-highlight {
    align-items: flex-start;
  }

  .privacy-ending {
    padding: 50px 20px;
  }
  .flower {
    opacity: 0.45;
  }
}
