/* 🚮 Sistema de Diseño: Residuos Sólidos - Green & Clean */

:root {
  /* Logo Colors */
  --navy: #110543;
  --blue-vibrant: #1C8FE2;
  --green-nature: #27822A;
  --green-light: #81C882;

  /* UI Colors */
  --primary-color: var(--navy);
  --secondary-color: var(--blue-vibrant);
  --accent-color: var(--green-nature);
  --light-bg: #F8FAFC;
  --white: #FFFFFF;

  /* Text */
  --text-primary: #1e293b;
  --text-secondary: #334155; /* Oscurecido para mejor contraste */

  /* Tokens */
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-premium: 0 20px 40px rgba(17, 5, 67, 0.05);
  --glass: rgba(255, 255, 255, 0.85);
}

/* 🧬 Background Decorations */
body {
  position: relative;
  overflow-x: hidden;
}

body::before, body::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 143, 226, 0.05) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  animation: float 20s infinite alternate ease-in-out;
}

body::before {
  top: 10%;
  left: -200px;
}

body::after {
  top: 50%;
  right: -200px;
  background: radial-gradient(circle, rgba(129, 200, 130, 0.05) 0%, transparent 70%);
  animation-delay: -10s;
}

@keyframes float {
  from { transform: translate(0, 0) rotate(0deg); }
  to { transform: translate(100px, 100px) rotate(30deg); }
}

/* 🧱 Base Settings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: 'Outfit', -apple-system, sans-serif;
  color: var(--text-primary);
  background-color: var(--light-bg);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* 🪄 Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulse-whatsapp {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* 📱 Navigation - Floating Card Model */
nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background: white;
  padding: 0.8rem 2rem;
  z-index: 2000;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.nav-wrapper {
  display: flex !important;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.logo img {
  height: 52px !important;
  width: auto;
  transition: var(--transition);
}

.logo:hover img {
  transform: scale(1.05);
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  text-decoration: none !important;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--secondary-color);
}

.menu-toggle {
  display: none;
  background: var(--light-bg);
  border: 1px solid rgba(17, 5, 67, 0.1);
  color: var(--primary-color);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 2100;
}

/* 🏹 Hero Section - Absolute Clarity Variant */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  background-color: #ffffff;
  /* Gradiente extendido para máxima legibilidad del texto */
  background:
    linear-gradient(90deg, #ffffff 35%, rgba(255, 255, 255, 0.85) 60%, rgba(255, 255, 255, 0) 95%),
    url('logo/portada1.png') no-repeat;
  background-position: right bottom;
  background-size: auto 85%;
  /* Reducimos altura para bajar al personaje */
  position: relative;
  overflow: hidden;
  color: var(--text-primary);
  text-align: left;
  animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Efecto de profundidad adicional */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, transparent 15%);
  pointer-events: none;
}

.hero-container {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 1400px !important;
  margin-left: 5% !important;
  margin-right: auto !important;
  text-align: left;
  z-index: 10;
}

.hero-content {
  width: 100%;
  max-width: 600px;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.1;
  color: #110543;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
  font-weight: 800;
  text-shadow: 0 0 20px #ffffff, 0 0 10px #ffffff;
}

.hero h1 span {
  color: #1C8FE2 !important;
  display: block;
}

.hero p {
  font-size: 1.3rem;
  color: #1e293b;
  line-height: 1.6;
  margin-bottom: 3.5rem;
  max-width: 650px;
  font-weight: 600;
  text-shadow: 0 0 15px #ffffff, 0 0 5px #ffffff;
}

.hero-image {
  display: none;
}

.hero-btns {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero .badge-new {
  background: rgba(28, 143, 226, 0.1) !important;
  color: #1C8FE2 !important;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 2rem;
  display: inline-block;
  border: 1px solid rgba(28, 143, 226, 0.2);
  box-shadow: 0 0 20px rgba(28, 143, 226, 0.1);
  backdrop-filter: blur(5px);
}

.hero-btns img {
  transition: var(--transition);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.hero-btns img:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.2));
}

@keyframes blob {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  100% {
    border-radius: 50% 50% 30% 70% / 50% 30% 70% 50%;
  }
}

/* 🧩 Shared Components */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-vibrant) 0%, #4facfe 100%);
  color: white;
  box-shadow: 0 10px 20px rgba(28, 143, 226, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(30deg);
  transition: all 0.6s ease;
  filter: blur(5px);
}

.btn-primary:hover::after {
  left: 120%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #4facfe 0%, var(--blue-vibrant) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(28, 143, 226, 0.4);
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

.btn-portal {
  background: white;
  color: var(--navy);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  border: 1px solid rgba(17, 5, 67, 0.1);
  box-shadow: var(--shadow-premium);
}

.btn-portal:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}

