/*
Theme Name: Giga Space Park
Theme URI: https://gigaspacepark.com.br
Author: Giga Space Park
Author URI: https://gigaspacepark.com.br
Description: Tema oficial do Giga Space Park – Playgrounds que transformam espaços em experiências lucrativas.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: giga-space-park
Tags: one-page, custom-colors, custom-logo, full-width-template, translation-ready
*/

/* =========================================================
   IMPORTS
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Nunito:wght@400;500;600;700;800&display=swap');

/* =========================================================
   CSS VARIABLES (Design Tokens)
   ========================================================= */
:root {
  --background: 48 100% 98%;
  --foreground: 215 50% 15%;
  --card: 0 0% 100%;
  --card-foreground: 215 50% 15%;
  --primary: 215 60% 18%;
  --primary-foreground: 0 0% 100%;
  --secondary: 188 65% 32%;
  --secondary-foreground: 0 0% 100%;
  --muted: 45 30% 94%;
  --muted-foreground: 215 20% 45%;
  --accent: 38 90% 55%;
  --accent-foreground: 215 60% 18%;
  --destructive: 0 84.2% 60.2%;
  --border: 40 20% 88%;
  --radius: 1.25rem;

  /* Brand tokens */
  --navy: 215 60% 18%;
  --navy-light: 215 45% 28%;
  --teal: 188 65% 32%;
  --teal-light: 188 55% 45%;
  --amber: 38 90% 55%;
  --amber-light: 40 92% 68%;
  --sky: 200 80% 92%;
  --green: 155 65% 48%;
  --coral: 12 80% 62%;
  --pink: 340 75% 65%;
  --purple: 265 55% 55%;

  --shadow-card: 0 4px 20px -4px hsl(215 60% 18% / 0.08);
  --shadow-elevated: 0 20px 50px -12px hsl(215 60% 18% / 0.15);
  --shadow-glow-teal: 0 8px 30px -6px hsl(188 65% 32% / 0.35);
  --shadow-glow-amber: 0 8px 30px -6px hsl(38 90% 55% / 0.4);
  --shadow-playful: 6px 6px 0px hsl(215 60% 18%);

  --gradient-navy: linear-gradient(135deg, hsl(215 60% 18%), hsl(215 45% 25%));
  --gradient-teal: linear-gradient(135deg, hsl(188 65% 32%), hsl(188 55% 45%));
  --gradient-amber: linear-gradient(135deg, hsl(38 90% 55%), hsl(40 92% 68%));
  --gradient-hero: linear-gradient(160deg, hsl(215 60% 18%) 0%, hsl(215 50% 22%) 40%, hsl(188 55% 30%) 100%);
  --gradient-fun: linear-gradient(135deg, hsl(38 90% 55%), hsl(12 80% 62%), hsl(340 75% 65%));
}

/* =========================================================
   BASE RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Baloo 2', cursive;
  line-height: 1.1;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =========================================================
   UTILITIES
   ========================================================= */
