:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #16161f;
  --text-primary: #fff;
  --text-secondary: #a0a0b0;
  --text-muted: #6b6b7b;
  --accent-primary: #6366f1;
  --accent-secondary: #8b5cf6;
  --accent-tertiary: #06b6d4;
  --accent-success: #10b981;
  --gradient-primary: linear-gradient(
    135deg,
    #6366f1 0%,
    #8b5cf6 50%,
    #06b6d4 100%
  );
  --gradient-text: linear-gradient(
    135deg,
    #6366f1 0%,
    #a855f7 50%,
    #06b6d4 100%
  );
  --gradient-glow: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.4) 0%,
    rgba(139, 92, 246, 0.4) 100%
  );
  --border-color: rgba(255, 255, 255, 0.08);
  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition-base: 0.3s ease;
  --font-display: "Outfit", sans-serif;
  --font-mono: "Space Mono", monospace;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-display);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 768px) {
  body {
    cursor: auto;
  }
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}
ul,
ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.cursor {
  width: 12px;
  height: 12px;
  background: var(--accent-primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  transition: transform 0.1s ease;
}
.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent-primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition:
    transform 0.15s ease,
    opacity 0.3s ease;
  opacity: 0.5;
}
.cursor.hover {
  transform: scale(2);
}
.cursor-follower.hover {
  transform: scale(1.5);
  opacity: 0.8;
}
@media (max-width: 768px) {
  .cursor,
  .cursor-follower {
    display: none;
  }
}
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-base);
}
.navbar.scrolled {
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.5rem;
}
.logo-icon {
  font-family: var(--font-mono);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-base);
}
.nav-links a:hover {
  color: var(--text-primary);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  padding: 10px 24px !important;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  color: var(--text-primary) !important;
  font-weight: 500;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}
.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-base);
}
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.mobile-menu a:hover {
  color: var(--text-primary);
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}
.glow-1 {
  width: 600px;
  height: 600px;
  background: var(--accent-primary);
  top: -200px;
  right: -200px;
  opacity: 0.15;
}
.glow-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-secondary);
  bottom: -150px;
  left: -150px;
  opacity: 0.12;
  animation-delay: -4s;
}
.floating-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.shape {
  position: absolute;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  animation: floatShape 20s linear infinite;
}
.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-duration: 25s;
}
.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-duration: 30s;
  animation-delay: -5s;
}
.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-duration: 22s;
  animation-delay: -10s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}
@keyframes floatShape {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-50px) rotate(180deg);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0) rotate(360deg);
    opacity: 0.3;
  }
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--accent-primary);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease forwards;
}
.pulse {
  width: 8px;
  height: 8px;
  background: var(--accent-success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
}
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition-base);
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}
.btn-primary svg {
  transition: var(--transition-base);
}
.btn-primary:hover svg {
  transform: translateX(4px);
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-primary);
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}
.stat {
  text-align: center;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-primary), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleY(0.5);
    opacity: 0.5;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 100px 16px 60px;
  }
  .hero-stats {
    gap: 30px;
  }
  .stat-number {
    font-size: 2rem;
  }
  .scroll-indicator {
    display: none;
  }
}
section {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent-primary);
  margin-bottom: 20px;
  font-family: var(--font-mono);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
}
.why-us {
  background: var(--bg-secondary);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-base);
}
.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}
.benefit-card:hover::before {
  transform: scaleX(1);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benefit-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-primary);
}
.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.benefit-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-glow);
  opacity: 0;
  transition: var(--transition-base);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}
