/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===== VARIABLES ===== */
:root {
  --purple: #6B21A8;
  --purple-dark: #581C87;
  --purple-light: #7C3AED;
  --magenta: #e300ff;
  --lime: #B5E70E;
  --cream: #e6e4e1;
  --dark: #1a1a2e;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Open Sans', 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
@media(min-width:768px) { .container { padding: 0 1.5rem; } }

.text-gradient {
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--purple), var(--magenta)); border-radius: 4px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0; transform: scale(1.5); }
}
@keyframes ping {
  75%, 100% { transform: scale(1.5); opacity: 0; }
}
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.3s ease;
  padding: 1.25rem 0;
  background: transparent;
}
.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 0.75rem 0;
}
.header nav { display: flex; align-items: center; justify-content: space-between; }
.header .logo-img { height: 3rem; width: auto; transition: all 0.3s; }
@media(min-width:768px) { .header .logo-img { height: 3.5rem; } }
@media(min-width:1024px) { .header .logo-img { height: 4rem; } }

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

.nav-link {
  font-weight: 500; transition: color 0.3s; font-size: 0.95rem;
  background: none; padding: 0;
}
.nav-link.text-white { color: white; }
.nav-link.text-white:hover { color: var(--lime); }
.nav-link.text-dark { color: var(--dark); }
.nav-link.text-dark:hover { color: var(--magenta); }
.nav-link.disabled { opacity: 0.5; cursor: not-allowed; }
.nav-link .em-breve { font-size: 0.75rem; margin-left: 0.25rem; }