.text-gradient {
  background: linear-gradient(135deg, hsl(var(--amber)), hsl(var(--coral)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-fun {
  background: linear-gradient(135deg, hsl(var(--amber)), hsl(var(--pink)), hsl(var(--purple)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-teal {
  background: linear-gradient(135deg, hsl(var(--teal)), hsl(var(--teal-light)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-navy    { color: hsl(var(--navy)); }
.text-teal    { color: hsl(var(--teal)); }
.text-amber   { color: hsl(var(--amber)); }
.text-coral   { color: hsl(var(--coral)); }
.text-muted   { color: hsl(var(--muted-foreground)); }
.text-white   { color: #fff; }

.shadow-playful  { box-shadow: var(--shadow-playful); }
.shadow-card     { box-shadow: var(--shadow-card); }
.shadow-elevated { box-shadow: var(--shadow-elevated); }

.glass {
  background: hsl(0 0% 100% / 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid hsl(0 0% 100% / 0.12);
}
.bg-mesh {
  background-image:
    radial-gradient(at 40% 20%, hsl(188 65% 32% / 0.08) 0px, transparent 50%),
    radial-gradient(at 80% 0%, hsl(38 90% 55% / 0.06) 0px, transparent 50%),
    radial-gradient(at 0% 50%, hsl(215 60% 18% / 0.05) 0px, transparent 50%);
}
.bg-confetti {
  background-image:
    radial-gradient(circle at 20% 30%, hsl(var(--amber) / 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, hsl(var(--teal) / 0.06) 0%, transparent 40%),
    radial-gradient(circle at 50% 10%, hsl(var(--coral) / 0.05) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, hsl(var(--pink) / 0.04) 0%, transparent 40%);
}
.rounded-3xl { border-radius: 1.75rem; }
.rounded-4xl { border-radius: 2.5rem; }

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(-3deg); }
  50%       { transform: rotate(3deg); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes bounceY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.animate-float   { animation: float 3s ease-in-out infinite; }
.animate-wiggle  { animation: wiggle 2s ease-in-out infinite; }
.animate-fadeInUp    { animation: fadeInUp 0.7s ease-out forwards; }
.animate-fadeInLeft  { animation: fadeInLeft 0.7s ease-out forwards; }
.animate-fadeInRight { animation: fadeInRight 0.7s ease-out forwards; }

/* Intersection observer triggered animations */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* =========================================================
   NAVBAR
   ========================================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.5s ease;
}
#site-header.scrolled {
  background: hsl(0 0% 100% / 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px hsl(215 60% 18% / 0.1);
  border-bottom: 1px solid hsl(var(--border));
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.navbar-logo { height: 64px; border-radius: 12px; transition: transform 0.3s; }
.navbar-logo:hover { transform: scale(1.05); }
.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar-links a {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s;
}
#site-header:not(.scrolled) .navbar-links a { color: rgba(255,255,255,0.8); }
#site-header.scrolled .navbar-links a { color: hsl(var(--navy)); }
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  border-radius: 999px;
  background: hsl(var(--teal));
  transition: width 0.3s;
}
#site-header:not(.scrolled) .navbar-links a::after { background: hsl(var(--amber)); }
.navbar-links a:hover::after { width: 100%; }
.navbar-links a:hover { color: hsl(var(--teal)); }
#site-header:not(.scrolled) .navbar-links a:hover { color: hsl(var(--amber)); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-radius: 999px;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 0.95rem;
  color: hsl(var(--accent-foreground));
  background: var(--gradient-amber);
  box-shadow: var(--shadow-playful);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.btn-cta:hover { transform: scale(1.05); }
.btn-cta svg { width: 16px; height: 16px; }

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: white;
}
#site-header.scrolled .navbar-toggle { color: hsl(var(--navy)); }

.mobile-menu {
  display: none;
  background: hsl(0 0% 100% / 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid hsl(var(--border));
  padding: 1.5rem 0;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 2rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: hsl(var(--navy));
  transition: color 0.2s;
}
.mobile-menu a:hover { color: hsl(var(--teal)); }

@media (max-width: 767px) {
  .navbar-links { display: none; }
  .navbar-toggle { display: block; }
}

/* =========================================================
   HERO SECTION
   ========================================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.15;
  mix-blend-mode: luminosity;
}
.hero-inner {
  position: relative;
  z-index: 10;
  padding: 6rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content {}
.hero-logo {
  width: 200px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 30px rgba(59,130,246,0.5));
  border-radius: 24px;
  transition: transform 0.3s;
}
.hero-logo:hover { transform: scale(1.05); }
.hero-h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: 1.25rem;
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  color: hsl(var(--teal-light));
  margin-bottom: 0.75rem;
}
.hero-desc {
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  background: hsl(0 0% 100% / 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid hsl(0 0% 100% / 0.12);
  transition: background 0.3s, transform 0.2s;
}
.btn-secondary:hover { background: hsl(0 0% 100% / 0.15); transform: scale(1.05); }
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1.1rem;
  color: hsl(var(--accent-foreground));
  background: var(--gradient-amber);
  box-shadow: var(--shadow-playful);
  transition: transform 0.2s;
}
.btn-primary-hero:hover { transform: scale(1.05) translateY(-2px); }
.btn-primary-hero svg, .btn-primary-hero img { width: 20px; height: 20px; }

.hero-image-wrap {
  position: relative;
}
.hero-main-img {
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  border: 4px solid hsl(var(--amber) / 0.3);
  transform: rotate(2deg);
  transition: transform 0.5s;
}
.hero-main-img:hover { transform: rotate(0deg); }
.hero-main-img img { width: 100%; height: 520px; object-fit: cover; }
.hero-main-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(215 60% 18% / 0.5), transparent);
}
.hero-badge {
  position: absolute;
  background: white;
  border-radius: 1.75rem;
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-playful);
}
.hero-badge-years {
  bottom: -24px;
  left: -24px;
  animation: bounceY 3s ease-in-out infinite;
}
.hero-badge-years .num {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 2rem;
  color: hsl(var(--amber));
}
.hero-badge-years .label {
  font-weight: 700;
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
}
.hero-badge-br {
  top: -20px;
  right: -20px;
  animation: bounceY 4s ease-in-out infinite 1s;
}
.hero-badge-br span {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1rem;
  color: hsl(var(--navy));
}

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
}
.hero-wave svg { width: 100%; height: 80px; display: block; }
@media (min-width: 768px) { .hero-wave svg { height: 120px; } }

/* Floating decorative shapes */
.floating-shape {
  position: absolute;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

@media (max-width: 1023px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
}

/* =========================================================
   PROBLEM SECTION
   ========================================================= */
#problem {
  padding: 7rem 0;
  background: hsl(var(--background));
  position: relative;
  overflow: hidden;
}
.section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.badge-coral { background: hsl(var(--coral) / 0.1); color: hsl(var(--coral)); }
.badge-teal  { background: hsl(var(--teal) / 0.1); color: hsl(var(--teal)); }
.badge-amber { background: hsl(var(--accent) / 0.1); color: hsl(var(--amber)); }
.badge-glass { background: hsl(0 0% 100% / 0.08); backdrop-filter: blur(12px); border: 1px solid hsl(0 0% 100% / 0.12); color: hsl(var(--amber)); }

.section-title {
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 800;
  color: hsl(var(--navy));
  line-height: 1.1;
  margin-bottom: 1rem;
}
.section-title.light { color: white; }
.section-subtitle {
  font-size: 1.25rem;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  color: hsl(var(--teal));
  margin-bottom: 1rem;
}
.section-desc {
  color: hsl(var(--muted-foreground));
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 4rem; }

.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 4rem;
}
.problem-card {
  background: white;
  border-radius: 1.75rem;
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  transition: all 0.3s;
}
.problem-card:hover {
  box-shadow: var(--shadow-playful);
  transform: translateY(-8px);
  border-color: hsl(var(--accent) / 0.2);
}
.problem-card .emoji { font-size: 2.5rem; margin-bottom: 0.75rem; }
.problem-card .label {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}
.problem-card .title {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  color: hsl(var(--navy));
  font-size: 1rem;
}

.arrow-center {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}
.arrow-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gradient-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-playful);
  animation: bounceY 2s ease-in-out infinite;
}
.arrow-btn svg { width: 28px; height: 28px; color: white; }

.solution-box {
  border-radius: 2.5rem;
  padding: 2.5rem;
  text-align: center;
  background: var(--gradient-navy);
  position: relative;
  overflow: hidden;
}
.solution-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(at 40% 20%, hsl(188 65% 32% / 0.08) 0px, transparent 50%),
    radial-gradient(at 80% 0%, hsl(38 90% 55% / 0.06) 0px, transparent 50%);
  opacity: 0.4;
}
.solution-box h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 2.5rem;
  position: relative;
}
.solution-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
  position: relative;
}
.solution-card {
  background: rgba(255,255,255,0.1);
  border-radius: 1.75rem;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}
.solution-card:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.05) translateY(-4px);
}
.solution-card .emoji { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }
.solution-card p {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  color: white;
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
#about {
  padding: 7rem 0;
  background: hsl(var(--background));
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 7rem;
}
.about-content p {
  color: hsl(var(--muted-foreground));
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.about-content strong { color: hsl(var(--navy)); }
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-img-col { display: flex; flex-direction: column; gap: 1rem; }
.about-img-col:last-child { margin-top: 2rem; }
.about-img {
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-playful);
  transition: transform 0.3s;
}
.about-img:hover { transform: scale(1.02) rotate(-1deg); }
.about-img img { width: 100%; height: 224px; object-fit: cover; }
.about-img.ring-amber { border: 2px solid hsl(var(--amber) / 0.2); }
.about-img.ring-teal  { border: 2px solid hsl(var(--teal) / 0.2); }
.about-img.ring-coral { border: 2px solid hsl(var(--coral) / 0.2); }
.about-img.ring-green { border: 2px solid hsl(var(--green) / 0.2); }

.timeline-box {
  border-radius: 2.5rem;
  padding: 4rem;
  background: var(--gradient-navy);
  position: relative;
  overflow: hidden;
}
.timeline-box h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: white;
  text-align: center;
  margin-bottom: 3.5rem;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.timeline-item { text-align: center; position: relative; }
.timeline-icon {
  width: 80px; height: 80px;
  border-radius: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
.timeline-icon:hover { transform: scale(1.15) rotate(8deg); }
.timeline-icon .ti-emoji { font-size: 2rem; }
.timeline-year {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: hsl(var(--amber));
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}
.timeline-name {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.timeline-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.5;
}
.timeline-line {
  position: absolute;
  top: 40px;
  left: 60%;
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, rgba(255,255,255,0.3), transparent);
}

@media (max-width: 767px) {
  .about-grid { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }
  .timeline-line { display: none; }
  .timeline-box { padding: 2rem; }
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
#services {
  padding: 7rem 0;
  background: var(--gradient-navy);
  position: relative;
  overflow: hidden;
}
#services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(at 40% 20%, hsl(188 65% 32% / 0.08) 0px, transparent 50%),
    radial-gradient(at 80% 0%, hsl(38 90% 55% / 0.06) 0px, transparent 50%);
  opacity: 0.4;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-bottom: 6rem;
}
.step-item { text-align: center; }
.step-icon {
  width: 64px; height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border: 2px solid rgba(255,255,255,0.1);
  transition: transform 0.3s;
}
.step-icon:hover { transform: scale(1.15) rotate(8deg); }
.step-icon svg { width: 28px; height: 28px; color: white; }
.step-num {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  color: hsl(var(--amber));
  font-size: 0.875rem;
}
.step-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  color: white;
  font-size: 0.875rem;
  margin: 0.25rem 0;
}
.step-desc {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
}

.projects-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: white;
  text-align: center;
  margin-bottom: 0.75rem;
}
.projects-desc {
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}
.project-card {
  border-radius: 2.5rem;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}
