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

:root {
  --lavender: #D4B5FF;
  --lavender-dark: #B794F4;
  --lavender-light: #EDE4FF;
  --lavender-bg: #F8F4FF;
  --teal: #2DD4BF;
  --teal-dark: #0D9488;
  --teal-light: #E6FFFA;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F4F4F5;
  --gray-200: #E4E4E7;
  --gray-300: #D4D4D8;
  --gray-500: #71717A;
  --gray-600: #52525B;
  --gray-700: #3F3F46;
  --gray-800: #27272A;
  --gray-900: #18181B;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --gradient-primary: linear-gradient(135deg, #D4B5FF 0%, #2DD4BF 100%);
  --gradient-lavender: linear-gradient(135deg, #D4B5FF 0%, #B794F4 100%);
  --gradient-teal: linear-gradient(135deg, #2DD4BF 0%, #0D9488 100%);
  --gradient-warm: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 30px rgba(212, 181, 255, 0.3);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-full: 9999px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1140px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.section-number {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: 3px;
  opacity: 0.6;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.section-line {
  flex: 1;
  min-width: 60px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  margin-bottom: 48px;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(212, 181, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 181, 255, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--gray-800);
  border-color: var(--gray-300);
}

.btn-outline:hover {
  border-color: var(--lavender);
  background: var(--lavender-bg);
  transform: translateY(-3px);
}

.btn-wa {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.btn-wa:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 1.85rem;
  }

  .section-sub {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  padding: 12px 0;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gray-900);
}

.nav-cta {
  padding: 8px 20px !important;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  color: var(--white) !important;
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  box-shadow: 0 4px 20px rgba(212, 181, 255, 0.4) !important;
  transform: translateY(-2px);
}

.nav-wa {
  padding: 8px 20px !important;
  border-radius: var(--radius-full) !important;
  background: var(--whatsapp) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}

.nav-wa::after {
  display: none !important;
}

.nav-wa:hover {
  background: var(--whatsapp-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-cta,
  .nav-wa {
    text-align: center;
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(165deg, var(--lavender-bg) 0%, var(--white) 40%, var(--teal-light) 100%);
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-overlay-img {
  position: absolute;
  right: -5%;
  bottom: 0;
  width: 50%;
  max-width: 600px;
  height: 80%;
  background: url('images/hero-profile.jpg') no-repeat bottom right / contain;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--gradient-lavender);
  top: -200px;
  right: -150px;
  animation: floatShape 20s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--gradient-teal);
  bottom: -100px;
  left: -100px;
  animation: floatShape 25s ease-in-out infinite reverse;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--gradient-warm);
  top: 60%;
  right: 10%;
  animation: floatShape 15s ease-in-out infinite 5s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 0 60px;
}

.hero-greeting {
  font-size: 1.05rem;
  color: var(--gray-500);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease both;
}

.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.05;
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease 0.15s both;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray-600);
  font-weight: 400;
  margin-bottom: 12px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-desc {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.8;
  animation: fadeUp 0.8s ease 0.45s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.6s both;
}

.hero-scroll {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeUp 0.8s ease 0.75s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gradient-primary);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.5); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 100px 0 40px;
  }

  .hero-overlay-img {
    display: none;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .hero-scroll {
    margin-top: 40px;
  }
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-frame {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--gradient-primary);
  padding: 6px;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(212, 181, 255, 0.2); }
  50% { box-shadow: 0 0 50px rgba(45, 212, 191, 0.25); }
}

.about-image-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gray-100);
}

.about-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.about-image-inner img:hover {
  transform: scale(1.05);
}

.about-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-800);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  animation: floatBadge 6s ease-in-out infinite;
}

.about-badge i {
  font-size: 0.9rem;
}

.about-badge-1 {
  top: 10%;
  right: 0;
  animation-delay: 0s;
}

.about-badge-2 {
  bottom: 15%;
  left: 0;
  animation-delay: 2s;
}

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

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text p {
  color: var(--gray-500);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.stat {
  text-align: center;
  padding: 20px 12px;
  border-radius: var(--radius);
  background: var(--lavender-bg);
  transition: var(--transition);
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    order: -1;
  }

  .about-image-frame {
    width: 220px;
    height: 220px;
  }

  .about-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  .about-text h3 {
    font-size: 1.6rem;
  }

  .about-stats {
    gap: 10px;
  }

  .stat {
    padding: 14px 8px;
  }

  .stat-num {
    font-size: 1.4rem;
  }
}

