:root {
  /* Brand Colors */
  --color-primary-dark: #102a43; /* Darker blue */
  --color-primary: #1b3a57; /* Logo Dark Blue */
  --color-primary-light: #244b70;
  
  --color-secondary: #7eb34a; /* Logo Green */
  --color-secondary-hover: #69993b;
  --color-secondary-light: #d8ecd1;
  
  --color-accent: #75b9e7; /* Logo Light Blue */
  
  /* Neutral Colors */
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-text: #334155;
  --color-text-light: #64748b;
  --color-text-heading: #0f172a;
  
  /* Shadows & Borders */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  
  --border-radius: 12px;
  --border-radius-lg: 24px;
  
  /* Typography */
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-heading: 'Outfit', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-heading);
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

.highlight {
  color: var(--color-secondary);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.btn-primary {
  background-color: var(--color-secondary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(126, 179, 74, 0.39);
}

.btn-primary:hover {
  background-color: var(--color-secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(126, 179, 74, 0.5);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 12px 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

header.scrolled .logo-img {
  height: 70px;
}

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

header.scrolled .mobile-menu-btn {
  color: var(--color-primary-dark);
}

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

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

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

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  transition: color 0.3s ease;
}

.logo-img {
  height: 100px; /* Increased size for the transparent logo */
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

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

.nav-links a {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-secondary);
  transition: width 0.3s ease;
}

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

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

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  overflow: hidden;
  padding-top: 180px; /* Increased from 80px to account for 100px logo + padding */
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 10s infinite ease-in-out alternate;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--color-secondary);
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--color-accent);
  bottom: -50px;
  left: -150px;
  animation-delay: -5s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  top: 30%;
  left: 30%;
  animation-duration: 15s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 50px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  color: #fff;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(126, 179, 74, 0.2);
  color: var(--color-secondary);
  border: 1px solid rgba(126, 179, 74, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #fff;
}

.hero-text p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatars {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background-size: cover;
  background-position: center;
  margin-left: -12px;
}

.avatar:first-child { margin-left: 0; background-color: #f1f5f9; background-image: url('https://i.pravatar.cc/100?img=1'); }
.avatar:nth-child(2) { background-color: #e2e8f0; background-image: url('https://i.pravatar.cc/100?img=2'); z-index: 1;}
.avatar:nth-child(3) { background-color: #cbd5e1; background-image: url('https://i.pravatar.cc/100?img=3'); z-index: 2;}

.social-proof p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-glass);
  position: relative;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* Premium gradient background as placeholder for image */
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0)), 
              url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
  background-size: cover;
  background-position: center;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(to top, rgba(16, 42, 67, 0.9) 0%, rgba(16, 42, 67, 0) 60%);
}

.before-after-label {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.showcase-content {
  position: relative;
  z-index: 2;
  color: white;
}

.showcase-icon {
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: 16px;
}

.showcase-content h3 {
  color: white;
  margin-bottom: 8px;
}

.floating-badge {
  position: absolute;
  background: white;
  color: var(--color-text-heading);
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  animation: float 6s infinite ease-in-out alternate;
}

.floating-badge i {
  color: var(--color-secondary);
  font-size: 1.25rem;
}

.badge-left {
  top: 20%;
  left: -30px;
}

.badge-right {
  bottom: 30%;
  right: -40px;
  animation-delay: -3s;
}

/* Sections Common */
section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 64px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

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

/* Services */
.services {
  background-color: var(--color-surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--color-surface);
  border: 1px solid #e2e8f0;
  padding: 40px 32px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

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

.service-icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: var(--color-secondary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-secondary);
  font-size: 32px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
  background-color: var(--color-secondary);
  color: white;
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--color-text-light);
}

/* About */
.about {
  background-color: var(--color-bg);
}

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

.image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.image-placeholder > i {
  display: none;
}

.overlay-stats {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--color-primary);
  color: white;
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-secondary);
}

.stat-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
}

.features-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.features-list i {
  font-size: 1.5rem;
  color: var(--color-secondary);
  margin-top: 4px;
}

.features-list strong {
  display: block;
  color: var(--color-text-heading);
  margin-bottom: 4px;
  font-size: 1.125rem;
}

.features-list p {
  color: var(--color-text-light);
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(126, 179, 74, 0.1) 0%, transparent 60%);
  z-index: 0;
}

.cta-container {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 64px 40px;
  border-radius: var(--border-radius-lg);
  max-width: 800px;
  margin: 0 auto;
}

.cta-container h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cta-container p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.cta-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(126, 179, 74, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(126, 179, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(126, 179, 74, 0); }
}

