/* ============================================
   LICE CLEANER - Complete Stylesheet
   Design: Modern, Premium, Professional
   ============================================ */

/* ----- CSS Variables ----- */
:root {
  --lc-primary: #0a4b5c;
  --lc-primary-light: #327781;
  --lc-primary-dark: #062a35;
  --lc-secondary: #2a9d8f;
  --lc-accent: #e9c46a;
  --lc-accent-light: #f4d88d;
  --lc-dark: #0d1b2a;
  --lc-dark-2: #1b2838;
  --lc-light: #f0f4f8;
  --lc-light-2: #e2e8f0;
  --lc-white: #ffffff;
  --lc-text: #2d3436;
  --lc-text-light: #636e72;
  --lc-text-muted: #94a3b8;
  --lc-gradient-1: linear-gradient(135deg, #0a4b5c 0%, #2a9d8f 100%);
  --lc-gradient-2: linear-gradient(135deg, #0d1b2a 0%, #0a4b5c 100%);
  --lc-gradient-3: linear-gradient(135deg, #2a9d8f 0%, #e9c46a 100%);
  --lc-glass: rgba(255, 255, 255, 0.08);
  --lc-glass-border: rgba(255, 255, 255, 0.12);
  --lc-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --lc-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --lc-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --lc-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --lc-radius-sm: 8px;
  --lc-radius-md: 16px;
  --lc-radius-lg: 24px;
  --lc-radius-xl: 32px;
  --lc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --lc-font: 'Mulish', sans-serif;
  --lc-max-width: 1200px;
}

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

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--lc-transition);
}

ul {
  list-style: none;
}

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

.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--lc-gradient-2);
  color: var(--lc-white);
}

.section-light {
  background: var(--lc-light);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--lc-secondary);
  margin-bottom: 12px;
  position: relative;
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--lc-secondary);
  vertical-align: middle;
  margin: 0 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--lc-dark);
}

.section-dark .section-title {
  color: var(--lc-white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--lc-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--lc-font);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--lc-transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--lc-gradient-1);
  color: var(--lc-white);
  box-shadow: 0 4px 15px rgba(10, 75, 92, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10, 75, 92, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--lc-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--lc-white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--lc-white);
  color: var(--lc-primary);
  box-shadow: var(--lc-shadow-md);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--lc-shadow-lg);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ----- Navigation ----- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--lc-transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav-logo img {
  height: 48px;
  width: auto;
  transition: var(--lc-transition);
}

.scrolled .nav-logo img {
  height: 40px;
}

.nav-logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--lc-white);
  transition: var(--lc-transition);
}

.scrolled .nav-logo-text {
  color: var(--lc-primary);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
  transition: var(--lc-transition);
}

.scrolled .nav-links a {
  color: var(--lc-text);
}

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

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

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

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

.nav-links a.active {
  color: var(--lc-accent);
}

.scrolled .nav-links a.active {
  color: var(--lc-primary);
}

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

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--lc-white);
  border-radius: 4px;
  transition: var(--lc-transition);
  transform-origin: center;
}

.scrolled .hamburger span {
  background: var(--lc-dark);
}

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

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

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

.hamburger.active span {
  background: var(--lc-primary);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(13, 27, 42, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 999;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--lc-transition);
  padding: 8px 0;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--lc-accent);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--lc-gradient-2);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    radial-gradient(circle at 20% 50%, var(--lc-white) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--lc-white) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.hero-shapes .shape-1 {
  width: 600px;
  height: 600px;
  background: var(--lc-secondary);
  top: -200px;
  right: -200px;
  animation: float 20s ease-in-out infinite;
}

.hero-shapes .shape-2 {
  width: 400px;
  height: 400px;
  background: var(--lc-accent);
  bottom: -100px;
  left: -100px;
  animation: float 15s ease-in-out infinite reverse;
}

.hero-shapes .shape-3 {
  width: 200px;
  height: 200px;
  background: var(--lc-primary-light);
  top: 50%;
  left: 60%;
  animation: float 12s ease-in-out infinite 3s;
}

