/* =============================================
   IMPACT MARKETING COMPANY - V3
   ============================================= */

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

:root {
  --purple: #8b5cf6;
  --purple-dark: #7c3aed;
  --pink: #ec4899;
  --pink-light: #f472b6;
  --indigo: #6366f1;
  --dark: #0b0f19;
  --dark-2: #131b2e;
  --dark-3: #1a2440;
  --gray: #94a3b8;
  --gray-light: #f1f5f9;
  --white: #ffffff;
  --gradient-main: linear-gradient(135deg, #8b5cf6, #ec4899);
  --gradient-hero: linear-gradient(160deg, #151d30 0%, #1e1540 30%, #251545 50%, #151d30 100%);
  --gradient-card: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.08));
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.15);
  --radius: 14px;
  --radius-lg: 20px;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted-color: #64748b;
  --border-light: rgba(0,0,0,0.06);
  --border-input: rgba(0,0,0,0.1);
  --bg-section: #ffffff;
  --bg-alt: #eef2ff;
  --bg-footer: #0b0f19;
}

* { font-family: 'Inter', 'Fira Sans', sans-serif; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  background: var(--bg-section);
  color: var(--text-primary);
  padding-top: 0;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* ==================== NAVBAR (flotante estilo SIETES) ==================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 16px 0;
  transition: padding 0.4s ease;
}

header.scrolled {
  padding: 8px 0;
}

.navbar-inner {
  background: transparent;
  border-radius: 16px;
  padding: 0 24px;
  transition: all 0.4s ease;
}

header.scrolled .navbar-inner {
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
}

.navbar { padding: 0; }

.navbar-brand {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.5px;
  padding: 10px 0;
}

.navbar-brand .texto-gradiente {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.navbar .nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 10px 18px !important;
  transition: color 0.3s;
  position: relative;
}

.navbar .nav-link:hover { color: var(--white) !important; }



.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 2.5px;
  background: var(--gradient-main);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar .nav-link.active::after { transform: scaleX(1); }

.navbar .nav-link.active { color: var(--white) !important; }

.navbar-toggler { border: none; padding: 6px; }
.navbar-toggler:focus { box-shadow: none; }

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

.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-mesh span {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.hero-mesh span:nth-child(1) {
  width: 550px; height: 550px;
  background: rgba(139, 92, 246, 0.18);
  top: -200px; right: -100px;
  animation: meshFloat1 12s ease-in-out infinite;
}

.hero-mesh span:nth-child(2) {
  width: 400px; height: 400px;
  background: rgba(236, 72, 153, 0.12);
  bottom: -150px; left: -150px;
  animation: meshFloat2 15s ease-in-out infinite;
}

.hero-mesh span:nth-child(3) {
  width: 300px; height: 300px;
  background: rgba(99, 102, 241, 0.1);
  top: 40%; right: 20%;
  animation: meshFloat3 10s ease-in-out infinite;
}

.hero-mesh span:nth-child(4) {
  width: 200px; height: 200px;
  background: rgba(236, 72, 153, 0.08);
  bottom: 20%; right: 40%;
  animation: meshFloat4 18s ease-in-out infinite;
}

@keyframes meshFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -40px) scale(1.1); }
}
@keyframes meshFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.15); }
}
@keyframes meshFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, 20px) scale(1.05); }
}
@keyframes meshFloat4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, -20px) scale(1.1); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: #a78bfa;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge i { font-size: 0.8rem; }

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--white);
}

.hero-title .texto-gradiente {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  max-width: 540px;
  line-height: 1.8;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 38px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}

.hero-btn-primary {
  background: var(--gradient-main);
  color: var(--white);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
  color: var(--white);
}

.hero-btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 2px solid rgba(255,255,255,0.15);
}

.hero-btn-outline:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
  transform: translateY(-3px);
}