.project-card:hover { transform: translateY(-8px) scale(1.02); }
.project-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.project-card:hover .project-img img { transform: scale(1.1); }
.project-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  background: hsl(var(--amber));
  color: hsl(var(--accent-foreground));
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 0.75rem;
  box-shadow: var(--shadow-playful);
}
.project-label {
  padding: 1.25rem;
  text-align: center;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  color: white;
  font-size: 1.1rem;
}

.diferenciais-title {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  text-align: center;
  margin-bottom: 2.5rem;
}
.diferenciais-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.diferencial-tag {
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  color: white;
  font-size: 0.875rem;
  box-shadow: var(--shadow-playful);
  transition: transform 0.2s;
}
.diferencial-tag:hover { transform: scale(1.1) rotate(2deg); }

@media (max-width: 1023px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .projects-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   GALLERY SECTION
   ========================================================= */
#gallery {
  padding: 7rem 0;
  background: hsl(var(--background));
  position: relative;
  overflow: hidden;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 1rem;
}
.gallery-item {
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.5s;
  cursor: pointer;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-playful); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.wide  { grid-column: span 2; }

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item.large { grid-column: span 2; }
  .gallery-item.wide  { grid-column: span 2; }
}

/* =========================================================
   SOCIAL PROOF SECTION
   ========================================================= */