.service-card:hover::after {
  opacity: 0.05;
}
.service-number {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-primary);
  margin-bottom: 20px;
}
.service-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
}
.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.service-card > p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.service-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent-primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.extra-services {
  margin-top: 60px;
  text-align: center;
}
.extra-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text-primary);
}
.extra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .extra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .extra-grid {
    grid-template-columns: 1fr;
  }
}
.extra-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}
.extra-item:hover {
  border-color: var(--accent-primary);
  transform: translateY(-2px);
}
.extra-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-primary);
  flex-shrink: 0;
}
.extra-item span {
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.process {
  background: var(--bg-secondary);
}
.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.process-line {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--accent-primary),
    var(--accent-tertiary)
  );
  opacity: 0.3;
}
@media (max-width: 600px) {
  .process-line {
    left: 24px;
  }
}
.process-step {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}
.process-step:last-child {
  margin-bottom: 0;
}
.step-number {
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-primary);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: var(--transition-base);
}
.process-step:hover .step-number {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}
@media (max-width: 600px) {
  .step-number {
    width: 48px;
    height: 48px;
    font-size: 0.9rem;
  }
  .process-step {
    gap: 20px;
  }
}
.step-content {
  flex: 1;
  padding-top: 16px;
}
.step-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-content p {
  color: var(--text-secondary);
  font-size: 1rem;
}
.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
}
.faq-item:hover {
  border-color: rgba(99, 102, 241, 0.3);
}
.faq-item.active {
  border-color: var(--accent-primary);
}
.faq-question {
  width: 100%;
  padding: 24px 32px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition-base);
}
.faq-question:hover {
  color: var(--accent-primary);
}
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-base);
}
.faq-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-primary);
  transition: var(--transition-base);
}
.faq-item.active .faq-icon {
  background: var(--gradient-primary);
}
.faq-item.active .faq-icon svg {
  stroke: #fff;
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-answer-content {
  padding: 0 32px 24px;
  color: var(--text-secondary);
  line-height: 1.7;
}
@media (max-width: 600px) {
  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }
  .faq-answer-content {
    padding: 0 20px 20px;
  }
}
.testimonials {
  background: var(--bg-secondary);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-base);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.3);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: #fbbf24;
}
.testimonial-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.testimonial-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0.1;
}
.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--accent-primary);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.cta-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.footer-brand .logo {
  margin-bottom: 20px;
}
.footer-brand p {
  color: var(--text-secondary);
  max-width: 300px;
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.footer-col a:hover {
  color: var(--accent-primary);
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}
.footer-social a:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
}
.footer-social svg {
  width: 20px;
  height: 20px;
  fill: var(--text-secondary);
  transition: var(--transition-base);
}
.footer-social a:hover svg {
  fill: #fff;
}
.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-legal a:hover {
  color: var(--accent-primary);
}
@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
::selection {
  background: var(--accent-primary);
  color: #fff;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-secondary);
}
/* ========================================
   ESTILOS ADICIONALES PARA SERVICIOS MEJORADOS
   Agrega esto a tu archivo styles.css
   ======================================== */

/* Badge de "Más Elegido" */
.service-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  z-index: 10;
}

/* Card destacada */
.service-card-featured {
  border: 2px solid #667eea;
  position: relative;
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
}

.service-card-featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05) 0%,
    rgba(118, 75, 162, 0.05) 100%
  );
  pointer-events: none;
}

/* Subtítulo del servicio */
.service-subtitle {
  color: #94a3b8;
  font-size: 0.95rem;
  margin: 12px 0;
  font-weight: 500;
}

/* Tiempo de entrega */
.service-delivery {
  display: inline-block;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 16px 0;
}

/* "Ideal para" */
.ideal-for {
  background: rgba(16, 185, 129, 0.1);
  border-left: 3px solid #10b981;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #e2e8f0;
  margin: 20px 0;
  line-height: 1.6;
}

.ideal-for strong {
  color: #10b981;
  font-weight: 600;
}

/* CTA de servicio */
.service-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 24px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Ajustes responsive para cards de servicio */
@media (max-width: 768px) {
  .service-card-featured {
    transform: scale(1);
  }

  .service-badge {
    top: -10px;
    right: 10px;
    font-size: 0.7rem;
    padding: 5px 12px;
  }

  .service-delivery {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* Mejora visual para la lista de features */
.service-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 1.1rem;
}
/* ========================================
   ESTILOS ADICIONALES PARA SERVICIOS MEJORADOS
   Agrega esto a tu archivo styles.css
   ======================================== */

/* Badge de "Más Elegido" */
.service-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  z-index: 10;
}

/* Card destacada */
.service-card-featured {
  border: 2px solid #667eea;
  position: relative;
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
}

.service-card-featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05) 0%,
    rgba(118, 75, 162, 0.05) 100%
  );
  pointer-events: none;
}

/* Subtítulo del servicio */
.service-subtitle {
  color: #94a3b8;
  font-size: 0.95rem;
  margin: 12px 0;
  font-weight: 500;
}