.hero-stats {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hero-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* ==================== HERO FORM WRAPPER ==================== */
.hero-form-wrapper {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  margin-top: 50px;
}

.form-floating-hero > .form-control,
.form-floating-hero > .form-select {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  color: var(--white);
  height: calc(3.6rem + 2px);
  border-radius: 12px;
  padding: 1.2rem 1rem 0.4rem;
  font-size: 0.88rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-floating-hero > .form-control:focus,
.form-floating-hero > .form-select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
  background: rgba(255,255,255,0.08);
}

.form-floating-hero > textarea.form-control {
  height: auto;
  min-height: 100px;
  padding-top: 1.5rem;
}

.form-floating-hero > label {
  padding: 1rem 1rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  transition: all 0.25s ease;
}

.form-floating-hero > .form-control:focus ~ label,
.form-floating-hero > .form-control:not(:placeholder-shown) ~ label,
.form-floating-hero > .form-select ~ label {
  transform: scale(0.82) translateY(-0.35rem);
  color: #a78bfa;
  font-weight: 600;
  opacity: 1;
}

.form-floating-hero > .form-control::placeholder {
  color: transparent;
}

.hero-form-wrapper .submit-btn {
  font-size: 0.88rem;
  padding: 13px 28px;
}

/* ==================== SECCIONES ==================== */
.section { padding: 110px 0; }

.section-alt { background: var(--bg-alt); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.section-tag i { font-size: 0.75rem; }

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ==================== SOBRE NOSOTROS ==================== */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--dark-2);
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-main);
  opacity: 0.08;
  z-index: 1;
  border-radius: var(--radius-lg);
}

.about-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.about-stat {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-stat .num {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-stat .label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==================== SERVICIOS ==================== */
.serv-card {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

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

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

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

.serv-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: var(--gradient-card);
  color: var(--purple-dark);
  margin-bottom: 1.5rem;
  transition: all 0.4s;
}

.serv-card:hover .serv-icon {
  background: var(--gradient-main);
  color: var(--white);
}

.serv-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

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

.serv-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}

.serv-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}

.serv-list li:last-child { border-bottom: none; }

.serv-list li i {
  color: var(--purple-dark);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.serv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 24px;
  background: rgba(0,0,0,0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s;
  cursor: pointer;
}

.serv-btn:hover {
  background: var(--gradient-main);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

/* ==================== FEATURES ==================== */
.feat-card {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139,92,246,0.15);
}

.feat-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 1.25rem;
  background: rgba(139, 92, 246, 0.08);
  color: var(--purple-dark);
  transition: all 0.4s;
}

.feat-card:hover .feat-icon {
  background: var(--gradient-main);
  color: var(--white);
  transform: scale(1.1);
}

.feat-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

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

/* ==================== GALERÍA ==================== */
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.05) 70%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay h5 {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.gallery-overlay p {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  margin-bottom: 0;
}

/* ==================== CTA ==================== */
.cta-section {
  background: var(--gradient-hero);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ==================== CONTACTO ==================== */
.contact-card {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-card .contact-icon {
  font-size: 1.8rem;
  color: var(--purple-dark);
  margin-bottom: 0.75rem;
}

.contact-card h6 {
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.contact-card p,
.contact-card a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  text-decoration: none;
}

.contact-card a:hover { color: #a78bfa; }

.section .text-muted { color: var(--text-muted-color); }

.form-card {
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

/* ==================== FORMULARIO ==================== */
.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.8rem + 2px);
  border: 1.5px solid var(--border-input);
  border-radius: 12px;
  padding: 1.2rem 1rem 0.4rem;
  font-size: 0.9rem;
  background: var(--bg-section);
  color: var(--text-primary);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
  outline: none;
  background: var(--bg-section);
}

.form-floating > textarea.form-control {
  height: auto;
  min-height: 140px;
  padding-top: 1.5rem;
}

.form-floating > label {
  padding: 1rem 1rem;
  color: var(--text-muted-color);
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  transform: scale(0.82) translateY(-0.35rem);
  color: #a78bfa;
  font-weight: 600;
  opacity: 1;
}

.form-control, .form-select {
  font-size: 0.9rem;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 32px;
  background: var(--gradient-main);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.35);
  color: var(--white);
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--bg-footer);
  color: #e2e8f0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
}

.footer-brand {
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.footer-brand .texto-gradiente {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-text {
  font-size: 0.85rem;
  color: #94a3b8;
  max-width: 300px;
  line-height: 1.7;
}

.footer-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #64748b;
  margin-bottom: 1.25rem;
}

.footer-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
  display: inline-block;
  padding: 3px 0;
}

.footer-link:hover { color: var(--purple-dark); }

.social-btn {
  width: 42px;
  height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: #94a3b8;
  background: transparent;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 0.95rem;
}

.social-btn:hover {
  background: var(--gradient-main);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-4px);
}