@keyframes float {
  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 .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--lc-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content h1 span {
  background: var(--lc-gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.7;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-image-wrapper img {
  width: 100%;
  border-radius: var(--lc-radius-lg);
  box-shadow: var(--lc-shadow-xl);
}

.hero-badge {
  position: absolute;
  background: var(--lc-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--lc-glass-border);
  border-radius: var(--lc-radius-md);
  padding: 16px 20px;
  color: var(--lc-white);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}

.hero-badge-1 {
  top: 20px;
  left: -20px;
}

.hero-badge-2 {
  bottom: 40px;
  right: -20px;
  animation-delay: 2s;
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lc-gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero-badge-text strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.hero-badge-text span {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ----- Stats Bar ----- */
.stats-bar {
  background: var(--lc-white);
  padding: 40px 0;
  box-shadow: var(--lc-shadow-md);
  position: relative;
  z-index: 3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 16px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--lc-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--lc-text-light);
  font-weight: 500;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--lc-white);
  border-radius: var(--lc-radius-lg);
  padding: 40px 32px;
  box-shadow: var(--lc-shadow-sm);
  transition: var(--lc-transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--lc-light-2);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--lc-gradient-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--lc-shadow-lg);
  border-color: transparent;
}

.service-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--lc-light-2);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--lc-transition);
}

.service-card:hover .service-number {
  background: var(--lc-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--lc-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--lc-transition);
}

.service-card:hover .service-icon {
  background: var(--lc-gradient-1);
  color: var(--lc-white);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--lc-dark);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--lc-text-light);
  line-height: 1.7;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: var(--lc-white);
  border-radius: var(--lc-radius-lg);
  overflow: hidden;
  box-shadow: var(--lc-shadow-sm);
  transition: var(--lc-transition);
  border: 1px solid var(--lc-light-2);
}

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

.product-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: var(--lc-transition);
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-body {
  padding: 28px;
}

.product-number {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lc-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.product-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--lc-dark);
}

.product-body p {
  font-size: 0.9rem;
  color: var(--lc-text-light);
  line-height: 1.7;
}

.product-price {
  margin-top: 16px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--lc-primary);
}

/* ============================================
   ABOUT / NOSOTROS SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--lc-radius-lg);
  box-shadow: var(--lc-shadow-lg);
}

.about-image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid var(--lc-secondary);
  border-radius: var(--lc-radius-lg);
  top: -16px;
  left: -16px;
  z-index: -1;
  opacity: 0.3;
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--lc-dark);
}

.about-content .about-lead {
  font-size: 1.1rem;
  color: var(--lc-secondary);
  font-weight: 600;
  margin-bottom: 20px;
}

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

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--lc-light);
  border-radius: var(--lc-radius-sm);
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--lc-gradient-1);
  color: var(--lc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.about-feature span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lc-text);
}

/* ----- Mission / Vision / Values ----- */
/* ----- Mission / Vision / Values Section ----- */
.section-mvv {
  position: relative;
  background: #0d1b2a;
  color: var(--lc-white);
  overflow: hidden;
}

.section-mvv::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.section-mvv .container {
  position: relative;
  z-index: 1;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mvv-card {
  padding: 40px 32px;
  transition: var(--lc-transition);
}

.mvv-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lc-accent);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.mvv-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.mvv-card ul {
  text-align: left;
}

.mvv-card ul li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.mvv-card ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--lc-accent);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-info .contact-lead {
  font-size: 1rem;
  color: var(--lc-text-light);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--lc-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--lc-primary);
  flex-shrink: 0;
  transition: var(--lc-transition);
}

.contact-detail:hover .contact-detail-icon {
  background: var(--lc-gradient-1);
  color: var(--lc-white);
}

.contact-detail h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--lc-dark);
}

.contact-detail p {
  font-size: 0.9rem;
  color: var(--lc-text-light);
  line-height: 1.6;
}

.contact-form-wrapper {
  background: var(--lc-white);
  border-radius: var(--lc-radius-lg);
  padding: 40px;
  box-shadow: var(--lc-shadow-md);
  border: 1px solid var(--lc-light-2);
}

