/*
Theme Name: Elen Leal Psicóloga
Theme URI: https://elenleal.lovable.app
Author: Elen Leal
Author URI: https://instagram.com/elenleal.psi
Description: Tema personalizado para o site da Psicóloga Elen Leal - Atendimento especializado em TDAH, crianças, adolescentes e adultos.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: elen-leal
*/

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

* {
  margin: 0;
  padding: 0;
}

:root {
  /* Cores principais - Paleta terrosa (idêntica ao React) */
  --background: hsl(40, 33%, 98%);
  --foreground: hsl(30, 15%, 20%);
  --card: hsl(40, 30%, 97%);
  --card-foreground: hsl(30, 15%, 20%);
  --primary: hsl(18, 37%, 50%);
  --primary-foreground: hsl(40, 33%, 98%);
  --secondary: hsl(35, 30%, 90%);
  --secondary-foreground: hsl(53, 18%, 46%);
  --muted: hsl(35, 20%, 92%);
  --muted-foreground: hsl(30, 10%, 45%);
  --accent: hsl(35, 40%, 85%);
  --accent-foreground: hsl(34, 18%, 30%);
  --border: hsl(35, 25%, 88%);
  --ring: hsl(30, 25%, 35%);
  
  /* Cores customizadas */
  --warm-beige: hsl(35, 35%, 92%);
  --cream: hsl(40, 40%, 96%);
  --soft-brown: hsl(30, 20%, 40%);
  --golden-accent: hsl(38, 50%, 65%);
  --terracotta: hsl(25, 35%, 55%);
  
  --radius: 0.75rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

/* ========================================
   TIPOGRAFIA
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
}

h1 {
  font-size: clamp(1.875rem, 5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
}

h3 {
  font-size: clamp(1.125rem, 3vw, 1.25rem);
}

p {
  color: var(--muted-foreground);
}

.text-primary {
  color: var(--primary);
}

.text-center {
  text-align: center;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

/* ========================================
   CONTAINERS E UTILITÁRIOS
   ======================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.hidden {
  display: none !important;
}

.lg-flex {
  display: none;
}

@media (min-width: 1024px) {
  .lg-flex {
    display: inline-flex;
  }
}

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsla(40, 33%, 98%, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo img {
  height: 40px;
  width: auto;
}

@media (min-width: 768px) {
  .site-logo img {
    height: 48px;
  }
}

.site-logo-text {
  display: flex;
  flex-direction: column;
}

.site-logo-text span:first-child {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

.site-logo-subtitle {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Navegação Desktop */
.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
  color: var(--foreground);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--muted-foreground);
  transition: all 0.2s ease;
}

.social-link:hover {
  color: var(--primary);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: hsl(18, 37%, 45%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-lg svg {
  width: 20px;
  height: 20px;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid hsla(18, 37%, 50%, 0.3);
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: hsla(18, 37%, 50%, 0.05);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--background);
  padding: 1.5rem;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 40;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.125rem;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--primary);
}

.mobile-menu-footer {
  margin-top: 2rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: var(--primary);
}

.contact-link svg {
  width: 16px;
  height: 16px;
}

/* ========================================
   HERO SECTION - SPLIT SCREEN
   ======================================== */
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    hsla(40, 33%, 98%, 0.95) 0%,
    hsla(40, 33%, 98%, 0.8) 50%,
    hsla(40, 33%, 98%, 0.4) 100%
  );
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0 3rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    flex-direction: row;
    gap: 3rem;
    padding: 3rem 0 4rem;
  }
}

.hero-content {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: hsla(35, 40%, 85%, 0.8);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--accent-foreground);
  margin-bottom: 1.5rem;
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-description {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 560px;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .hero-description {
    margin-left: 0;
    margin-right: auto;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-cta {
    justify-content: flex-start;
  }
}

/* Hero Image Side */
.hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-image-wrapper {
    justify-content: flex-end;
  }
}

.hero-photo-container {
  position: relative;
}