#results {
  padding: 7rem 0;
  background: hsl(var(--background));
  position: relative;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 5rem;
}
.stat-card {
  background: white;
  border-radius: 1.75rem;
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  transition: all 0.3s;
}
.stat-card:hover {
  box-shadow: var(--shadow-playful);
  transform: translateY(-8px);
  border-color: hsl(var(--accent) / 0.2);
}
.stat-card .stat-emoji { font-size: 2rem; margin-bottom: 0.5rem; }
.stat-card .stat-value {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 2rem;
  color: hsl(var(--navy));
}
.stat-card .stat-label {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

.results-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.results-img-wrap {
  position: relative;
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-playful);
  border: 4px solid hsl(var(--amber) / 0.2);
}
.results-img-wrap img { width: 100%; height: 420px; object-fit: cover; transition: transform 0.7s; }
.results-img-wrap:hover img { transform: scale(1.05); }
.results-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(215 60% 18% / 0.8), hsl(215 60% 18% / 0.2), transparent);
}
.results-img-caption {
  position: absolute;
  bottom: 2rem; left: 2rem; right: 2rem;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
  line-height: 1.2;
}

.testimonials { display: flex; flex-direction: column; gap: 1.25rem; }
.testimonial-card {
  background: white;
  border-radius: 1.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  position: relative;
  transition: all 0.3s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-playful);
  border-color: hsl(var(--accent) / 0.2);
}
.testimonial-card .quote-icon {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  color: hsl(var(--accent) / 0.2);
}
.stars { display: flex; gap: 4px; margin-bottom: 0.75rem; }
.stars svg { width: 16px; height: 16px; color: hsl(var(--amber)); fill: hsl(var(--amber)); }
.testimonial-text {
  color: hsl(var(--foreground));
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  color: white;
  font-size: 0.875rem;
  box-shadow: var(--shadow-playful);
  flex-shrink: 0;
}
.author-name {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  color: hsl(var(--navy));
}
.author-role {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

@media (max-width: 1023px) {
  .results-layout { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   PRICING SECTION
   ========================================================= */
#pricing {
  padding: 7rem 0;
  background: hsl(var(--background));
  position: relative;
  overflow: hidden;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-card {
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
  position: relative;
}
.pricing-card:hover { transform: translateY(-8px); }
.pricing-card.featured {
  transform: scale(1.04);
  box-shadow: var(--shadow-glow-amber);
  z-index: 1;
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-8px); }

.pricing-card.regular { background: white; }
.pricing-card.featured { background: var(--gradient-navy); }

.popular-badge {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: center;
}
.popular-badge span {
  padding: 0.5rem 1.25rem;
  border-radius: 0 0 1rem 1rem;
  background: var(--gradient-amber);
  color: hsl(var(--accent-foreground));
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 0.75rem;
  box-shadow: var(--shadow-playful);
  display: flex;
  align-items: center;
  gap: 6px;
}
.popular-badge svg { width: 14px; height: 14px; }

.pricing-img { height: 192px; overflow: hidden; position: relative; }
.pricing-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.pricing-card:hover .pricing-img img { transform: scale(1.1); }
.pricing-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(215 60% 18% / 0.6), transparent);
}