/* Tiempo de entrega */
.service-delivery {
  display: inline-block;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 16px 0;
}

/* "Ideal para" */
.ideal-for {
  background: rgba(16, 185, 129, 0.1);
  border-left: 3px solid #00110b;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #e2e8f0;
  margin: 20px 0;
  line-height: 1.6;
}

.ideal-for strong {
  color: #10b981;
  font-weight: 600;
}

/* CTA de servicio */
.service-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 24px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Ajustes responsive para cards de servicio */
@media (max-width: 768px) {
  .service-card-featured {
    transform: scale(1);
  }

  .service-badge {
    top: -10px;
    right: 10px;
    font-size: 0.7rem;
    padding: 5px 12px;
  }

  .service-delivery {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* ========================================
   SERVICIOS ADICIONALES - VERSIÓN MEJORADA
   ======================================== */

/* Wrapper principal con fondo destacado */
.extra-services-wrapper {
  margin-top: 80px;
  padding: 60px 40px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05) 0%,
    rgba(118, 75, 162, 0.05) 100%
  );
  border-radius: 24px;
  border: 1px solid rgba(102, 126, 234, 0.2);
  position: relative;
  overflow: hidden;
}

.extra-services-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Header de servicios adicionales */
.extra-services-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.extra-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.extra-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 12px;
}

.extra-subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   SERVICIOS COMPLEMENTARIOS - 
   ======================================== */

/* Sección general más pequeña */
.extras {
  padding: 60px 0 !important; /* Reducido de 120px a 60px */
}

/* Header más discreto */
.extras .section-header {
  margin-bottom: 40px !important; /* Reducido de 60px */
}

.extras .section-tag {
  font-size: 0.75rem !important; /* Más pequeño */
  padding: 4px 12px !important;
}

.extras .section-title {
  font-size: clamp(1.5rem, 3vw, 2rem) !important; /* Más pequeño */
  margin-bottom: 12px !important;
}

.extras .section-desc {
  font-size: 0.95rem !important; /* Más pequeño */
  opacity: 0.8;
}

/* Contenedor de extras más compacto */
.extras-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid 3x3 (3 columnas x 3 filas) */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important; /* Exactamente 3 columnas */
  gap: 16px !important; /* Reducido de 24px */
  max-width: 1100px;
  margin: 0 auto;
}

/* Cards más pequeñas */
.extra-card {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 12px !important; /* Más pequeño */
  padding: 20px 18px !important; /* Reducido de 28px 24px */
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.extra-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px; /* Reducido de 3px */
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.extra-card:hover {
  transform: translateY(-4px); /* Reducido de -8px */
  border-color: rgba(102, 126, 234, 0.4);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15); /* Sombra más sutil */
  background: rgba(30, 41, 59, 0.7);
}

/* Card destacada más discreta */
.extra-card-highlight {
  border: 1px solid rgba(102, 126, 234, 0.3) !important; /* Más sutil */
  background: rgba(102, 126, 234, 0.05) !important; /* Más sutil */
}

.extra-badge-popular {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #10b981;
  color: white;
  padding: 3px 10px !important; /* Más pequeño */
  border-radius: 10px;
  font-size: 0.65rem !important; /* Más pequeño */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Ícono más pequeño */
.extra-icon {
  width: 44px !important; /* Reducido de 56px */
  height: 44px !important;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px !important; /* Más pequeño */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px !important; /* Reducido de 20px */
  transition: all 0.3s ease;
}

.extra-card:hover .extra-icon {
  transform: scale(1.05) rotate(3deg); /* Menos rotación */
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3); /* Sombra más sutil */
}

.extra-icon svg {
  width: 22px !important; /* Reducido de 28px */
  height: 22px !important;
  color: white;
}

/* Título más pequeño */
.extra-card h4 {
  font-size: 1rem !important; /* Reducido de 1.15rem */
  font-weight: 600 !important; /* Menos bold */
  color: #f1f5f9;
  margin-bottom: 8px !important; /* Reducido de 10px */
  line-height: 1.3;
}

/* Descripción más pequeña */
.extra-card p {
  font-size: 0.85rem !important; /* Reducido de 0.9rem */
  color: #94a3b8;
  line-height: 1.5 !important; /* Reducido de 1.6 */
  margin: 0;
  opacity: 0.9;
}