/* Decorative blobs behind photo */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.hero-blob-1 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18rem;
  height: 18rem;
  background: linear-gradient(to bottom right, var(--accent), var(--warm-beige), hsla(38, 50%, 65%, 0.3));
  animation: blob 7s infinite;
}

@media (min-width: 768px) {
  .hero-blob-1 {
    width: 20rem;
    height: 20rem;
  }
}

@media (min-width: 1024px) {
  .hero-blob-1 {
    width: 24rem;
    height: 24rem;
  }
}

.hero-blob-2 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16rem;
  height: 16rem;
  background: linear-gradient(to top right, var(--cream), hsla(35, 40%, 85%, 0.5));
  animation: blob 7s infinite;
  animation-delay: 2s;
}

@media (min-width: 768px) {
  .hero-blob-2 {
    width: 18rem;
    height: 18rem;
  }
}

@media (min-width: 1024px) {
  .hero-blob-2 {
    width: 20rem;
    height: 20rem;
  }
}

.hero-photo {
  position: relative;
  z-index: 10;
  width: 24rem;
  height: auto;
  filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.18));
}

@media (min-width: 768px) {
  .hero-photo {
    width: 27rem;
  }
}

@media (min-width: 1024px) {
  .hero-photo {
    width: 30rem;
  }
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  z-index: 20;
  background-color: var(--card);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  animation: float 3s ease-in-out infinite;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  white-space: nowrap;
}

.floating-badge-1 {
  bottom: 2rem;
  left: -1rem;
}

.floating-badge-2 {
  top: 3rem;
  right: -0.5rem;
  animation-delay: 1s;
}

.floating-badge-3 {
  bottom: 6rem;
  right: -1rem;
  animation-delay: 2s;
}

/* ========================================
   WELCOME SECTION (Seja bem-vindo)
   ======================================== */
.welcome-section {
  padding: 4rem 0 6rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .welcome-section {
    padding: 6rem 0;
  }
}

.welcome-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  z-index: 0;
}

.welcome-blob-1 {
  top: -5rem;
  right: -5rem;
  width: 20rem;
  height: 20rem;
  background-color: hsla(35, 40%, 85%, 0.3);
}

.welcome-blob-2 {
  bottom: -5rem;
  left: -5rem;
  width: 15rem;
  height: 15rem;
  background-color: hsla(18, 37%, 50%, 0.05);
}

.welcome-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.welcome-content h2 {
  margin-bottom: 1.5rem;
}

.welcome-content p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .welcome-content p {
    font-size: 1.125rem;
  }
}

.welcome-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .welcome-icons {
    gap: 4rem;
  }
}

.welcome-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.welcome-icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-icon-circle svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.welcome-icon-item span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ========================================
   ABOUT SECTION (Quem sou eu)
   ======================================== */
.about-section {
  padding: 4rem 0 6rem;
  background-color: hsla(35, 30%, 90%, 0.3);
}

@media (min-width: 768px) {
  .about-section {
    padding: 6rem 0;
  }
}

.about-inner {
  max-width: 64rem;
  margin: 0 auto;
}

.about-title {
  text-align: center;
  margin-bottom: 3rem;
}

.about-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .about-grid {
    flex-direction: row;
    gap: 4rem;
  }
}

.about-image {
  flex-shrink: 0;
  width: 16rem;
}

@media (min-width: 768px) {
  .about-image {
    width: 20rem;
  }
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.about-content {
  flex: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .about-content {
    text-align: left;
  }
}

.about-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .about-content h3 {
    font-size: 1.5rem;
  }
}

.about-crp {
  font-size: 0.875rem;
  color: var(--golden-accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .about-content p {
    font-size: 1.125rem;
  }
}

/* ========================================
   SERVICES SECTION (Para quem é o atendimento)
   ======================================== */
.services-section {
  padding: 4rem 0 6rem;
}

@media (min-width: 768px) {
  .services-section {
    padding: 6rem 0;
  }
}

.services-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1rem;
}