.skills {
  background: var(--lavender-bg);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.skill-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: var(--transition);
}

.skill-card-link:hover .skill-card {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.skill-card-link:hover .skill-card::before {
  transform: scaleX(1);
}

.skill-level i {
  transition: transform 0.3s ease;
  display: inline-block;
}

.skill-card-link:hover .skill-level i {
  transform: translateX(4px);
}

.skill-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.skill-card:hover::before {
  transform: scaleX(1);
}

.skill-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.skill-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  background: var(--gradient-primary);
  margin-bottom: 20px;
}

.skill-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.skill-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.skill-bar {
  height: 6px;
  background: var(--gray-100);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}

.skill-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 3px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.skill-level {
  font-size: 0.8rem;
  color: var(--teal-dark);
  font-weight: 600;
}

.projects {
  background: var(--white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.project-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-img img {
  transform: scale(1.08);
}

.project-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.4));
  pointer-events: none;
}

.project-img-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gray-800);
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.project-card:hover .project-img-overlay {
  transform: translate(-50%, -50%) scale(1);
}

.project-info {
  padding: 24px;
}

.project-info h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.project-info p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tags span {
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--lavender-bg);
  color: var(--lavender-dark);
}

@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.project-slider-wrap {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.project-slider-main {
  overflow: hidden;
  border-radius: var(--radius);
}

.project-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.project-slider-slide {
  min-width: 100%;
  padding: 0 2px;
}

.project-slider-slide .project-card {
  margin: 0;
}

.project-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.project-slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  box-shadow: var(--shadow-md);
  color: var(--gray-600);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-slider-btn:hover {
  background: var(--lavender-bg);
  box-shadow: var(--shadow-lg);
  transform: scale(1.1);
}

.project-slider-dots {
  display: flex;
  gap: 8px;
}

.project-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.project-slider-dot.active {
  background: var(--gradient-primary);
  width: 26px;
  border-radius: 5px;
}

.testimonials {
  background: linear-gradient(165deg, var(--teal-light) 0%, var(--white) 50%, var(--lavender-bg) 100%);
}

.slider-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 40px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.slider-slide {
  min-width: 100%;
  padding: 0 4px;
}

.slider-slide .testimonial-card {
  margin: 0;
  height: 100%;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  box-shadow: var(--shadow-md);
  color: var(--gray-600);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--lavender-bg);
  box-shadow: var(--shadow-lg);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
  left: 0;
}

.slider-btn-next {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slider-dot.active {
  background: var(--gradient-primary);
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 600px) {
  .slider-container {
    padding: 0 32px;
  }

  .slider-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.quote-icon {
  font-size: 1.5rem;
  color: var(--lavender-dark);
  opacity: 0.2;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-800);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
  animation: waPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.6); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    bottom: 16px;
    right: 16px;
  }
}

.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--gray-900);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content p {
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--gray-300);
  font-size: 1.05rem;
  line-height: 1.8;
}

.cta-content .btn-primary {
  box-shadow: 0 4px 30px rgba(212, 181, 255, 0.3);
}

.cta-content .btn-outline {
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}

.cta-content .btn-outline:hover {
  border-color: var(--lavender);
  background: rgba(212, 181, 255, 0.1);
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
}

.cta-shape-1 {
  width: 500px;
  height: 500px;
  background: var(--gradient-lavender);
  top: -200px;
  right: -100px;
  animation: floatShape 25s ease-in-out infinite;
}

.cta-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--gradient-teal);
  bottom: -100px;
  left: -50px;
  animation: floatShape 20s ease-in-out infinite reverse;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 80px 0;
  }

  .cta-content p {
    font-size: 0.95rem;
  }
}

.footer {
  padding: 48px 0;
  background: var(--gray-900);
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  background: rgba(255,255,255,0.06);
  font-size: 1.1rem;
  transition: var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-email {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-email i {
  margin-right: 6px;
  color: var(--teal);
}

.footer-copy {
  color: var(--gray-500);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer {
    padding: 36px 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