.pricing-body { padding: 1.75rem; }
.pricing-name {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.regular .pricing-name { color: hsl(var(--navy)); }
.featured .pricing-name { color: hsl(var(--amber)); }

.pricing-desc { font-size: 0.95rem; margin-bottom: 1.25rem; }
.regular .pricing-desc { color: hsl(var(--muted-foreground)); }
.featured .pricing-desc { color: rgba(255,255,255,0.5); }

.pricing-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
}
.regular .pricing-feature { color: hsl(var(--foreground)); }
.featured .pricing-feature { color: rgba(255,255,255,0.8); }

.feature-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-check svg { width: 12px; height: 12px; color: white; }

.pricing-divider { margin-bottom: 1.25rem; padding-top: 1.25rem; }
.regular .pricing-divider { border-top: 1px solid hsl(var(--border)); }
.featured .pricing-divider { border-top: 1px solid rgba(255,255,255,0.1); }

.pricing-from {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.regular .pricing-from { color: hsl(var(--muted-foreground)); }
.featured .pricing-from { color: rgba(255,255,255,0.4); }

.pricing-price {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 1.25rem;
}
.regular .pricing-price { color: hsl(var(--navy)); }
.featured .pricing-price { color: hsl(var(--amber)); }

.btn-pricing {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.875rem 1.5rem;
  border-radius: 1rem;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 0.875rem;
  transition: transform 0.2s;
  cursor: pointer;
  border: none;
}
.btn-pricing:hover { transform: scale(1.03); }
.btn-pricing.regular-btn {
  background: hsl(var(--navy));
  color: white;
}
.btn-pricing.regular-btn:hover { background: hsl(var(--navy-light)); }
.btn-pricing.featured-btn {
  background: var(--gradient-amber);
  color: hsl(var(--accent-foreground));
  box-shadow: var(--shadow-playful);
}
.btn-pricing svg { width: 16px; height: 16px; }

@media (max-width: 767px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
}

/* =========================================================
   CTA SECTION
   ========================================================= */
#cta {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(at 40% 20%, hsl(188 65% 32% / 0.08) 0px, transparent 50%),
    radial-gradient(at 80% 0%, hsl(38 90% 55% / 0.06) 0px, transparent 50%);
  opacity: 0.5;
}
.cta-inner {
  position: relative;
  z-index: 10;
  text-align: center;
}
.cta-logo {
  width: 160px;
  margin: 0 auto 2.5rem;
  filter: drop-shadow(0 0 25px rgba(59,130,246,0.4));
  border-radius: 1.25rem;
  transition: transform 0.3s;
}
.cta-logo:hover { transform: scale(1.08) rotate(3deg); }
.cta-h2 {
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.cta-tagline {
  font-size: 1.25rem;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  color: hsl(var(--teal-light));
  margin-bottom: 1rem;
}
.cta-desc {
  color: rgba(255,255,255,0.4);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.btn-cta-big {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 999px;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.25rem;
  color: hsl(var(--accent-foreground));
  background: var(--gradient-amber);
  box-shadow: var(--shadow-playful);
  transition: transform 0.2s;
}
.btn-cta-big:hover { transform: scale(1.08) translateY(-4px); }
.btn-cta-big svg { width: 24px; height: 24px; }

/* =========================================================
   FOOTER
   ========================================================= */
#site-footer {
  position: relative;
  overflow: hidden;
  background: var(--gradient-navy);
}
.footer-inner {
  padding: 4rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 10;
}
.footer-logo { height: 64px; border-radius: 12px; margin-bottom: 1.25rem; box-shadow: 0 0 20px rgba(59,130,246,0.3); }
.footer-tagline { color: rgba(255,255,255,0.4); font-size: 0.875rem; margin-bottom: 1.5rem; line-height: 1.6; }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 44px; height: 44px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}
.social-link:hover { color: hsl(var(--amber)); border-color: hsl(var(--amber) / 0.3); box-shadow: var(--shadow-glow-amber); }
.social-link svg { width: 20px; height: 20px; }