/* 🚚 Empleos Section Refining */
#empleos .container>div {
  background: var(--white);
  padding: 4rem;
  border-radius: 40px;
  box-shadow: 0 40px 100px -20px rgba(17, 5, 67, 0.08);
  border: 1px solid #f1f5f9;
}

/* 💬 Testimonios Refining */
.testimonial-card {
  background: var(--white);
  padding: 3.5rem;
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  position: relative;
  border: 1px solid #f1f5f9;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--secondary-color);
}

.testimonial-card i {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 3rem;
  color: var(--secondary-color);
  opacity: 0.1;
}

.testimonial-card p {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.testimonial-card h4 {
  color: var(--secondary-color);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 💠 Sections */
section {
  padding: 50px 0;
  scroll-margin-top: 80px;
}

.section-title {
  text-align: center;
  margin-bottom: 35px;
  position: relative;
}

.section-title h2 {
  font-size: 3rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-title p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 5px;
  background: var(--secondary-color);
  margin: 2rem auto 0;
  border-radius: 10px;
}

/* 🌟 Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), 
              box-shadow 0.6s ease, 
              opacity 0.4s ease,
              filter 0.4s ease;
  border: 1px solid #f1f5f9;
  text-align: left;
  height: 100%;
}

/* Efecto Unificado Pro para Grillas */
.grid-pro:hover .benefit-card,
.grid-pro:hover .step-card {
  opacity: 0.6;
  filter: grayscale(0.2) blur(1px);
}

.grid-pro .benefit-card:hover,
.grid-pro .step-card:hover {
  opacity: 1;
  filter: grayscale(0) blur(0);
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px -12px rgba(17, 5, 67, 0.15);
  border-color: var(--secondary-color);
  z-index: 10;
}

/* ⚙️ Step Cards (Funcionamiento) */
.step-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 32px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), 
              box-shadow 0.6s ease, 
              opacity 0.4s ease,
              filter 0.4s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1c8fe2 0%, #128c7e 100%);
  color: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 12px 24px rgba(28, 143, 226, 0.2);
  transition: var(--transition);
}