/* CTA final más discreto */
.extra-cta {
  margin-top: 30px !important; /* Reducido de 50px */
  text-align: center;
  padding: 20px !important; /* Reducido de 30px */
  background: rgba(102, 126, 234, 0.05) !important; /* Más sutil */
  border-radius: 12px !important; /* Más pequeño */
  border: 1px dashed rgba(102, 126, 234, 0.2) !important; /* Más sutil */
  position: relative;
  z-index: 1;
}

.extra-cta p {
  font-size: 0.95rem !important; /* Reducido de 1.1rem */
  color: #cbd5e1;
  margin: 0;
}

.extra-cta a {
  color: #667eea;
  font-weight: 600 !important; /* Menos bold */
  text-decoration: none;
  border-bottom: 2px solid #667eea;
  transition: all 0.3s ease;
  padding-bottom: 2px;
}

.extra-cta a:hover {
  color: #764ba2;
  border-bottom-color: #764ba2;
}

/* Responsive optimizado */
@media (max-width: 768px) {
  .extras {
    padding: 40px 0 !important; /* Aún más pequeño en móvil */
  }

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

  .extras .section-desc {
    font-size: 0.9rem !important;
  }

  .extras-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .extra-card {
    padding: 18px 16px !important;
  }

  .extra-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .extra-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .extra-cta {
    padding: 16px !important;
    margin-top: 24px !important;
  }

  .extra-cta p {
    font-size: 0.9rem !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .extras-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* 2 columnas en tablet */
  }
}
/* ========================================
   FAQ 
   ======================================== */

.faq-grid {
  max-width: 1400px !important;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 28px !important;
  padding: 0 20px;
  align-items: start !important; /* ✅ CRÍTICO: Evita que se estiren */
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  height: auto !important; /* ✅ CRÍTICO: Altura independiente */
  align-self: start !important; /* ✅ CRÍTICO: Alineación al inicio */
}

.faq-item:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.faq-item.active {
  border-color: var(--accent-primary);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  transition: var(--transition-base);
  line-height: 1.4;
}

.faq-question span {
  flex: 1;
}

.faq-question:hover {
  color: var(--accent-primary);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-base);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-primary);
  transition: var(--transition-base);
}

.faq-item.active .faq-icon {
  background: var(--gradient-primary);
  transform: rotate(180deg);
}

.faq-item.active .faq-icon svg {
  stroke: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 800px; /* ✅ Aumentado para contenido largo */
}

.faq-answer-content {
  padding: 0 28px 28px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}

/* Tablet: mantener 2 columnas */
@media (max-width: 1024px) and (min-width: 769px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    max-width: 1200px !important;
  }

  .faq-question {
    font-size: 1rem;
    padding: 20px 24px;
  }

  .faq-answer-content {
    padding: 0 24px 24px;
  }
}

/* Móvil: volver a 1 columna */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 0 16px;
  }

  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }

  .faq-answer-content {
    padding: 0 20px 20px;
    font-size: 0.95rem;
  }
}

/* Tablet: mantener 2 columnas */
@media (max-width: 1024px) and (min-width: 769px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    max-width: 1200px !important;
  }

  .faq-question {
    font-size: 1rem;
    padding: 20px 24px;
  }

  .faq-answer-content {
    padding: 0 24px 24px;
  }
}

/* Móvil: volver a 1 columna */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 0 16px;
  }

  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }

  .faq-answer-content {
    padding: 0 20px 20px;
    font-size: 0.95rem;
  }
}

/* ========================================
   PORTAFOLIO 2x2 (2 columnas x 2 filas) ✅
   ======================================== */

.portfolio {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important; /* 2 columnas fijas */
  gap: 32px;
  margin-top: 60px;
  max-width: 1200px; /* Ancho máximo optimizado para 2 columnas */
  margin-left: auto;
  margin-right: auto;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}

