/* ============================================
   Construction SP - Styles
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #d4a017;
  --primary-dark: #b8860b;
  --dark: #0a0a0a;
  --dark-2: #141414;
  --dark-3: #1e1e1e;
  --dark-4: #2a2a2a;
  --light: #f5f5f5;
  --gray: #888;
  --white: #ffffff;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* ============================================
   Keyframes
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-2.5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(2.5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 1rem rgba(37, 211, 102, 0);
  }
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes countUp {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes borderGlow {
  0%, 100% { border-color: var(--primary); box-shadow: 0 0 0.5rem rgba(212, 160, 23, 0.2); }
  50% { border-color: var(--primary-dark); box-shadow: 0 0 1.5rem rgba(212, 160, 23, 0.4); }
}

/* ============================================
   Scroll Animation Classes
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-3rem);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(3rem);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================
   Navigation
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition), padding var(--transition);
  animation: slideDown 0.8s ease-out;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(0.625rem);
  padding: 0.75rem 5%;
  box-shadow: 0 0.125rem 1.25rem rgba(0, 0, 0, 0.3);
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-logo span {
  color: var(--primary);
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 0.125rem;
  background: var(--primary);
  transition: width var(--transition);
}

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

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

.nav-cta {
  background: var(--primary);
  color: var(--dark) !important;
  padding: 0.625rem 1.5rem;
  border-radius: 0.25rem;
  font-weight: 700 !important;
  transition: background var(--transition), transform var(--transition) !important;
}

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

.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--dark) !important;
  transform: translateY(-0.125rem);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 1.5rem;
  height: 0.15rem;
  background: var(--white);
  transition: var(--transition);
  border-radius: 0.125rem;
}

/* ============================================
   Hero
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10% 5%;
  position: relative;
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(212, 160, 23, 0.06) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, var(--dark), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 55rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(212, 160, 23, 0.1);
  border: 0.0625rem solid rgba(212, 160, 23, 0.3);
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  color: var(--primary);
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  height: 0.15em;
  background: rgba(212, 160, 23, 0.3);
  border-radius: 0.125rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.6s both;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: var(--dark);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-0.2rem);
  box-shadow: 0 0.5rem 2rem rgba(212, 160, 23, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border: 0.125rem solid var(--dark-4);
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-0.2rem);
}

.hero-guarantee {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--gray);
  animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-guarantee strong {
  color: var(--primary);
}

/* ============================================
   Stats
   ============================================ */

.stats {
  padding: 5% 5%;
  background: var(--dark-2);
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2%;
  max-width: 70rem;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 2.5rem 1rem;
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ============================================
   Section Shared
   ============================================ */

.section {
  padding: 8% 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 5%;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--gray);
  max-width: 35rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   Services
   ============================================ */

.services {
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 2%;
  max-width: 70rem;
  margin: 0 auto;
}

.service-card {
  background: var(--dark-2);
  border: 0.0625rem solid var(--dark-4);
  border-radius: 0.5rem;
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-0.5rem);
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.3);
}

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

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   Value Stack (Why Us - Hormozi Style)
   ============================================ */

.value-stack {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.value-stack::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(212, 160, 23, 0.04) 0%, transparent 70%);
}

.value-container {
  max-width: 60rem;
  margin: 0 auto;
}

.value-intro {
  text-align: center;
  margin-bottom: 4%;
}

.value-intro .price-anchor {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.value-intro .price-anchor s {
  color: #ff4444;
  font-weight: 600;
}

.value-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--dark-3);
  border: 0.0625rem solid var(--dark-4);
  border-radius: 0.5rem;
  padding: 1.5rem 2rem;
  transition: all var(--transition);
}

.value-item:hover {
  border-color: rgba(212, 160, 23, 0.3);
  transform: translateX(0.5rem);
}

.value-check {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: rgba(212, 160, 23, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 0.15rem;
}

.value-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.value-text p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

.value-text .value-price {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.value-total {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.08), rgba(212, 160, 23, 0.02));
  border: 0.0625rem solid rgba(212, 160, 23, 0.2);
  border-radius: 0.75rem;
  animation: borderGlow 3s ease-in-out infinite;
}

.value-total .total-label {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.value-total .total-price {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--primary);
}

.value-total .total-sub {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

/* ============================================
   Portfolio
   ============================================ */

.portfolio {
  background: var(--dark);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 1.5%;
  max-width: 70rem;
  margin: 0 auto;
}

.portfolio-item {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark-3);
  cursor: pointer;
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover .portfolio-placeholder {
  transform: scale(1.05);
  transition: transform 0.6s ease;
}

.portfolio-overlay h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.portfolio-overlay p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ============================================
   Testimonials
   ============================================ */

.testimonials {
  background: var(--dark-2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 2%;
  max-width: 65rem;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--dark-3);
  border: 0.0625rem solid var(--dark-4);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(212, 160, 23, 0.3);
  transform: translateY(-0.3rem);
}

.testimonial-stars {
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--light);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
}

.testimonial-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-info p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ============================================
   CTA Final
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, var(--dark-2), var(--dark));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(212, 160, 23, 0.06) 0%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 45rem;
  margin: 0 auto;
}

.cta-section .section-title {
  margin-bottom: 1.25rem;
}

.cta-section .section-desc {
  margin-bottom: 2.5rem;
}

.cta-urgency {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 68, 68, 0.1);
  border: 0.0625rem solid rgba(255, 68, 68, 0.3);
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ff6b6b;
  margin-bottom: 2rem;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--dark-2);
  padding: 5% 5% 2%;
  border-top: 0.0625rem solid var(--dark-4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3%;
  max-width: 70rem;
  margin: 0 auto;
  padding-bottom: 3%;
  border-bottom: 0.0625rem solid var(--dark-4);
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.footer-col ul li {
  margin-bottom: 0.625rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--gray);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2%;
  max-width: 70rem;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 5%;
  left: 3%;
  z-index: 999;
  width: 3.5rem;
  height: 3.5rem;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: pulse 2s infinite;
  transition: all var(--transition);
  box-shadow: 0 0.25rem 1rem rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 0.5rem 2rem rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: var(--white);
}

.whatsapp-tooltip {
  position: absolute;
  left: 120%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.15);
}

.whatsapp-tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 0.375rem solid transparent;
  border-right-color: var(--white);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ============================================
   Responsive - Tablet
   ============================================ */

@media (max-width: 48rem) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }

  .nav-links.open {
    display: flex;
  }

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

  .hamburger {
    display: flex;
  }

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

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

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5%;
  }
}

/* ============================================
   Responsive - Mobile
   ============================================ */

@media (max-width: 30rem) {
  .hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    padding: 1.5rem 0.5rem;
  }

  .value-item {
    padding: 1.25rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .whatsapp-float {
    width: 3rem;
    height: 3rem;
  }

  .whatsapp-float svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
