/*
Theme Name: Toluja Go Landing
Theme URI: https://toluja.com
Author: Toluja
Description: Tema WordPress de landing page para o Toluja Go.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.6
Text Domain: toluja-go-landing
*/

:root {
  --bg-main: #f2f8ff;
  --bg-soft: #e9f3ff;
  --surface: #ffffff;
  --surface-alt: #f6fafe;
  --text: #0f1f35;
  --muted: #546781;
  --primary: #0a66ff;
  --primary-strong: #0048c9;
  --secondary: #00b7ff;
  --accent: #10d3a0;
  --border: #d7e6ff;
  --ok: #0ca66d;
  --danger: #bf3452;
  --shadow: 0 22px 55px rgba(14, 45, 95, 0.12);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 92% 3%, rgba(0, 183, 255, 0.16), transparent 28%),
    radial-gradient(circle at 7% 18%, rgba(16, 211, 160, 0.14), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, var(--bg-main) 45%, #f1f7ff 100%);
  line-height: 1.55;
}

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

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.toluja-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(247, 252, 255, 0.88);
  border-bottom: 1px solid rgba(10, 102, 255, 0.12);
}

.toluja-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 1rem;
}

.toluja-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.toluja-logo-image {
  width: 142px;
  max-width: 38vw;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(3, 73, 168, 0.14));
}

.toluja-logo-text {
  display: grid;
  gap: 0.06rem;
  line-height: 1.1;
}

.toluja-logo-text strong {
  font-size: 1.04rem;
  letter-spacing: 0.2px;
}

.toluja-logo-text small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22px;
  text-transform: uppercase;
}

.toluja-nav-links {
  display: flex;
  align-items: center;
  gap: 1.05rem;
}

.toluja-nav-links a {
  font-size: 0.94rem;
  color: #38506f;
  font-weight: 650;
}

.btn {
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.96rem;
  font-weight: 800;
  cursor: pointer;
  padding: 0.84rem 1.22rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 62%, #00379a 100%);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(10, 102, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(10, 102, 255, 0.36);
}

.btn-light {
  background: #ffffff;
  color: var(--primary-strong);
  border: 1px solid rgba(10, 102, 255, 0.34);
}

.hero {
  padding: 3.1rem 0 4.1rem;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 2rem;
  align-items: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(90deg, rgba(10, 102, 255, 0.14), rgba(16, 211, 160, 0.15));
  color: #0b4bb8;
  border: 1px solid rgba(10, 102, 255, 0.23);
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  font-weight: 780;
  font-size: 0.81rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.7rem);
  line-height: 1.05;
  margin: 1rem 0;
  letter-spacing: -0.8px;
  max-width: 12ch;
}

.hero p {
  color: var(--muted);
  font-size: 1.06rem;
  margin-bottom: 1.35rem;
  max-width: 58ch;
}

.hero-ctas {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.92rem;
  color: #244263;
  font-weight: 700;
}

.hero-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -90px -60px auto auto;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(0, 183, 255, 0.26), transparent 68%);
  pointer-events: none;
}

.hero-card img {
  width: 100%;
  border-radius: 12px;
  display: block;
  border: 1px solid #e2ecfb;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.95rem;
}

.metric {
  background: var(--surface-alt);
  border: 1px solid #d8e8ff;
  border-radius: 12px;
  padding: 0.72rem;
}

.metric strong {
  display: block;
  font-size: 1.08rem;
  color: #0d3f98;
}

.section {
  padding: 3.6rem 0;
}

.section h2 {
  font-size: clamp(1.55rem, 3.3vw, 2.55rem);
  margin: 0 0 0.82rem;
  letter-spacing: -0.3px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 66ch;
  margin: 0 0 2rem;
}

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

.benefit-card {
  background: linear-gradient(170deg, #ffffff 0%, #f4f9ff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.16rem;
  box-shadow: 0 10px 24px rgba(13, 66, 145, 0.08);
}

.benefit-card h3 {
  margin: 0.68rem 0 0.45rem;
  font-size: 1.07rem;
}

.benefit-card p {
  color: var(--muted);
  margin: 0;
}

.icon-pill {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(10, 102, 255, 0.18), rgba(0, 183, 255, 0.14));
  display: grid;
  place-items: center;
  color: #0847b6;
  font-size: 1.08rem;
  font-weight: 850;
}

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

.price-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.45rem;
  position: relative;
}

.price-card.featured {
  border: 2px solid #0a66ff;
  box-shadow: 0 18px 40px rgba(10, 102, 255, 0.2);
}

.badge {
  position: absolute;
  top: -12px;
  right: 14px;
  background: linear-gradient(145deg, #10d3a0, #1de1b0);
  color: #083a2c;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

.price-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.price {
  margin: 0.82rem 0;
  font-size: 2rem;
  font-weight: 900;
  color: #0a3f9a;
}

.price small {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}

.price-card ul {
  margin: 0 0 1.2rem;
  padding-left: 1rem;
  color: var(--muted);
}

.form-section {
  background: linear-gradient(155deg, #0a3eaa, #002f86 55%, #00367e 100%);
  color: #ebf3ff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  box-shadow: 0 22px 52px rgba(0, 57, 163, 0.3);
}

.form-section h2 {
  margin: 0 0 0.7rem;
}

.form-section p {
  margin: 0;
  color: #c6dcff;
}

.lead-form {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(199, 225, 255, 0.32);
  border-radius: 14px;
  padding: 1rem;
}

.lead-form label {
  display: block;
  font-size: 0.86rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.98);
  color: #17365d;
  border-radius: 10px;
  padding: 0.72rem 0.78rem;
  margin-bottom: 0.8rem;
  font: inherit;
}

.lead-form textarea {
  min-height: 95px;
  resize: vertical;
}

.notice {
  border-radius: 10px;
  padding: 0.62rem 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.notice.ok {
  background: rgba(19, 201, 112, 0.16);
  border: 1px solid rgba(56, 213, 136, 0.55);
}

.notice.error {
  background: rgba(255, 108, 124, 0.16);
  border: 1px solid rgba(255, 120, 138, 0.5);
}

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

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 8px 18px rgba(10, 63, 154, 0.07);
}

.faq-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.footer {
  border-top: 1px solid rgba(10, 102, 255, 0.15);
  margin-top: 3rem;
  padding: 1.2rem 0;
  color: #4b6685;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .hero-wrap,
  .benefits,
  .pricing,
  .form-section,
  .faq {
    grid-template-columns: 1fr;
  }

  .toluja-nav-links {
    display: none;
  }

  .hero h1 {
    max-width: none;
  }

  .toluja-logo-image {
    width: 120px;
  }
}
