@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --background: #000000;
  --foreground: #ffffff;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --zinc-900: #18181b;
  --zinc-950: #09090b;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #27272a;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo-box {
  width: 40px;
  height: 40px;
  background: linear-gradient(to bottom right, var(--amber-400), var(--amber-600));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: black;
}

.nav-logo-text {
  display: none;
}

@media (min-width: 640px) {
  .nav-logo-text {
    display: block;
  }
}

.nav-logo-text span:first-child {
  color: white;
  font-weight: 600;
}

.nav-logo-text span:last-child {
  color: var(--amber-400);
  font-weight: 600;
}

.nav-links {
  display: none;
  gap: 2rem;
}

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

.nav-links a {
  color: #d4d4d8;
  transition: color 0.2s;
}

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

.nav-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .nav-actions {
    display: flex;
  }
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--amber-400);
  font-weight: 500;
}

.nav-phone:hover {
  color: #fcd34d;
}

.btn-whatsapp {
  background: var(--amber-500);
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-whatsapp:hover {
  background: var(--amber-400);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  padding: 1rem;
  background: black;
  border-top: 1px solid #27272a;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  color: #d4d4d8;
}

.mobile-menu a:hover {
  color: var(--amber-400);
}

.mobile-menu .btn-group {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu .btn {
  display: block;
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, black, var(--zinc-950), black);
  z-index: 0;
}

.hero-glow-1 {
  position: absolute;
  top: 80px;
  left: 0;
  width: 500px;
  height: 500px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50%;
  filter: blur(150px);
  z-index: 0;
}

.hero-glow-2 {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50%;
  filter: blur(150px);
  z-index: 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--amber-400);
  width: fit-content;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--amber-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.25rem;
  }
}

.hero h1 span {
  display: block;
}

.hero h1 span:first-child {
  color: white;
}

.hero h1 span:last-child {
  color: var(--amber-400);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #a1a1aa;
}

.hero-subtitle span {
  color: var(--amber-400);
  font-weight: 600;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-btns {
    flex-direction: row;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--amber-500);
  color: black;
}

.btn-primary:hover {
  background: var(--amber-400);
  transform: scale(1.05);
}

.btn-outline {
  border: 2px solid var(--amber-500);
  color: var(--amber-400);
  background: transparent;
}

.btn-outline:hover {
  background: var(--amber-500);
  color: black;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .hero-stats {
    gap: 2rem;
    justify-content: flex-start;
  }
}

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

.hero-stat p:first-child {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber-400);
}

@media (min-width: 640px) {
  .hero-stat p:first-child {
    font-size: 1.875rem;
  }
}

.hero-stat p:last-child {
  color: #71717a;
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .hero-stat p:last-child {
    font-size: 0.875rem;
  }
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: #27272a;
}

@media (min-width: 640px) {
  .hero-stat-divider {
    height: 48px;
  }
}

.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero-image-box {
  position: relative;
  border-radius: 1rem;
  aspect-ratio: 3/4;
  min-height: 300px;
}

@media (min-width: 768px) {
  .hero-image-box:first-child {
    margin-top: 2rem;
  }
}

.hero-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.hero-image-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  border-radius: 1rem;
  z-index: 1;
  pointer-events: none;
}

.hero-image-box.before {
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.hero-image-box.after {
  border: 1px solid rgba(245, 158, 11, 0.3);
  background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.1));
}

.hero-image-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  z-index: 2;
}

.hero-image-content .label {
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hero-image-box.before .label {
  color: #f87171;
}

.hero-image-box.after .label {
  color: var(--amber-400);
}

.hero-image-content .title {
  font-weight: 700;
  color: white;
}

.hero-image-content ul {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #a1a1aa;
  list-style: none;
}

.hero-image-content ul li::before {
  content: '• ';
}

.hero-badge-absolute {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--amber-500);
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.75rem;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--zinc-950);
}

.section-black {
  background: black;
}