@media (min-width: 768px) {
  .section-header p {
    font-size: 1.125rem;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: hsla(18, 37%, 50%, 0.2);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: hsla(18, 37%, 50%, 0.2);
  transform: scale(1.1);
}

.service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-card > p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.service-indications {
  margin-top: 1rem;
}

.service-indications-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.service-indications ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.service-indications li {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.service-indications li::before {
  content: '•';
  color: var(--golden-accent);
}

/* ========================================
   TDAH SECTION
   ======================================== */
.tdah-section {
  padding: 4rem 0 6rem;
  background-color: hsla(18, 37%, 50%, 0.1);
}

@media (min-width: 768px) {
  .tdah-section {
    padding: 6rem 0;
  }
}

.tdah-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.tdah-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tdah-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: hsla(18, 37%, 50%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.tdah-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.tdah-header h2 {
  margin-bottom: 1rem;
}

.tdah-header p {
  max-width: 42rem;
  margin: 0 auto;
}

.tdah-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .tdah-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.tdah-image-wrapper {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .tdah-image-wrapper {
    justify-content: flex-start;
  }
}

.tdah-image-container {
  position: relative;
}

.tdah-image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, var(--accent), var(--warm-beige), hsla(38, 50%, 65%, 0.3));
  border-radius: 1.5rem;
  transform: rotate(3deg);
}

.tdah-image {
  position: relative;
  z-index: 10;
  max-width: 28rem;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.tdah-content p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .tdah-content p {
    font-size: 1.125rem;
  }
}

.tdah-content p strong {
  color: var(--foreground);
}

.tdah-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.tdah-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background-color: hsla(40, 33%, 98%, 0.6);
  border-radius: 0.5rem;
  padding: 0.75rem;
}

.tdah-benefit-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: hsla(18, 37%, 50%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.tdah-benefit-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.tdah-benefit span {
  font-size: 0.875rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .tdah-benefit span {
    font-size: 1rem;
  }
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-section {
  padding: 4rem 0 6rem;
}

@media (min-width: 768px) {
  .how-section {
    padding: 6rem 0;
  }
}

.how-inner {
  max-width: 64rem;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  position: relative;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.step-card:hover {
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.step-number {
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.step-card:hover .step-number {
  transform: scale(1.1);
}

.step-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  transition: background-color 0.3s ease;
}

.step-card:hover .step-icon {
  background-color: hsla(18, 37%, 50%, 0.2);
}

.step-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.step-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Connector lines between steps (desktop only) */
@media (min-width: 1024px) {
  .step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -0.75rem;
    width: 1.5rem;
    height: 2px;
    background-color: var(--border);
  }
}

.how-cta {
  text-align: center;
}

.how-cta p {
  margin-bottom: 1.5rem;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  padding: 4rem 0 6rem;
  background-color: hsla(35, 30%, 90%, 0.5);
}

@media (min-width: 768px) {
  .site-footer {
    padding: 6rem 0;
  }
}

.footer-inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.footer-quote {
  margin-bottom: 2rem;
}

.footer-quote blockquote {
  font-size: 1.125rem;
  color: var(--foreground);
  font-style: italic;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .footer-quote blockquote {
    font-size: 1.25rem;
  }
}

.footer-cta {
  margin-bottom: 2.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer-contact {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-contact svg {
  width: 1rem;
  height: 1rem;
}

.footer-info {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.footer-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.footer-crp {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  animation: pulse-subtle 2s ease-in-out infinite;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: currentColor;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes blob {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  33% {
    transform: translate(-50%, -50%) translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-50%, -50%) translate(-20px, 20px) scale(0.9);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-subtle {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
  }
}

/* Scroll Reveal */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animate-fade-in-up {
  opacity: 1;
  transform: translateY(0);
}

/* Animation delays */
.animation-delay-100 { animation-delay: 100ms; }
.animation-delay-200 { animation-delay: 200ms; }
.animation-delay-300 { animation-delay: 300ms; }
.animation-delay-400 { animation-delay: 400ms; }
.animation-delay-1000 { animation-delay: 1000ms; }
.animation-delay-2000 { animation-delay: 2000ms; }