.step-icon i {
  width: 32px;
  height: 32px;
  stroke-width: 2.5;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.step-card:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.step-card h4 {
  font-size: 1.6rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.step-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.1rem;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1c8fe2 0%, #128c7e 100%);
  color: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 12px 24px rgba(28, 143, 226, 0.2);
  transition: var(--transition);
}

.benefit-icon i {
  width: 32px;
  height: 32px;
  stroke-width: 2.5;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 30px rgba(28, 143, 226, 0.3);
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

/* 📑 Cartelera Virtual */
.cartelera-section {
  background: white;
  padding: 80px 0;
  position: relative;
}

.cartelera-card {
  background: var(--light-bg);
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}

.cartelera-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(28, 143, 226, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cartelera-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.cartelera-text {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cartelera-btns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem; /* Más separación entre botones */
  margin-top: 3rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.btn-pdf {
  background: white;
  border: 1px solid #e2e8f0;
  padding: 3rem 2rem;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), 
              box-shadow 0.6s ease, 
              background 0.4s ease, 
              opacity 0.4s ease,
              filter 0.4s ease;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  position: relative;
}

/* Efecto Elegante Pro: Cuando pasas el mouse por uno, los otros se suavizan */
.cartelera-btns:hover .btn-pdf {
  opacity: 0.6;
  filter: grayscale(0.2) blur(1px);
}

.cartelera-btns .btn-pdf:hover {
  opacity: 1;
  filter: grayscale(0) blur(0);
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px -12px rgba(17, 5, 67, 0.15);
  border-color: var(--secondary-color);
  z-index: 2;
}

.pdf-icon-pro {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--blue-vibrant) 0%, #128c7e 100%);
  color: white;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  box-shadow: 0 12px 24px rgba(28, 143, 226, 0.2);
  transition: var(--transition);
}

.pdf-icon-pro i {
  width: 38px;
  height: 38px;
  stroke-width: 2.2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.btn-pdf:hover .pdf-icon-pro {
  transform: scale(1.1) rotate(-8deg);
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.btn-pdf span {
  font-weight: 800;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.3;
}



/* Modal PDF */
.modal-pdf-content {
  background: #fff;
  width: 95%;
  height: 90vh;
  max-width: 1100px;
  border-radius: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.pdf-viewer-container {
  flex: 1;
  width: 100%;
  height: 100%;
}

.pdf-header {
  padding: 1rem 2rem;
  background: var(--navy);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-close-pdf {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-close-pdf:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* 🛒 Footer */
footer {
  background: var(--navy);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  opacity: 0.8;
  font-size: 0.9rem;
}

footer a,
footer h3,
footer p,
footer li {
  color: white !important;
  opacity: 1; /* Máximo contraste para 100% Accesibilidad */
  text-decoration: none;
  transition: var(--transition);
}

footer p {
  opacity: 0.92; /* Legibilidad nítida */
}

.store-badge:hover img {
  transform: translateY(-3px) scale(1.05);
  filter: brightness(1.2);
}

footer li {
  list-style: none;
  margin-bottom: 0.8rem;
}

/* 🔘 Estilos Base para Botones Flotantes (FAB) */
.fab-container {
  position: fixed;
  right: 30px;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  border-radius: 50px;
  height: 65px;
  min-width: 75px;
  padding: 0 25px;
  color: #fff;
}

.fab-container i {
  font-size: 28px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.fab-container span {
  font-weight: 800;
  font-size: 1.1rem;
  margin-left: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.fab-container:hover {
  transform: translateY(-8px) scale(1.08);
}

/* Efecto de brillo de barrido (Shared) */
.fab-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: all 0.6s;
}

.fab-container:hover::before {
  left: 150%;
}

/* 🟢 Botón Flotante PQRS (WhatsApp) */
.whatsapp-float {
  bottom: 30px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 10px 25px rgba(18, 140, 126, 0.3), inset 0 2px 2px rgba(255, 255, 255, 0.4);
  animation: pulse-whatsapp-pro 2.5s infinite;
}

.whatsapp-float:hover {
  background: linear-gradient(135deg, #28e06f 0%, #17a091 100%);
  box-shadow: 0 20px 35px rgba(18, 140, 126, 0.4);
}

/* 🔵 Botón Flotante Panel Cliente */
.panel-float {
  bottom: 110px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1764a0 100%);
  box-shadow: 0 10px 25px rgba(28, 143, 226, 0.3), inset 0 2px 2px rgba(255, 255, 255, 0.4);
  animation: pulse-panel-pro 2.5s infinite;
  animation-delay: 0.5s;
}

.panel-float:hover {
  background: linear-gradient(135deg, #2fa3f7 0%, #1c7ec7 100%);
  box-shadow: 0 20px 35px rgba(28, 143, 226, 0.4);
}

/* 📄 Botón Flotante Brochure Digital */
.brochure-float {
  bottom: 190px;
  background: linear-gradient(135deg, #110543 0%, #1c0b6b 100%);
  box-shadow: 0 10px 25px rgba(17, 5, 67, 0.3), inset 0 2px 2px rgba(255, 255, 255, 0.3);
  animation: pulse-brochure-pro 2.5s infinite;
  animation-delay: 1s;
}

.brochure-float:hover {
  background: linear-gradient(135deg, #1c0b6b 0%, #110543 100%);
  box-shadow: 0 20px 35px rgba(17, 5, 67, 0.5);
}

/* 💫 Animaciones de Pulso Premium (Sombra) */
@keyframes pulse-whatsapp-pro {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-panel-pro {
  0% { box-shadow: 0 0 0 0 rgba(28, 143, 226, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(28, 143, 226, 0); }
  100% { box-shadow: 0 0 0 0 rgba(28, 143, 226, 0); }
}

@keyframes pulse-brochure-pro {
  0% { box-shadow: 0 0 0 0 rgba(17, 5, 67, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(17, 5, 67, 0); }
  100% { box-shadow: 0 0 0 0 rgba(17, 5, 67, 0); }
}

footer a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-links ul {
  padding: 0;
  margin: 0;
}

/* 📱 Responsive Logic - SMART & FINO */
@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 1.5rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 2050;
    opacity: 0;
    visibility: hidden;
  }

  .nav-links.active {
    right: 0;
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    padding: 0.5rem;
  }
}

@media (max-width: 968px) {
  .hero {
    background-image: none !important;
    text-align: center;
    padding-top: 140px;
    padding-bottom: 60px;
    min-height: auto;
  }

  .hero-container {
    margin: 0 auto !important;
    align-items: center;
    padding: 0 2rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    margin: 0 auto 2.5rem;
  }

  .hero-btns {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .benefits-grid,
  [style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .nav-wrapper {
    padding: 0;
  }

  .logo img {
    height: 40px !important;
  }

  .whatsapp-float,
  .panel-float,
  .brochure-float,
  .home-float {
    bottom: 20px;
    right: 20px;
    padding: 0;
    width: 60px;
    min-width: 60px;
    height: 60px;
  }

  .panel-float {
    bottom: 90px;
  }

  .brochure-float,
  .home-float {
    bottom: 160px;
  }

  .fab-container span {
    display: none;
  }

  .btn-portal {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .step-card,
  .benefit-card {
    padding: 2rem 1.5rem;
  }
}