/* Footer */
footer {
  background-color: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

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

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

.footer-brand .logo-text {
  margin-bottom: 24px;
  display: block;
}

.footer-brand .logo-img {
  height: 100px;
  margin-bottom: 24px;
  display: block;
}

.footer-brand p {
  margin-bottom: 24px;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
}

.footer-links h3, .footer-contact h3 {
  color: white;
  margin-bottom: 24px;
  font-size: 1.25rem;
}

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

.footer-links a:hover {
  color: var(--color-secondary);
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact i {
  color: var(--color-secondary);
  font-size: 1.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.875rem;
}

/* Franquia Page Styles */
.franquia-page {
  background-color: var(--color-primary-dark);
}

.franquia-hero {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 180px;
  padding-bottom: 60px;
}

.franquia-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(126, 179, 74, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.franquia-hero-content {
  align-items: center;
}

.franquia-hero .hero-text {
  color: white;
}

.franquia-hero .hero-text h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 16px;
}

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

.subtitle-large strong {
  color: white;
}

.info-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: var(--border-radius);
  margin-bottom: 32px;
  color: white;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.hero-professional-img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--border-radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

.benefits-section {
  background-color: var(--color-primary);
  padding: 100px 0;
  color: white;
}

.benefits-section h2 {
  color: white;
}

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

.benefits-image-stack {
  position: relative;
  height: 500px;
}

.img-back {
  width: 80%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: var(--shadow-lg);
}

.img-front {
  width: 70%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  position: absolute;
  bottom: 0;
  left: 0;
  border: 4px solid var(--color-primary);
  box-shadow: var(--shadow-xl);
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.check-list i {
  color: var(--color-secondary);
  font-size: 1.5rem;
  margin-top: 2px;
}

.mt-4 { margin-top: 32px; }

.target-section {
  background-color: var(--color-primary-dark);
  color: white;
  padding: 80px 0;
}

.text-white { color: white !important; }

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

.target-card {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  padding: 32px 24px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.target-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.1); }

.target-icon {
  font-size: 3rem;
  color: var(--color-secondary);
  margin-bottom: 16px;
}

.urgency-section {
  padding: 80px 0;
  background-color: var(--color-primary);
}

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

.urgency-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.urgency-card h3 {
  color: white;
  margin-bottom: 16px;
}

.urgency-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 40px;
}

.urgency-icon-wrapper.warning {
  background-color: rgba(217, 119, 6, 0.2);
  color: #fbbf24;
}

.urgency-icon-wrapper.fire {
  background-color: rgba(220, 38, 38, 0.2);
  color: #f87171;
}

.form-section {
  padding: 100px 0;
  background-color: var(--color-primary-dark);
  position: relative;
  overflow: hidden;
}

.form-section h2 {
  color: white;
}

.relative-bg {
  position: relative;
}

.bg-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(126, 179, 74, 0.1) 0%, transparent 20%),
              radial-gradient(circle at 90% 80%, rgba(126, 179, 74, 0.1) 0%, transparent 20%);
  z-index: 0;
}

.form-container {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.form-header p {
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.7);
}

.form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

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

.form-input {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  color: white;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(126, 179, 74, 0.2);
}

.btn-block {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 5px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content, .franquia-hero-content, .benefits-content, .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .social-proof {
    justify-content: center;
  }

  .about-image, .benefits-image-stack {
    order: -1;
    margin-bottom: 40px;
    width: 100%;
  }
  
  .benefits-image-stack {
    height: 400px;
  }
  
  .img-back {
    height: 300px;
    width: 90%;
    right: 5%;
  }
  
  .img-front {
    height: 200px;
    width: 80%;
    left: 10%;
    bottom: 20px;
  }
  
  .check-list li {
    text-align: left;
  }
  
  .form-container {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  .mobile-menu-btn {
    display: block;
  }
  
  .nav-content {
    justify-content: space-between;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-primary-dark);
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    align-items: center;
    gap: 20px;
  }
  
  #navbar.scrolled .nav-links {
    background: white;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-cta {
    display: none;
  }
  
  .nav-cta.active {
    display: flex;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }
  
  .logo-img {
    height: 70px;
  }

  #navbar.scrolled .logo-img {
    height: 55px;
  }
  
  .hero {
    padding-top: 140px;
  }
  
  .franquia-hero {
    padding-top: 140px;
  }
  
  .hero-text h1, .franquia-hero .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .subtitle-large {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .footer-content, .footer-content-2 {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-links ul, .footer-contact ul {
    align-items: center;
  }
  
  .floating-badge {
    display: none;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .urgency-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .urgency-card {
    padding: 24px;
  }
  
  .target-grid {
    grid-template-columns: 1fr;
  }
  
  .info-box {
    text-align: left;
  }
}