.footer-divider { border-color: rgba(255,255,255,0.06); margin: 2.5rem 0; }

.footer-copy { font-size: 0.8rem; color: #64748b; }
.footer-copy strong { color: #e2e8f0; }

/* ==================== FLOATING SOCIAL BUTTON ==================== */
.floating-social {
  position: fixed;
  bottom: 90px;
  left: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.floating-social__btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: var(--gradient-main);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(139, 92, 246, 0.35);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.floating-social__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.45);
}

.floating-social__btn:active {
  transform: scale(0.95);
}

.floating-social__btn.active {
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.25);
}

.floating-social__menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-social__menu.active {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}

.floating-social__item {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  transform: scale(0);
  opacity: 0;
  position: relative;
  z-index: 1;
}

.floating-social__menu.active .floating-social__item {
  transform: scale(1);
  opacity: 1;
}

.floating-social__menu.active .floating-social__item:nth-child(1) { transition-delay: 0.05s; }
.floating-social__menu.active .floating-social__item:nth-child(2) { transition-delay: 0.1s; }
.floating-social__menu.active .floating-social__item:nth-child(3) { transition-delay: 0.15s; }

.floating-social__item:hover {
  transform: scale(1.12) !important;
  color: var(--white);
}

.floating-social__item.whatsapp { background: #25d366; }
.floating-social__item.instagram { background: #d62976; }
.floating-social__item.facebook { background: #1877f2; }

.floating-social__item.whatsapp:hover { background: #1ebe5c; }
.floating-social__item.instagram:hover { background: #c7246e; }
.floating-social__item.facebook:hover { background: #166fe5; }

@media (max-width: 767px) {
  .floating-social {
    bottom: 16px;
    left: 16px;
  }

  .floating-social__btn {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
  }

  .floating-social__item {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}

/* ==================== RESPONSIVE ==================== */
.titulo-completo { display: inline; }
.titulo-abreviado { display: none; }

@media (max-width: 991px) {
  .hero-title { font-size: 2.8rem; }
  .section-title { font-size: 2.2rem; }
  .section { padding: 80px 0; }
}

@media (max-width: 991px) {
  .navbar-inner.menu-abierto {
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(20px);
  }
}

@media (max-width: 767px) {
  header {
    padding: 12px 0 !important;
  }

  header .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .navbar-inner {
    border-radius: 12px;
    padding: 0 16px;
  }

  header.scrolled .navbar-inner {
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(20px);
  }

  .navbar .nav-link {
    padding: 12px 16px !important;
    text-align: center;
  }

  .navbar .nav-link::after {
    display: none;
  }

  .hero-section {
    padding-top: 95px;
  }

  .hero-form-wrapper {
    padding: 1.5rem;
    margin-top: 0;
  }

  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { max-width: 100%; }
  .section-title { font-size: 1.8rem; }
  .section { padding: 60px 0; }
  .gallery-item img { height: 220px; }
  .hero-actions { flex-direction: column; }
  .hero-btn { width: 100%; justify-content: center; }
}

@media (max-width: 425px) {
  .hero-title { font-size: 1.8rem; }
  .form-card { padding: 1.5rem; }
}