.contact-form-wrapper h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--lc-dark);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lc-text);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--lc-font);
  font-size: 0.95rem;
  border: 2px solid var(--lc-light-2);
  border-radius: var(--lc-radius-sm);
  transition: var(--lc-transition);
  background: var(--lc-light);
  color: var(--lc-text);
  outline: none;
}

.form-control:focus {
  border-color: var(--lc-primary-light);
  background: var(--lc-white);
  box-shadow: 0 0 0 4px rgba(50, 119, 129, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* ============================================
   CERTIFICADOS SECTION
   ============================================ */
.cert-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: var(--lc-gradient-2);
  overflow: hidden;
  padding: 120px 0 80px;
}

.cert-content {
  text-align: center;
  color: var(--lc-white);
  max-width: 700px;
  margin: 0 auto;
}

.cert-content h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.cert-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.cert-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.cert-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--lc-glass);
  border: 1px solid var(--lc-glass-border);
  border-radius: var(--lc-radius-sm);
  color: var(--lc-white);
}

.cert-benefit-icon {
  font-size: 1.3rem;
  color: var(--lc-accent);
  flex-shrink: 0;
}

.cert-benefit span {
  font-size: 0.95rem;
  font-weight: 500;
}

.cert-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.cert-gallery img {
  width: 100%;
  border-radius: var(--lc-radius-md);
  box-shadow: var(--lc-shadow-md);
  transition: var(--lc-transition);
}

.cert-gallery img:hover {
  transform: scale(1.02);
  box-shadow: var(--lc-shadow-lg);
}



/* ============================================
   TESTIMONIALS / REVIEWS
   ============================================ */
.reviews-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--lc-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lc-white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--lc-transition);
}

.footer-links a:hover {
  color: var(--lc-accent);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--lc-transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--lc-accent);
}

/* ----- WhatsApp Float ----- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: var(--lc-transition);
  animation: whatsappPulse 2s ease-in-out infinite;
}

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

.whatsapp-float img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

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

/* ============================================
   ANIMATIONS
   ============================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-down"] { transform: translateY(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-up"].aos-animate,
[data-aos="fade-down"].aos-animate,
[data-aos="fade-left"].aos-animate,
[data-aos="fade-right"].aos-animate { transform: translate(0, 0); }

[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }

/* ============================================
   DESHAZTE SECTION
   ============================================ */
.deshazte-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.deshazte-col-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lc-dark);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--lc-secondary);
  display: inline-block;
}

.deshazte-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  margin-bottom: 8px;
  border-radius: var(--lc-radius-md);
  transition: var(--lc-transition);
  cursor: default;
}

.deshazte-item:hover {
  background: var(--lc-light);
  transform: translateX(4px);
}

.deshazte-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--lc-gradient-1);
  color: var(--lc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--lc-transition);
}

.deshazte-item:hover .deshazte-icon {
  transform: scale(1.1) rotate(-5deg);
}

.deshazte-item-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lc-dark);
  margin-bottom: 4px;
}

.deshazte-item-content p {
  font-size: 0.9rem;
  color: var(--lc-text-light);
  line-height: 1.6;
}

.deshazte-carousel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.deshazte-carousel img {
  width: 100%;
  border-radius: var(--lc-radius-md);
  box-shadow: var(--lc-shadow-md);
  transition: var(--lc-transition);
}

.deshazte-carousel img:hover {
  transform: scale(1.03);
  box-shadow: var(--lc-shadow-lg);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
  background: var(--lc-gradient-2);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    radial-gradient(circle at 20% 50%, var(--lc-white) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--lc-white) 1px, transparent 1px);
  background-size: 50px 50px;
}

.pricing-logo-wrap {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-logo-wrap img {
  max-width: 300px;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: var(--lc-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--lc-glass-border);
  border-radius: var(--lc-radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: var(--lc-transition);
  color: var(--lc-white);
}

.pricing-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.pricing-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lc-accent);
  margin-bottom: 12px;
}

.pricing-divider {
  width: 40px;
  height: 2px;
  background: var(--lc-accent);
  margin: 0 auto 16px;
  opacity: 0.5;
}