.nav-cta {
  padding: 0.625rem 1.5rem; border-radius: 9999px; font-weight: 600;
  transition: all 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.nav-cta:hover { transform: scale(1.05); }
.nav-cta.on-purple { background: var(--lime); color: var(--dark); }
.nav-cta.on-purple:hover { background: white; }
.nav-cta.on-white { background: var(--purple); color: white; }
.nav-cta.on-white:hover { background: var(--magenta); }

.mobile-menu-btn {
  display: block; padding: 0.5rem; background: none;
  color: white; transition: color 0.3s;
}
.mobile-menu-btn.scrolled { color: var(--dark); }
@media(min-width:1024px) { .mobile-menu-btn { display: none; } }

.mobile-menu {
  display: none; background: white; border-top: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { padding: 1rem; }
.mobile-menu li { margin-bottom: 0.5rem; }
.mobile-menu .nav-link {
  display: block; width: 100%; text-align: left;
  padding: 0.75rem 1rem; border-radius: 0.5rem; color: var(--dark);
}
.mobile-menu .nav-link:hover { background: var(--cream); }
.mobile-menu .nav-cta-mobile {
  display: block; width: 100%; text-align: center;
  background: var(--purple); color: white; padding: 0.75rem;
  border-radius: 9999px; font-weight: 600; margin-top: 0.5rem;
}

/* ===== HERO / CAROUSEL ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 5rem; overflow: hidden; position: relative;
  background: linear-gradient(135deg, #6B21A8, #7C3AED, #6B21A8);
}
.hero .deco-1 {
  position: absolute; top: 5rem; right: 2.5rem;
  width: 18rem; height: 18rem; background: rgba(255,255,255,0.05);
  border-radius: 50%; filter: blur(48px);
}
.hero .deco-2 {
  position: absolute; bottom: 5rem; left: 2.5rem;
  width: 24rem; height: 24rem; background: rgba(227,0,255,0.2);
  border-radius: 50%; filter: blur(48px);
}

.carousel-wrapper { position: relative; overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.5s ease; }
.carousel-slide { flex: 0 0 100%; width: 100%; overflow: hidden; }

.slide-grid {
  display: grid; gap: 2rem; align-items: center; padding: 2rem 0;
}
@media(min-width:1024px) { .slide-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.slide-text { text-align: center; order: 2; }
@media(min-width:1024px) { .slide-text { text-align: left; order: 1; } }
.slide-image { order: 1; }
@media(min-width:1024px) { .slide-image { order: 2; } }

.badge-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1); color: white;
  padding: 0.5rem 1rem; border-radius: 9999px; margin-bottom: 1.5rem;
  font-size: 0.875rem; font-weight: 600;
}
.badge-pill.lime { background: rgba(181,231,14,0.2); color: var(--lime); }

.hero-title {
  color: var(--lime); font-weight: 700;
  font-size: 1.875rem; line-height: 1.2;
  font-family: 'Montserrat', sans-serif;
}
@media(min-width:768px) { .hero-title { font-size: 2.25rem; } }
@media(min-width:1024px) { .hero-title { font-size: 3rem; } }

.hero-text { color: rgba(255,255,255,0.9); font-size: 1.125rem; line-height: 1.7; margin-bottom: 2rem; }
.hero-text p { margin-bottom: 1rem; }

.hero-h2 {
  font-size: 1.875rem; font-weight: 700; color: white; margin-bottom: 1rem; line-height: 1.2;
  font-family: 'Montserrat', sans-serif;
}
@media(min-width:768px) { .hero-h2 { font-size: 2.25rem; } }
@media(min-width:1024px) { .hero-h2 { font-size: 3rem; } }
.hero-h2 .lime { color: var(--lime); }

.hero-subtitle { font-size: 1.25rem; color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }

.price-row {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem; justify-content: center;
}
@media(min-width:1024px) { .price-row { justify-content: flex-start; } }
.price-label { font-size: 2rem; font-weight: 700; color: white; }
.price-value { font-size: 2.5rem; font-weight: 700; color: var(--lime); }

.btn-lime {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--lime); color: var(--purple); font-weight: 700;
  padding: 1rem 2rem; border-radius: 9999px; font-size: 1.125rem;
  transition: all 0.3s; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.btn-lime:hover { background: white; transform: scale(1.05); }

.btn-lime-sm {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--lime); color: var(--purple); font-weight: 700;
  padding: 0.75rem 1.5rem; border-radius: 9999px;
  transition: all 0.3s; border: 2px solid var(--lime);
}
.btn-lime-sm:hover { background: white; border-color: var(--purple); transform: scale(1.05); }

.mini-badges {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; justify-content: center;
}
@media(min-width:1024px) { .mini-badges { justify-content: flex-start; } }
.mini-badge { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.mini-badge svg { color: var(--lime); }

/* Hero Image */
.hero-photo-wrapper { position: relative; max-width: 384px; margin: 0 auto; padding-bottom: 125%; /* 4/5 ratio */ }
.hero-photo-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(181,231,14,0.2);
  border-radius: 1.5rem; transform: rotate(3deg);
}
.hero-photo {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; overflow: hidden;
  border-radius: 1.5rem; box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Mockup */
.mockup-wrapper { position: relative; max-width: 32rem; margin: 0 auto; }
.laptop-frame {
  position: relative; background: #1f2937; border-radius: 0.75rem 0.75rem 0 0;
  padding: 0.5rem; box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}
.laptop-dots { display: flex; gap: 0.375rem; margin-bottom: 0.5rem; }
.laptop-dots span { width: 0.625rem; height: 0.625rem; border-radius: 50%; }
.laptop-dots .red { background: #f87171; }
.laptop-dots .yellow { background: #fbbf24; }
.laptop-dots .green { background: #4ade80; }
.laptop-screen { aspect-ratio: 16/9; background: white; border-radius: 0.25rem; overflow: hidden; }
.laptop-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.laptop-bottom { height: 1rem; background: #374151; border-radius: 0 0 0.5rem 0.5rem; }
.laptop-base { height: 0.5rem; background: #4b5563; border-radius: 0 0 0.75rem 0.75rem; margin: 0 2rem; }

.phone-mockup {
  position: absolute; bottom: -1rem; right: -1rem;
  width: 6rem; background: #1f2937; border-radius: 1rem; padding: 0.375rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.phone-screen { aspect-ratio: 9/16; background: white; border-radius: 0.75rem; overflow: hidden; }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.delivery-badge {
  position: absolute; bottom: -0.5rem; left: 50%; transform: translateX(-50%);
  background: white; border-radius: 9999px; padding: 0.5rem 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 0.5rem;
  white-space: nowrap;
}
.delivery-badge .time { font-size: 0.875rem; font-weight: 700; color: var(--dark); }
.delivery-badge .label { font-size: 0.75rem; color: #6b7280; }

/* Carousel Nav */
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 2.5rem; height: 2.5rem; background: rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; transition: all 0.3s; z-index: 10;
}
@media(min-width:768px) { .carousel-arrow { width: 3rem; height: 3rem; } }
.carousel-arrow:hover { background: rgba(255,255,255,0.2); }
.carousel-arrow.prev { left: 0.5rem; }
@media(min-width:768px) { .carousel-arrow.prev { left: 1rem; } }
.carousel-arrow.next { right: 0.5rem; }
@media(min-width:768px) { .carousel-arrow.next { right: 1rem; } }

.carousel-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.carousel-dot {
  height: 0.5rem; border-radius: 9999px; transition: all 0.3s;
  background: rgba(255,255,255,0.3); width: 0.5rem;
}
.carousel-dot:hover { background: rgba(255,255,255,0.5); }
.carousel-dot.active { background: var(--lime); width: 2rem; }

/* ===== ABOUT ===== */
.about { padding: 5rem 0; background: white; }
@media(min-width:768px) { .about { padding: 7rem 0; } }
.about-grid { display: grid; gap: 3rem; align-items: center; margin-bottom: 5rem; }
@media(min-width:1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.about-photo-wrapper { position: relative; max-width: 28rem; margin: 0 auto; width: 100%; padding-bottom: 133.33%; order: 2; }
@media(min-width:1024px) { .about-photo-wrapper { order: 1; } }
.about-photo-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(227,0,255,0.2), rgba(107,33,168,0.2));
  border-radius: 1.5rem; transform: rotate(-3deg);
}
.about-photo {
  position: absolute; inset: 0; overflow: hidden;
  border-radius: 1.5rem; box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.about-text { order: 1; }
@media(min-width:1024px) { .about-text { order: 2; } }
.section-label { font-size: 0.875rem; font-weight: 600; color: var(--purple); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.section-title { font-size: 1.875rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; line-height: 1.2; font-family: 'Montserrat', sans-serif; }
@media(min-width:768px) { .section-title { font-size: 2.25rem; } }
@media(min-width:1024px) { .section-title { font-size: 3rem; } }
.about-role { font-size: 1.25rem; color: var(--purple); font-weight: 600; margin-bottom: 1.5rem; }
.about-desc { color: #4b5563; line-height: 1.8; margin-bottom: 1rem; }
.about-highlight { color: var(--purple); font-weight: 500; font-size: 1.125rem; }

.diferenciais-grid { display: grid; gap: 1.5rem; }
@media(min-width:640px) { .diferenciais-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px) { .diferenciais-grid { grid-template-columns: repeat(4, 1fr); } }
.diferencial-card {
  background: rgba(230,228,225,0.5); border-radius: 1rem; padding: 1.5rem;
  border: 1px solid #f3f4f6; transition: all 0.3s;
}
.diferencial-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); transform: translateY(-4px); }
.diferencial-icon {
  width: 3rem; height: 3rem; background: rgba(107,33,168,0.1);
  border-radius: 0.75rem; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.diferencial-icon svg { color: var(--purple); }
.diferencial-card h4 { font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.diferencial-card p { font-size: 0.875rem; color: #4b5563; line-height: 1.6; }

/* ===== SERVICES ===== */
.services { padding: 5rem 0; background: linear-gradient(to bottom, rgba(230,228,225,0.3), white); }
@media(min-width:768px) { .services { padding: 7rem 0; } }

.service-card {
  background: white; border-radius: 1.5rem; padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08); border: 1px solid #f3f4f6; margin-bottom: 2rem;
}
@media(min-width:768px) { .service-card { padding: 3rem; } }
.service-card .icon-box {
  width: 3rem; height: 3rem; background: var(--purple);
  border-radius: 0.75rem; display: flex; align-items: center; justify-content: center;
}
.service-card .icon-box svg { color: white; }
.service-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.service-card h4 { font-size: 1.5rem; font-weight: 700; color: var(--dark); }
.service-card p { color: #4b5563; line-height: 1.7; margin-bottom: 1rem; }
.service-card .highlight { color: var(--purple); font-weight: 500; }

/* Marcas */
.marcas-title { text-align: center; margin-bottom: 2rem; font-size: 1.125rem; font-weight: 600; color: var(--purple); }
.marcas-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  align-items: center; margin-bottom: 4rem;
}
@media(min-width:640px) { .marcas-grid { grid-template-columns: repeat(3, 1fr); } }
@media(min-width:1024px) { .marcas-grid { grid-template-columns: repeat(5, 1fr); } }
.marca-item {
  display: flex; align-items: center; justify-content: center;
  height: 8rem; transition: all 0.3s;
}
.marca-item:hover { transform: scale(1.05); }
.marca-item img { max-height: 100%; max-width: 100%; object-fit: contain; }

/* Pricing */
.pricing-title { font-size: 1.5rem; font-weight: 700; color: var(--dark); text-align: center; margin-bottom: 0.75rem; font-family: 'Montserrat', sans-serif; }
@media(min-width:768px) { .pricing-title { font-size: 1.875rem; } }
.pricing-subtitle { color: #4b5563; text-align: center; max-width: 48rem; margin: 0 auto 2.5rem; }

.pricing-grid { display: grid; gap: 1.5rem; margin-bottom: 4rem; }
@media(min-width:768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.pricing-card {
  position: relative; border-radius: 1.5rem; padding: 2rem;
  transition: all 0.3s; background: white; border: 2px solid #f3f4f6;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.pricing-card:hover { transform: translateY(-8px); border-color: rgba(107,33,168,0.3); }
.pricing-card.highlighted {
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  color: white; box-shadow: 0 25px 50px rgba(107,33,168,0.3);
  border: none;
}
@media(min-width:768px) { .pricing-card.highlighted { transform: scale(1.05); } }
.pricing-card.highlighted:hover { transform: scale(1.05) translateY(-8px); }

.pricing-badge {
  position: absolute; top: -1rem; left: 50%; transform: translateX(-50%);
  background: var(--lime); color: var(--purple); font-size: 0.75rem;
  font-weight: 700; padding: 0.25rem 1rem; border-radius: 9999px;
}
.pricing-card h5 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.pricing-card .subtitle { font-size: 0.875rem; margin-bottom: 0.5rem; }
.pricing-card .desc { font-size: 0.875rem; margin-bottom: 1rem; }
.pricing-card .price { font-size: 2.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.pricing-card .price.purple { color: var(--purple); }
.pricing-card ul { margin-bottom: 2rem; }
.pricing-card li { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.75rem; font-size: 0.875rem; }
.pricing-card li svg { flex-shrink: 0; margin-top: 2px; }
.pricing-card .btn-package {
  display: block; width: 100%; text-align: center;
  padding: 0.75rem; border-radius: 9999px; font-weight: 700;
  background: var(--lime); color: var(--purple); border: 2px solid var(--lime);
  transition: all 0.3s;
}
.pricing-card .btn-package:hover { background: white; border-color: var(--purple); }

/* Benefits */
.benefits {
  background: var(--purple); border-radius: 1.5rem;
  padding: 2rem; margin-bottom: 4rem;
}
@media(min-width:768px) { .benefits { padding: 3rem; } }
.benefits h4 { font-size: 1.25rem; font-weight: 700; color: white; text-align: center; margin-bottom: 2rem; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 56rem; margin: 0 auto; }
@media(max-width:640px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-item { display: flex; align-items: flex-start; gap: 1rem; }
.benefit-icon {
  width: 3rem; height: 3rem; background: rgba(255,255,255,0.1);
  border-radius: 1rem; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.benefit-icon svg { color: var(--lime); }
.benefit-item p { color: rgba(255,255,255,0.9); font-size: 0.875rem; line-height: 1.6; }

/* Other Services */
.other-services h4 { font-size: 1.5rem; font-weight: 700; color: var(--dark); text-align: center; margin-bottom: 2rem; font-family: 'Montserrat', sans-serif; }
@media(min-width:768px) { .other-services h4 { font-size: 1.875rem; } }
.other-service-card {
  background: white; border-radius: 1rem; padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08); border: 1px solid #f3f4f6;
  margin-bottom: 1.5rem;
}
.other-service-card .card-inner { display: flex; align-items: flex-start; gap: 1rem; }
.other-service-card .icon-sm {
  width: 3rem; height: 3rem; background: rgba(107,33,168,0.1);
  border-radius: 0.75rem; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.other-service-card .icon-sm svg { color: var(--purple); }
.other-service-card h5 { font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.other-service-card p { font-size: 0.875rem; color: #4b5563; line-height: 1.6; }
.other-service-card .highlight { color: var(--purple); font-weight: 500; margin-top: 0.5rem; }

/* Gallery */
.gallery-title { font-size: 1.125rem; font-weight: 600; color: var(--dark); text-align: center; margin-bottom: 1.5rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
@media(min-width:768px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  position: relative; aspect-ratio: 3/4; border-radius: 1rem; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: all 0.3s;
}
.gallery-item:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.15); transform: translateY(-4px); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* CTA */
.services-cta { text-align: center; margin-top: 4rem; }
.services-cta p { font-size: 1.25rem; color: var(--purple); font-weight: 500; margin-bottom: 1.5rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 5rem 0; background: white; }
@media(min-width:768px) { .testimonials { padding: 7rem 0; } }
.testimonials-grid { display: grid; gap: 2rem; }
@media(min-width:768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: rgba(230,228,225,0.3); border-radius: 1.5rem; padding: 2rem;
  position: relative; transition: all 0.3s; border: 1px solid #f3f4f6;
}
.testimonial-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.testimonial-card .quote-icon {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: rgba(107,33,168,0.2);
}
.stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.stars svg { fill: var(--lime); color: var(--lime); }
.testimonial-content { color: #4b5563; line-height: 1.6; margin-bottom: 1.5rem; font-size: 0.875rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700;
}
.author-name { font-weight: 700; color: var(--dark); }
.author-role { font-size: 0.875rem; color: #6b7280; }

/* ===== CONTACT ===== */
.contact { padding: 5rem 0; background: linear-gradient(to bottom, rgba(230,228,225,0.3), white); }
@media(min-width:768px) { .contact { padding: 7rem 0; } }
.contact-form-wrapper {
  max-width: 56rem; margin: 0 auto; background: white;
  border-radius: 1.5rem; padding: 2rem; box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 1px solid #f3f4f6;
}
@media(min-width:768px) { .contact-form-wrapper { padding: 3rem; } }
.form-grid { display: grid; gap: 1.5rem; margin-bottom: 1.5rem; }
@media(min-width:768px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--dark); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border-radius: 0.75rem;
  border: 1px solid #e5e7eb; outline: none; transition: all 0.3s;
  font-family: inherit; font-size: 1rem;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(107,33,168,0.2);
}
.form-group textarea { resize: none; }

.btn-submit {
  display: flex; width: 100%; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--lime); color: var(--purple); font-weight: 700;
  padding: 1rem 2rem; border-radius: 9999px; font-size: 1rem;
  transition: all 0.3s; border: 2px solid var(--lime); margin-top: 1.5rem;
}
.btn-submit:hover { background: white; border-color: var(--purple); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.form-message { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1rem; border-radius: 0.75rem; margin-top: 1rem; }
.form-message.success { background: #f0fdf4; color: #16a34a; }
.form-message.error { background: #fef2f2; color: #dc2626; }

.contact-info { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid #f3f4f6; text-align: center; }
.contact-info a { display: inline-flex; align-items: center; gap: 0.5rem; color: #4b5563; transition: color 0.3s; }
.contact-info a:hover { color: var(--purple); }

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #6B21A8, #7C3AED, #6B21A8);
  color: white; padding: 3rem 0; text-align: center;
}
.footer .logo-footer { height: 3.5rem; width: auto; margin: 0 auto 1.5rem; }
.footer .tagline { color: rgba(255,255,255,0.9); font-size: 0.875rem; line-height: 1.6; max-width: 28rem; margin: 0 auto 1.5rem; }
.social-links { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
.social-link {
  width: 2.5rem; height: 2.5rem; background: rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.social-link:hover { background: var(--lime); color: var(--dark); }
.footer .divider { width: 100%; max-width: 28rem; height: 1px; background: rgba(255,255,255,0.2); margin: 0 auto 1.5rem; }
.footer .copyright { color: rgba(255,255,255,0.6); font-size: 0.875rem; }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  background: #22c55e; color: white; width: 3.5rem; height: 3.5rem;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(34,197,94,0.4); transition: all 0.3s;
}
.whatsapp-btn:hover { background: #16a34a; transform: scale(1.1); }
.whatsapp-btn .ping {
  position: absolute; inset: 0; border-radius: 50%;
  background: #22c55e; animation: ping 1.5s infinite;
}

/* ===== SVG ICONS ===== */
.icon { display: inline-block; vertical-align: middle; }
