/*
Theme Name: Drika Indica Landing Page
Theme URI: https://example.com/
Author: OpenAI
Author URI: https://openai.com/
Description: Tema WordPress de página única para a landing page Drika Indica.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: drika-indica
*/

:root {
  --bg-1: #f7fbff;
  --bg-2: #edf6ff;
  --bg-3: #f9f3ea;
  --card: rgba(255, 255, 255, 0.9);
  --line: rgba(116, 176, 224, 0.18);
  --blue: #74b8e6;
  --blue-strong: #5ea8dc;
  --beige: #d5b089;
  --beige-strong: #c39a6e;
  --text: #7f6b57;
  --green-1: #25d366;
  --green-2: #1ebe5d;
  --green-3: #17a74f;
  --shadow: 0 24px 60px rgba(116, 176, 224, 0.18);
  --pill: 999px;
  --radius-xl: 34px;
  --radius-lg: 22px;
}

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

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: 'Nunito', system-ui, sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(116, 184, 230, 0.28), transparent 18%),
    radial-gradient(circle at 88% 14%, rgba(213, 176, 137, 0.22), transparent 18%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 52%, var(--bg-3) 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.card {
  position: relative;
  width: min(100%, 430px);
  min-height: min(92vh, 760px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 26px 24px 22px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.95) 0%, var(--card) 100%);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.55);
  pointer-events: none;
  z-index: -1;
}

.bg-circle,
.bg-heart {
  position: absolute;
  pointer-events: none;
  z-index: -2;
}

.bg-circle {
  border-radius: 999px;
  filter: blur(8px);
}

.bg-circle-top {
  width: 180px;
  height: 180px;
  top: -60px;
  right: -50px;
  background: radial-gradient(circle, rgba(116,184,230,.28), rgba(116,184,230,0) 72%);
}

.bg-circle-bottom {
  width: 170px;
  height: 170px;
  left: -50px;
  bottom: -40px;
  background: radial-gradient(circle, rgba(213,176,137,.26), rgba(213,176,137,0) 72%);
}

.bg-heart::before,
.bg-heart::after {
  content: "❤";
  position: absolute;
  font-size: 20px;
  opacity: .25;
}

.bg-heart-left::before {
  color: var(--blue);
  top: 72px;
  left: 28px;
}

.bg-heart-left::after {
  color: var(--beige);
  top: 128px;
  left: 50px;
}

.bg-heart-right::before {
  color: var(--blue);
  top: 80px;
  right: 30px;
}

.bg-heart-right::after {
  color: var(--beige);
  top: 138px;
  right: 52px;
}

.logo-wrap {
  display: flex;
  justify-content: center;
}

.logo {
  width: 164px;
  max-width: 58vw;
  height: auto;
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 28px rgba(116, 184, 230, 0.12);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 16px;
  border-radius: var(--pill);
  background: linear-gradient(90deg, rgba(116,184,230,.18), rgba(213,176,137,.18));
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .6px;
}

.card h1 {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-size: clamp(2.3rem, 7vw, 3.4rem);
  line-height: .88;
  color: var(--blue-strong);
  font-weight: 800;
}

.headline {
  max-width: 310px;
  font-size: clamp(1rem, 3.5vw, 1.18rem);
  line-height: 1.22;
  font-weight: 800;
  color: var(--beige-strong);
  text-wrap: balance;
}

.cta {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--pill);
  background: linear-gradient(180deg, var(--green-1) 0%, var(--green-2) 55%, var(--green-3) 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 28px rgba(37, 211, 102, 0.26);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  filter: brightness(.99);
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.32);
}

.pulse {
  animation: pulseButton 1.8s ease-in-out infinite;
}

@keyframes pulseButton {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

.cta-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.cta-icon svg {
  width: 100%;
  height: 100%;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.social {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  color: var(--blue-strong);
  box-shadow: 0 8px 18px rgba(116, 184, 230, 0.12);
  transition: transform .18s ease, color .18s ease, box-shadow .18s ease;
  text-decoration: none;
}

.social:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(116, 184, 230, 0.16);
}

.social-instagram:hover {
  color: #e1306c;
}

.social-facebook:hover {
  color: #1877f2;
}

.social svg {
  width: 21px;
  height: 21px;
}

.mini-text {
  max-width: 310px;
  font-size: .95rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--text);
}

.social-proof {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 24px);
  width: min(92vw, 360px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(116, 184, 230, 0.16);
  box-shadow: 0 14px 30px rgba(116, 184, 230, 0.14);
  color: var(--text);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
  z-index: 50;
}

.social-proof.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.social-proof-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-1);
  box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.12);
  flex-shrink: 0;
}

.social-proof p {
  font-size: .96rem;
  font-weight: 700;
}

.social-proof strong {
  color: var(--blue-strong);
}

.screen-reader-text {
  position: absolute;
  left: -9999px;
}

@media (max-width: 520px) {
  .screen {
    padding: 10px;
  }

  .card {
    min-height: calc(100vh - 20px);
    padding: 20px 18px 20px;
    gap: 12px;
  }

  .logo {
    width: 150px;
  }

  .eyebrow {
    font-size: 11px;
    min-height: 32px;
    padding: 8px 14px;
  }

  .headline {
    max-width: 290px;
  }

  .cta {
    min-height: 52px;
    font-size: 1rem;
  }

  .mini-text {
    font-size: .92rem;
  }

  .social-proof {
    bottom: 10px;
    width: min(94vw, 350px);
  }
}

@media (max-height: 740px) {
  .card {
    gap: 10px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .logo {
    width: 138px;
  }

  .card h1 {
    font-size: clamp(2rem, 6.7vw, 2.8rem);
  }

  .headline {
    font-size: .98rem;
  }

  .mini-text {
    font-size: .88rem;
  }

  .social {
    width: 42px;
    height: 42px;
  }
}