.footer-col h4 {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav a {
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  font-size: 0.875rem;
  transition: color 0.3s;
}
.footer-nav a:hover { color: hsl(var(--amber)); }
.footer-contact { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact a, .footer-contact div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  font-size: 0.875rem;
  transition: color 0.3s;
}
.footer-contact a:hover { color: hsl(var(--amber)); }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 0;
  text-align: center;
  position: relative;
  z-index: 10;
}
.footer-bottom p {
  color: rgba(255,255,255,0.25);
  font-size: 0.875rem;
}
.footer-bottom .heart { color: hsl(var(--amber)); }

@media (max-width: 767px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* =========================================================
   WORDPRESS PAGE/POST CONTENT
   ========================================================= */
.site-content { padding: 6rem 0 4rem; }
.entry-content {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: hsl(var(--foreground));
}
.entry-content h1,
.entry-content h2,
.entry-content h3 { color: hsl(var(--navy)); margin: 2rem 0 1rem; }
.entry-content p { margin-bottom: 1.25rem; }
.entry-content a { color: hsl(var(--teal)); text-decoration: underline; }
.entry-content img { border-radius: 1.25rem; margin: 1.5rem 0; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.entry-content ul li { list-style: disc; margin-bottom: 0.5rem; }
.entry-content ol li { list-style: decimal; margin-bottom: 0.5rem; }

/* Admin bar adjustment */
.admin-bar #site-header { top: 32px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1023px) {
  .container { padding: 0 1.5rem; }
}
@media (max-width: 767px) {
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 2rem; }
  .solution-cards { grid-template-columns: repeat(2, 1fr); }
  .hero-h1 { font-size: 2.25rem; }
  .timeline-box { padding: 2rem; }
}