.project-image {
  position: relative;
  width: 100%;
  height: 320px; /* Altura aumentada para mejor proporción en 2 columnas */
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(99, 102, 241, 0.9) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: white;
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.project-link:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.project-link svg {
  width: 20px;
  height: 20px;
}

.project-content {
  padding: 32px;
}

.project-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.project-tag {
  padding: 6px 16px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--accent-primary);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.project-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.project-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

/* Responsive - Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .portfolio-grid {
    grid-template-columns: repeat(
      2,
      1fr
    ) !important; /* Mantener 2 columnas en tablet */
    gap: 28px;
  }

  .project-image {
    height: 280px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .portfolio {
    padding: 80px 0;
  }

  .portfolio-grid {
    grid-template-columns: 1fr !important; /* 1 columna en móvil */
    gap: 24px;
  }

  .project-image {
    height: 240px;
  }

  .project-content {
    padding: 24px;
  }

  .project-content h3 {
    font-size: 1.3rem;
  }

  .project-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .project-image {
    height: 220px;
  }

  .project-content {
    padding: 20px;
  }
}

/* ========================================
   FORMULARIO DE CONTACTO
   ======================================== */
.contact-form-section {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
}

.contact-form-container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin-top: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-label .required {
  color: var(--accent-primary);
}

.form-input,
.form-select,
.form-textarea {
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1rem;
  transition: all var(--transition-base);
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2'%3E%3Cpath d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.budget-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.budget-option {
  position: relative;
}

.budget-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.budget-label {
  display: block;
  padding: 14px 20px;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  font-weight: 500;
  color: var(--text-secondary);
}

.budget-radio:checked + .budget-label {
  background: rgba(99, 102, 241, 0.1);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.budget-label:hover {
  border-color: var(--accent-primary);
  transform: translateY(-2px);
}

.form-submit {
  width: 100%;
  margin-top: 32px;
}

.form-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-note svg {
  width: 18px;
  height: 18px;
  color: var(--accent-success);
}

/* Responsive para formulario */
@media (max-width: 768px) {
  .contact-form {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .budget-options {
    grid-template-columns: 1fr;
  }

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

  .project-image {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 24px 20px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
}

/* Badge de localización */
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 50px;
  color: var(--accent-primary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.location-badge svg {
  width: 16px;
  height: 16px;
}

#presupuesto {
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1rem;
  transition: all var(--transition-base);
  width: 100%;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2'%3E%3Cpath d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

#presupuesto:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

#presupuesto option {
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 12px;
}
/* ========================================
           BANNER PROMOCIONAL 35% OFF
           ======================================== */
.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  z-index: 1001;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
  animation: slideDown 0.5s ease forwards;
}

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

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.promo-banner.hidden {
  animation: slideUp 0.3s ease forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

.promo-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.promo-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.promo-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.promo-text {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: white;
}

.promo-highlight {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
}

.promo-message {
  font-size: 1rem;
  font-weight: 500;
}

.promo-message strong {
  font-size: 1.3rem;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.promo-counter {
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.25);
  padding: 4px 12px;
  border-radius: 20px;
  animation: attention 2s ease-in-out infinite;
}

@keyframes attention {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.promo-counter span {
  font-size: 1.1rem;
  font-weight: 800;
}

.promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: white;
  color: #6366f1;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.promo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: #f5f5ff;
}

.promo-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.promo-cta:hover svg {
  transform: translateX(4px);
}

.promo-close {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.promo-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.promo-close svg {
  width: 18px;
  height: 18px;
  color: white;
}

/* Ajuste del navbar para que no quede detrás del banner */
body {
  padding-top: 72px;
}

.navbar {
  top: 72px;
}

/* Responsive para el banner */
@media (max-width: 1024px) {
  .promo-text {
    gap: 12px;
  }

  .promo-message {
    font-size: 0.95rem;
  }

  .promo-message strong {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 0;
  }

  .navbar {
    top: 0;
  }

  .promo-banner {
    position: relative;
  }

  .promo-content {
    padding: 14px 16px;
    gap: 12px;
  }

  .promo-icon {
    width: 36px;
    height: 36px;
  }

  .promo-icon svg {
    width: 20px;
    height: 20px;
  }

  .promo-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1 1 100%;
  }

  .promo-highlight {
    font-size: 0.75rem;
  }

  .promo-message {
    font-size: 0.9rem;
  }

  .promo-message strong {
    font-size: 1.1rem;
  }

  .promo-counter {
    font-size: 0.85rem;
  }

  .promo-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .promo-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .promo-message {
    font-size: 0.85rem;
  }

  .promo-message strong {
    font-size: 1rem;
  }
}