.pricing-img {
  width: 100%;
  max-width: 120px;
  height: 140px;
  object-fit: contain;
  margin: 0 auto 16px;
  transition: var(--lc-transition);
}

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

.pricing-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 4px;
}

.pricing-desc-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin-bottom: 16px;
}

.pricing-amount {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--lc-accent);
}

/* ============================================
   UTILITY: Desktop / Mobile Toggle
   ============================================ */
.deshazte-mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .deshazte-desktop {
    display: none;
  }

  .deshazte-mobile-only {
    display: block;
  }
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  position: relative;
  padding: 140px 0 80px;
  background: var(--lc-gradient-2);
  text-align: center;
  overflow: hidden;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--lc-white);
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto;
}

/* ----- Sucursal Filter ----- */
.sucursal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.sucursal-btn {
  padding: 12px 28px;
  border: 2px solid var(--lc-light-2);
  border-radius: 50px;
  background: var(--lc-white);
  color: var(--lc-text);
  font-family: var(--lc-font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--lc-transition);
}

.sucursal-btn:hover,
.sucursal-btn.active {
  background: var(--lc-gradient-1);
  color: var(--lc-white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(10, 75, 92, 0.3);
}

.sucursal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.sucursal-card {
  background: var(--lc-white);
  border-radius: var(--lc-radius-md);
  padding: 32px;
  box-shadow: var(--lc-shadow-md);
  border: 1px solid var(--lc-light-2);
  transition: var(--lc-transition);
}

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

.filterDiv {
  display: none;
}

.filterDiv.show {
  display: block;
}

/* ----- Contact Info Boxes (3-column) ----- */
.contact-info-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-info-box {
  text-align: center;
  padding: 40px 24px;
  background: var(--lc-white);
  border-radius: var(--lc-radius-md);
  box-shadow: var(--lc-shadow-md);
  border: 1px solid var(--lc-light-2);
  transition: var(--lc-transition);
}

.contact-info-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--lc-shadow-lg);
}

.contact-info-box .icon-box {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lc-gradient-1);
  border-radius: 20px;
  color: var(--lc-white);
  font-size: 1.8rem;
}

.contact-info-box h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lc-dark);
  margin-bottom: 8px;
}

.contact-info-box p {
  font-size: 0.95rem;
  color: var(--lc-text-light);
  line-height: 1.6;
}

.contact-info-box a {
  color: var(--lc-primary);
  font-weight: 600;
}

.contact-info-box a:hover {
  color: var(--lc-secondary);
}

/* ----- Map + Form Grid ----- */
.map-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--lc-radius-lg);
  overflow: hidden;
  box-shadow: var(--lc-shadow-md);
}

.map-form-grid .map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
}

.map-form-grid .form-wrapper {
  background: var(--lc-white);
  padding: 40px;
}

.map-form-grid .form-wrapper h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--lc-dark);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content p {
    margin: 0 auto 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-badge-1 { left: 0; }
  .hero-badge-2 { right: 0; }

  .hero-subtitle {
    margin: 0 auto 36px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    order: -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-boxes {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .map-form-grid {
    grid-template-columns: 1fr;
  }

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

  .services-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cert-benefits {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .deshazte-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .deshazte-images {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .deshazte-desktop .deshazte-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .deshazte-desktop .deshazte-images {
    display: none;
  }
}

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

  .section { padding: 60px 0; }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

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

  .services-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

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

  .about-features {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header {
    padding: 120px 0 60px;
  }

  .cert-content h1 {
    font-size: 2rem;
  }



@media (max-width: 768px) {
  .cert-gallery {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .contact-info-boxes {
    grid-template-columns: 1fr;
  }

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

  .sucursal-card {
    padding: 24px;
  }

  .map-form-grid .form-wrapper {
    padding: 24px;
  }

  .hero-badge {
    display: none;
  }

  .deshazte-desktop .deshazte-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .deshazte-desktop .deshazte-images {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .pricing-card {
    padding: 20px 16px;
  }

  .pricing-title {
    font-size: 1rem;
  }

  .pricing-amount {
    font-size: 1.2rem;
  }

  .pricing-img {
    max-width: 80px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

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

  .stat-number {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 16px;
  }
}
