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

:root {
  /* Color Scheme */
  --color-primary: #F5B800;
  --color-primary-dark: #D49F00;
  --color-primary-light: #FFD54F;
  --color-primary-glow: rgba(245, 184, 0, 0.15);
  
  --color-bg: #0A0A0A;
  --color-surface: #111111;
  --color-surface-elevated: #1A1A1A;
  --color-surface-hover: #222222;
  
  --color-text: #FFFFFF;
  --color-text-secondary: #A0A0A0;
  --color-border: #2A2A2A;
  --color-success: #4CAF50;
}

/* ===== RESET + BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background-color: var(--color-primary);
  color: var(--color-bg);
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--color-text);
}

h1 { font-size: 4rem; font-weight: 800; }
h2 { font-size: 2.8rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 600; }

p {
  font-size: 1rem;
  line-height: 1.7;
}

.section-badge {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding-left: 1rem;
  border-left: 3px solid var(--color-primary);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 1rem;
}

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

.section-subtitle {
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== NAVBAR — MINIMAL ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  transition: all 0.4s ease;
  object-fit: contain;
}

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

.nav-menu {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  list-style: none;
}

.nav-link {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  transition: color 0.3s ease;
  letter-spacing: 0.3px;
}

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

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

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

.nav-cta {
  background: var(--color-primary);
  color: #0A0A0A;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px var(--color-primary-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 3px 0;
  transition: all 0.3s ease;
  display: block;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-block;
  background: var(--color-primary-glow);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-highlight {
  color: var(--color-primary);
  display: inline-block;
  border-right: 3px solid var(--color-primary);
  animation: blink 1s infinite;
  padding-right: 5px;
}

@keyframes blink {
  0%, 100% { border-color: var(--color-primary); }
  50% { border-color: transparent; }
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-secondary);
  max-width: 550px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.stat { text-align: center; }

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  font-family: 'Outfit', sans-serif;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  margin-top: 0.3rem;
}

.stat-plus {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  font-family: 'Outfit', sans-serif;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-secondary);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--color-primary);
  color: #0A0A0A;
  box-shadow: 0 4px 20px rgba(245, 184, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 184, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-sm {
  padding: 0.6rem 1.3rem;
  font-size: 0.8rem;
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.25);
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(225, 48, 108, 0.4);
}

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

/* ===== SECTION BASE ===== */
.section {
  padding: 6rem 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-badge {
  margin: 0 auto 1rem auto;
  padding: 0 1rem;
  border-left: none;
  border-bottom: 3px solid var(--color-primary);
}

.section-header .section-subtitle {
  margin-top: 1rem;
}

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

.service-card {
  background: var(--color-surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all 0.4s ease;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: 0 16px 48px rgba(245, 184, 0, 0.08);
}

.service-card-img {
  height: 180px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-card-content {
  padding: 1.5rem;
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-size: 1.1rem;
}

.service-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.service-card p {
  color: var(--color-text-secondary);
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.service-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 4rem 0;
}

.cta-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cta-banner h2 {
  max-width: 600px;
  margin-bottom: 1rem;
  font-size: 2.2rem;
}

.cta-banner h2 span {
  color: var(--color-primary);
}

.cta-banner p {
  color: var(--color-text-secondary);
  font-size: 1rem;
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content p {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-content .section-title {
  text-align: left;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 160px;
  height: 160px;
  border: 2px solid var(--color-primary);
  border-radius: 16px;
  z-index: 0;
}

.about-image-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--color-primary);
  color: var(--color-bg);
  padding: 1.2rem;
  border-radius: 14px;
  z-index: 2;
  text-align: center;
  box-shadow: 0 8px 30px rgba(245, 184, 0, 0.3);
}

.about-badge-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.about-actions {
  margin-top: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.value-card {
  text-align: center;
  padding: 1.8rem 1.2rem;
  background: var(--color-surface);
  border-radius: 14px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: var(--color-primary-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem auto;
  color: var(--color-primary);
  font-size: 1.3rem;
}

.value-card h4 {
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.value-card p {
  font-size: 0.82rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ===== CERTIFICATES ===== */
.certificates {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.certificates::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 184, 0, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.certificate-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.certificate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light), var(--color-primary));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.certificate-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(245, 184, 0, 0.06);
}

.certificate-card:hover::before {
  opacity: 1;
}

.certificate-icon {
  width: 60px;
  height: 60px;
  background: var(--color-primary-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  color: var(--color-primary);
  font-size: 1.5rem;
  transition: all 0.4s ease;
}

.certificate-card:hover .certificate-icon {
  background: var(--color-primary);
  color: var(--color-bg);
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(245, 184, 0, 0.25);
}

.certificate-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.certificate-card p {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.certificate-badge {
  display: inline-block;
  background: var(--color-primary-glow);
  border: 1px solid rgba(245, 184, 0, 0.2);
  color: var(--color-primary);
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.certificates-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--color-surface);
  border-radius: 14px;
  border: 1px solid var(--color-border);
}

.certificates-cta p {
  color: var(--color-text-secondary);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

/* ===== WORK CAROUSEL (Novedades) ===== */
.instagram-section {
  background: var(--color-surface);
}

.work-carousel {
  position: relative;
  margin: 0 auto;
}

.carousel-track-wrapper {
  overflow: hidden;
  border-radius: 14px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  display: block;
  text-decoration: none;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.carousel-slide:hover img {
  transform: scale(1.05);
}

.carousel-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem;
  color: white;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.carousel-slide:hover .carousel-slide-overlay {
  opacity: 1;
}

.carousel-slide-overlay i {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.carousel-slide-overlay span {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  color: white;
  font-size: 1rem;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: var(--color-primary);
  color: var(--color-bg);
  border-color: var(--color-primary);
}

.carousel-btn-prev {
  left: -22px;
}

.carousel-btn-next {
  right: -22px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--color-primary);
  width: 24px;
  border-radius: 4px;
}

/* Instagram CTA Bar */
.instagram-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 1.5rem;
  background: var(--color-surface-elevated);
  border-radius: 14px;
  border: 1px solid var(--color-border);
  margin-top: 1.5rem;
}

.instagram-cta-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.instagram-avatar-sm {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  flex-shrink: 0;
}

.instagram-avatar-sm img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-surface-elevated);
}

.instagram-cta-left strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text);
}

.instagram-cta-left span {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

/* ===== FLOATING SOCIAL BAR ===== */
.social-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.social-float.visible {
  opacity: 1;
  pointer-events: auto;
}

.social-float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 3px 14px rgba(0,0,0,0.25);
}

.social-float-btn:hover {
  transform: scale(1.12);
}

.social-float-btn:hover .social-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.social-float-whatsapp {
  background: #25D366;
  animation: pulse-social 2s infinite;
}

.social-float-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-float-email {
  background: var(--color-primary);
  color: var(--color-bg);
}

.social-float-tooltip {
  position: absolute;
  right: 58px;
  background: rgba(10,10,10,0.9);
  color: white;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s ease;
  pointer-events: none;
}

@keyframes pulse-social {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item h4 {
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

.contact-item p {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
}

.contact-item a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.contact-item a:hover {
  color: var(--color-primary-light);
}

.contact-hours {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form-wrapper {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--color-border);
}

.contact-form-wrapper h3 {
  margin-bottom: 0.4rem;
  font-size: 1.3rem;
}

.form-description {
  color: var(--color-text-secondary);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  font-size: 0.85rem;
}

.form-group input, 
.form-group textarea, 
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  color: var(--color-text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ===== CLIENTS SECTION (¿A quién atendemos?) ===== */
.clients-section {
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.clients-section::before {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 184, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.clients-message {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(245, 184, 0, 0.05) 0%, rgba(245, 184, 0, 0.02) 100%);
  border: 1px solid rgba(245, 184, 0, 0.15);
  border-radius: 20px;
  position: relative;
}

.clients-message-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  color: var(--color-bg);
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(245, 184, 0, 0.25);
  animation: pulse-heart 2.5s ease-in-out infinite;
}

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

.clients-message h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.clients-message p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.clients-message p:last-child {
  margin-bottom: 0;
}

.clients-message strong {
  color: var(--color-text);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.client-card {
  text-align: center;
  padding: 2rem 1.2rem;
  background: var(--color-bg);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  transition: all 0.4s ease;
}

.client-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(245, 184, 0, 0.08);
}

.client-icon {
  width: 56px;
  height: 56px;
  background: var(--color-primary-glow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  color: var(--color-primary);
  font-size: 1.4rem;
  transition: all 0.4s ease;
}

.client-card:hover .client-icon {
  background: var(--color-primary);
  color: var(--color-bg);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(245, 184, 0, 0.25);
}

.client-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.client-card p {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

.clients-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(245, 184, 0, 0.08) 0%, rgba(245, 184, 0, 0.03) 100%);
  border: 1px solid rgba(245, 184, 0, 0.2);
  border-radius: 16px;
}

.clients-cta-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.clients-cta-content > i {
  font-size: 1.6rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.clients-cta-content h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.clients-cta-content p {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
}

/* ===== GOOGLE MAPS EMBED (Contact) ===== */
.contact-map {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.contact-map iframe {
  display: block;
  width: 100%;
  min-height: 220px;
}

.map-open-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: var(--color-surface-elevated);
  color: var(--color-primary);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-top: 1px solid var(--color-border);
}

.map-open-link:hover {
  background: var(--color-primary);
  color: var(--color-bg);
}

/* ===== FOOTER — MINIMAL ===== */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--color-surface-elevated);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--color-primary);
  color: #0A0A0A;
}

.footer h4 {
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links li i {
  color: var(--color-primary);
  width: 14px;
  font-size: 0.8rem;
}

.footer-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
}

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--color-text-secondary);
  font-size: 0.8rem;
}

/* ===== WHATSAPP FLOAT ===== */
/* (Replaced by .social-float above) */

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ===== RESPONSIVE — TABLET (1024px) ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .certificates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image::after {
    display: none;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .cta-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-banner h2 {
    margin: 0 auto 1rem auto;
  }
  
  .cta-banner-actions {
    justify-content: center;
  }
  
  .instagram-cta-bar {
    flex-direction: column;
    text-align: center;
  }
  
  .instagram-cta-left {
    flex-direction: column;
  }

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

  .clients-cta {
    flex-direction: column;
    text-align: center;
  }

  .clients-cta-content {
    flex-direction: column;
  }

  .carousel-btn-prev {
    left: 8px;
  }

  .carousel-btn-next {
    right: 8px;
  }
  
  .hero-stats {
    gap: 2rem;
  }
}

/* ===== RESPONSIVE — MOBILE (768px) ===== */
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  h2, .section-title {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .certificates-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }

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

  .clients-message {
    padding: 2rem 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: right 0.4s ease;
    gap: 1.5rem;
  }
  
  .nav-menu.active {
    right: 0;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }
  
  .nav-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .nav-logo-img {
    height: 34px;
  }

  .navbar.scrolled .nav-logo-img {
    height: 30px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  
  .stat-number, .stat-plus {
    font-size: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .ig-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .instagram-profile-header {
    padding: 1.5rem;
  }
  
  .about-image-badge {
    left: 10px;
    bottom: 10px;
    padding: 1rem;
  }
  
  .about-badge-number {
    font-size: 1.8rem;
  }
  
  .cta-banner-actions {
    flex-direction: column;
    align-items: center;
  }

  .clients-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .client-card {
    padding: 1.5rem 1rem;
  }
}

/* ===== RESPONSIVE — SMALL MOBILE (480px) ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-badge {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
  }
  
  .btn {
    padding: 0.75rem 1.3rem;
    font-size: 0.82rem;
  }

  h1 {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .section-header {
    margin-bottom: 2.5rem;
  }
  
  .hero-stats {
    gap: 1rem;
    margin-top: 2.5rem;
  }
  
  .stat-number, .stat-plus {
    font-size: 1.6rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  .nav-container {
    padding: 0.8rem 1.2rem;
  }
  
  .nav-logo-img {
    height: 30px;
  }
  
  .instagram-avatar {
    width: 56px;
    height: 56px;
  }
  
  .certificate-card {
    padding: 1.5rem 1.2rem;
  }
}

/* ===== UTILITY ===== */
.text-primary { color: var(--color-primary); }
.text-center { text-align: center; }