.section-gradient {
  background: linear-gradient(to bottom, black, var(--zinc-950), black);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-subtitle {
  color: #a1a1aa;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.section-title span {
  color: var(--amber-400);
}

/* Problem Section */
.problems-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .problems-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-card {
  background: rgba(24, 24, 27, 0.5);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.problem-card:hover {
  border-color: rgba(239, 68, 68, 0.4);
}

.problem-card .emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.problem-card h3 {
  color: #f87171;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.problem-card p {
  color: #71717a;
}

.problem-subtext {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.25rem;
  color: #a1a1aa;
}

.problem-subtext span {
  color: var(--amber-400);
  font-weight: 600;
}

/* Solution Section */
.solution-bg-glow {
  position: absolute;
  top: 0;
  left: 25%;
  width: 384px;
  height: 384px;
  background: var(--amber-500);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.2;
}

.solution-card {
  background: linear-gradient(to bottom right, var(--zinc-900), var(--zinc-800));
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 1.5rem;
  overflow: hidden;
  display: grid;
}

@media (min-width: 768px) {
  .solution-card {
    grid-template-columns: 1fr 1fr;
  }
}

.solution-image {
  position: relative;
  min-height: 300px;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-content {
  padding: 2rem;
}

@media (min-width: 640px) {
  .solution-content {
    padding: 3rem;
  }
}

.solution-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.solution-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.solution-content li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d4d4d8;
}

.solution-content li svg {
  color: var(--amber-400);
  flex-shrink: 0;
}

.sparkle-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(to bottom right, var(--amber-400), var(--amber-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.sparkle-icon svg {
  width: 40px;
  height: 40px;
  color: black;
}

.solution-title-gradient {
  background: linear-gradient(to right, var(--amber-400), var(--amber-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Features Grid */
.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: rgba(24, 24, 27, 0.5);
  border: 1px solid #27272a;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.2s;
}

.feature-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: scale(1.02);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.2s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: black;
}

.feature-icon.amber { background: linear-gradient(to bottom right, var(--amber-400), var(--amber-600)); }
.feature-icon.blue { background: linear-gradient(to bottom right, #60a5fa, #2563eb); }
.feature-icon.green { background: linear-gradient(to bottom right, #4ade80, #16a34a); }
.feature-icon.zinc { background: linear-gradient(to bottom right, #a1a1aa, #71717a); }
.feature-icon.purple { background: linear-gradient(to bottom right, #a78bfa, #7c3aed); }
.feature-icon.red { background: linear-gradient(to bottom right, #f87171, #dc2626); }

.feature-card h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #71717a;
}

.feature-quote {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.5rem;
  color: var(--amber-400);
  font-weight: 600;
}

/* USP Section */
.usp-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .usp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.usp-card {
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.usp-card.featured {
  background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.05));
  border: 2px solid rgba(245, 158, 11, 0.5);
}

.usp-card.green {
  background: linear-gradient(to bottom right, rgba(74, 222, 128, 0.1), rgba(22, 163, 74, 0.05));
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.usp-card.purple {
  background: linear-gradient(to bottom right, rgba(167, 139, 250, 0.1), rgba(124, 58, 237, 0.05));
  border: 1px solid rgba(167, 139, 250, 0.3);
}

.usp-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--amber-500);
  color: black;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: bold;
}

.usp-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.usp-icon.amber { background: var(--amber-500); }
.usp-icon.green { background: #4ade80; }
.usp-icon.purple { background: #a78bfa; }

.usp-icon svg {
  width: 40px;
  height: 40px;
  color: black;
}

.usp-card h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.usp-card p {
  color: #a1a1aa;
  margin-bottom: 1rem;
}

.usp-card .highlight {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0.75rem;
  padding: 1rem;
}

.usp-card .highlight p {
  margin: 0;
}

.usp-card.featured .highlight p {
  color: var(--amber-400);
  font-weight: 600;
}

.usp-card.green .highlight p {
  color: #4ade80;
  font-weight: 600;
}

.usp-card.purple .highlight p {
  color: #a78bfa;
  font-weight: 600;
}

.guarantee-box {
  background: linear-gradient(to right, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.2));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.guarantee-box p {
  font-size: 1.25rem;
  color: white;
}

.guarantee-box p span {
  color: var(--amber-400);
  font-weight: 600;
}

/* Offer Section */
.offer-wrapper {
  background: linear-gradient(to bottom right, var(--amber-500), var(--amber-600));
  border-radius: 1.5rem;
  padding: 4px;
}

.offer-inner {
  background: black;
  border-radius: 1.5rem;
  padding: 2rem;
}

@media (min-width: 640px) {
  .offer-inner {
    padding: 3rem;
  }
}

.offer-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .offer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.offer-content .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  color: var(--amber-400);
  font-weight: 500;
}

.offer-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .offer-content h2 {
    font-size: 2.5rem;
  }
}

.offer-content .free-text {
  background: linear-gradient(to right, var(--amber-400), var(--amber-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.5rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .offer-content .free-text {
    font-size: 3.5rem;
  }
}

.offer-content .details {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.offer-content .detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #a1a1aa;
}

.offer-content .detail svg {
  color: var(--amber-400);
}

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

.offer-image img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 1rem;
  border: 4px solid rgba(245, 158, 11, 0.5);
  box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.2);
}

.offer-image .btn {
  margin-top: 1.5rem;
}

/* Service Area */
.area-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .area-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.area-card {
  border-radius: 1rem;
  padding: 2rem;
}

.area-card.primary {
  background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.1));
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.area-card.normal {
  background: var(--zinc-900);
  border: 1px solid #27272a;
}

.area-card .header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.area-card .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-card.primary .icon-box {
  background: var(--amber-500);
}

.area-card.normal .icon-box {
  background: #3f3f46;
}

.area-card .icon-box svg {
  width: 24px;
  height: 24px;
}

.area-card.primary .icon-box svg {
  color: black;
}

.area-card.normal .icon-box svg {
  color: #d4d4d8;
}

.area-card h3 {
  color: white;
  font-size: 1.25rem;
}

.area-card.primary h3 {
  color: var(--amber-400);
}

.area-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #a1a1aa;
}

.area-card ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.area-card ul li svg {
  width: 16px;
  height: 16px;
  color: var(--amber-400);
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

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

.cta-box .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(to bottom right, var(--amber-400), var(--amber-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.cta-box .icon svg {
  width: 40px;
  height: 40px;
  color: black;
}

.cta-box h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.cta-box h3 span {
  color: var(--amber-400);
}

.cta-box p {
  color: #71717a;
}

/* Contact Section */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  background: var(--zinc-900);
  border: 1px solid #27272a;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-card a {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.contact-card a:hover {
  background: #27272a;
  border-radius: 1rem;
  margin: -0.5rem;
  padding: 0.5rem;
}

.contact-card .icon-box {
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card .icon-box svg {
  width: 24px;
  height: 24px;
  color: var(--amber-400);
}

.contact-card .label {
  color: #71717a;
  font-size: 0.875rem;
}

.contact-card .value {
  color: white;
  font-weight: 600;
}

.contact-card .value-small {
  font-size: 0.875rem;
  color: #a1a1aa;
}

.response-box {
  background: linear-gradient(to right, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.1));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.response-box p {
  color: var(--amber-400);
  font-weight: 600;
  font-size: 1.125rem;
}

.response-box p:last-child {
  color: #71717a;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Lead Form */
.form-box {
  background: var(--zinc-900);
  border: 1px solid #27272a;
  border-radius: 1rem;
  padding: 1.5rem;
}

.form-box h3 {
  color: white;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.form-box .subtitle {
  color: #71717a;
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group select {
  width: 100%;
  background: var(--zinc-800);
  border: 1px solid #3f3f46;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: white;
  font-size: 1rem;
}

.form-group input::placeholder {
  color: #71717a;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--amber-400);
}

.form-box .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.form-box .btn-green {
  background: #22c55e;
  color: white;
}

.form-box .btn-green:hover {
  background: #16a34a;
}

.form-box .note {
  color: #71717a;
  font-size: 0.75rem;
  text-align: center;
  margin-top: 0.5rem;
}

/* Footer */
.footer {
  background: var(--zinc-950);
  border-top: 1px solid #27272a;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand p {
  color: #a1a1aa;
  margin: 1rem 0;
  max-width: 24rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  color: #a1a1aa;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--amber-400);
}

.footer-address {
  color: #71717a;
  font-size: 0.875rem;
  margin-top: 0.75rem;
  line-height: 1.6;
}

.footer h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #a1a1aa;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid #27272a;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: #71717a;
}

/* Final CTA */
.final-cta {
  padding: 4rem 0;
  background: linear-gradient(to right, black, var(--zinc-950), black);
  border-top: 1px solid #27272a;
  text-align: center;
}

.final-cta p {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.final-cta p span {
  display: block;
}

.final-cta .gradient {
  background: linear-gradient(to right, var(--amber-400), var(--amber-500), var(--amber-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
}

@media (min-width: 640px) {
  .final-cta p span {
    display: inline;
  }
}

.final-cta .btn-group {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .final-cta .btn-group {
    flex-direction: row;
    justify-content: center;
  }
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sticky-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.sticky-btn:hover {
  transform: scale(1.1);
}

.sticky-btn.whatsapp {
  background: #22c55e;
  color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.sticky-btn.call {
  background: var(--amber-500);
  color: black;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.sticky-btn svg {
  width: 24px;
  height: 24px;
}

/* Franchise Page */
.page-hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(to bottom, black, var(--zinc-950));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 50%;
  filter: blur(150px);
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

@media (min-width: 640px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}

.page-hero h1 span {
  display: block;
}

.page-hero .gradient {
  background: linear-gradient(to right, var(--amber-400), var(--amber-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero .tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.page-hero .tag {
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--amber-400);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
}

.page-hero .btn-group {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .page-hero .btn-group {
    flex-direction: row;
    justify-content: center;
  }
}

/* Investment Cards */
.investment-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .investment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.investment-card {
  background: var(--zinc-900);
  border: 1px solid #27272a;
  border-radius: 1rem;
  padding: 1.5rem;
}

.investment-card .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.investment-card h4 {
  color: white;
  font-size: 1.125rem;
}

.investment-card .value {
  font-weight: 700;
  font-size: 1.25rem;
}

.investment-card .value.amber { color: var(--amber-400); }
.investment-card .value.green { color: #4ade80; }

.investment-card p {
  color: #71717a;
  font-size: 0.875rem;
}

.territory-card {
  background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.1));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 1.5rem;
  padding: 2rem;
}

.territory-card h3 {
  color: white;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.territory-card .option {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.territory-card .option-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.territory-card .option-icon.amber {
  background: var(--amber-500);
}

.territory-card .option-icon.zinc {
  background: #3f3f46;
}

.territory-card .option-icon svg {
  width: 24px;
  height: 24px;
}

.territory-card .option-icon.amber svg {
  color: black;
}

.territory-card .option-icon.zinc svg {
  color: #d4d4d8;
}

.territory-card .option h4 {
  color: var(--amber-400);
  font-weight: 600;
}

.territory-card .option p {
  color: #71717a;
  font-size: 0.875rem;
}

.territory-card .slots {
  background: rgba(245, 158, 11, 0.2);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  margin-top: 1.5rem;
}

.territory-card .slots p:first-child {
  color: var(--amber-400);
  font-weight: 600;
}

.territory-card .slots p:last-child {
  color: #71717a;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* City Page */
.city-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--amber-400);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.features-list {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .features-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-item {
  background: var(--zinc-900);
  border: 1px solid #27272a;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-item .icon-box {
  width: 40px;
  height: 40px;
  background: rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item .icon-box svg {
  color: var(--amber-400);
  width: 20px;
  height: 20px;
}

.feature-item h4 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.feature-item p {
  color: #71717a;
  font-size: 0.875rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--zinc-900);
  border: 1px solid #27272a;
  border-radius: 1rem;
  padding: 1.5rem;
}

.testimonial-card .stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-card .stars svg {
  width: 20px;
  height: 20px;
  fill: var(--amber-400);
  color: var(--amber-400);
}

.testimonial-card blockquote {
  color: #d4d4d8;
  margin-bottom: 1rem;
  font-style: italic;
}

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

.testimonial-card .avatar {
  width: 40px;
  height: 40px;
  background: rgba(245, 158, 11, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-400);
  font-weight: 600;
}

.testimonial-card .author-name {
  color: white;
  font-weight: 600;
}

.testimonial-card .author-location {
  color: #71717a;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.testimonial-card .author-location svg {
  width: 12px;
  height: 12px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem;
  font-size: 0.875rem;
  color: #71717a;
}

.breadcrumb a {
  color: var(--amber-400);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s, transform 0.6s;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}
