/* =========================================
   SM & ASOCIADOS, SRL - Estilos Globales
   v2: Roboto, logo grande, hero animado, modales
   ========================================= */

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

:root {
  --color-blue: #1a4a8a;
  --color-blue-dark: #123a6d;
  --color-blue-light: #9bc7eb;
  --color-blue-pale: #d0e5f4;
  --color-orange: #f7941d;
  --color-orange-dark: #d97a08;
  --color-dark: #414042;
  --color-gray: #6b6b6d;
  --color-gray-light: #e6e6e6;
  --color-gray-pale: #f3f3f4;
  --color-white: #ffffff;
  --font-body: 'Roboto', 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --container-max: 1280px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(26, 74, 138, 0.08);
  --shadow-md: 0 6px 24px rgba(26, 74, 138, 0.12);
  --shadow-lg: 0 12px 40px rgba(26, 74, 138, 0.16);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); font-weight: 400; color: var(--color-dark); background: var(--color-white); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--color-dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; color: var(--color-gray); }
a { color: var(--color-blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-orange); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

/* === HEADER === */
.header { position: fixed; top: 0; left: 0; right: 0; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); z-index: 1000; border-bottom: 1px solid rgba(26, 74, 138, 0.08); transition: var(--transition); }
.header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; justify-content: space-between; align-items: center; padding: 12px 24px; max-width: var(--container-max); margin: 0 auto; gap: 24px; }
.logo { display: flex; align-items: center; gap: 16px; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 96px; width: auto; display: block; transition: var(--transition); }
.logo-text { display: flex; flex-direction: column; font-family: var(--font-display); font-weight: 900; color: var(--color-blue); letter-spacing: -0.5px; line-height: 1.1; }
.logo-name { font-size: 1.95rem; }
.logo-subtitle { font-family: var(--font-body); font-size: 0.72rem; font-weight: 500; letter-spacing: 1.5px; color: var(--color-dark); text-transform: uppercase; margin-top: 4px; }
.nav-menu { display: flex; list-style: none; gap: 26px; align-items: center; }
.nav-menu a { font-weight: 500; font-size: 0.85rem; color: var(--color-dark); text-transform: uppercase; letter-spacing: 0.5px; position: relative; padding: 6px 0; }
.nav-menu a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--color-orange); transition: width 0.3s ease; }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: var(--color-blue); }
.nav-cta { background: var(--color-orange); color: var(--color-white) !important; padding: 10px 22px !important; border-radius: 50px; letter-spacing: 0.5px; font-weight: 700; }
.nav-cta:hover { background: var(--color-orange-dark); color: var(--color-white) !important; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.nav-cta::after { display: none; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 28px; height: 3px; background: var(--color-blue); border-radius: 2px; transition: var(--transition); }

/* === BOTONES === */
.btn { display: inline-block; padding: 14px 32px; font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.8px; border-radius: 50px; border: 2px solid transparent; cursor: pointer; transition: var(--transition); text-align: center; }
.btn-primary { background: var(--color-orange); color: var(--color-white); }
.btn-primary:hover { background: var(--color-orange-dark); color: var(--color-white); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(247, 148, 29, 0.4); }
.btn-secondary { background: var(--color-blue); color: var(--color-white); }
.btn-secondary:hover { background: var(--color-blue-dark); color: var(--color-white); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--color-white); border-color: var(--color-white); }
.btn-outline:hover { background: var(--color-white); color: var(--color-blue); }
.btn-outline-dark { background: transparent; color: var(--color-blue); border-color: var(--color-blue); }
.btn-outline-dark:hover { background: var(--color-blue); color: var(--color-white); }

/* === HERO con animación === */
.hero { position: relative; min-height: 88vh; background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%); color: var(--color-white); display: flex; align-items: center; padding: 140px 0 80px; overflow: hidden; }
.hero-shape-1 { position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: rgba(155, 199, 235, 0.12); border-radius: 50%; filter: blur(40px); animation: float-1 12s ease-in-out infinite; }
.hero-shape-2 { position: absolute; bottom: -80px; left: -80px; width: 300px; height: 300px; background: rgba(247, 148, 29, 0.15); border-radius: 50%; filter: blur(60px); animation: float-2 16s ease-in-out infinite; }
.hero-shape-3 { position: absolute; top: 30%; left: 40%; width: 200px; height: 40px; background: rgba(155, 199, 235, 0.2); border-radius: 50px; transform: rotate(-35deg); }

@keyframes float-1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px,30px); } }
@keyframes float-2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px,-40px); } }

.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 640px; }
.hero-badge { display: inline-block; padding: 8px 20px; background: rgba(247, 148, 29, 0.2); border: 1px solid var(--color-orange); border-radius: 50px; font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--color-orange); margin-bottom: 24px; }
.hero h1 { color: var(--color-white); font-size: clamp(2.4rem, 5.5vw, 4rem); margin-bottom: 24px; line-height: 1.1; }
.hero h1 .accent { color: var(--color-orange); font-style: italic; }
.hero p { color: rgba(255, 255, 255, 0.88); font-size: 1.12rem; margin-bottom: 36px; line-height: 1.7; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* === HERO ANIMATION (visual derecho) === */
.hero-animation { position: relative; width: 100%; height: 480px; display: flex; align-items: center; justify-content: center; }
.ha-card { position: absolute; background: rgba(255, 255, 255, 0.96); border-radius: var(--radius-md); padding: 18px 22px; box-shadow: 0 20px 60px rgba(0,0,0,0.25); backdrop-filter: blur(8px); display: flex; flex-direction: column; gap: 8px; font-family: var(--font-body); color: var(--color-dark); min-width: 180px; z-index: 3; }
.ha-card-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--color-orange); }
.ha-card-value { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; color: var(--color-blue); line-height: 1; }
.ha-card-trend { display: flex; align-items: center; gap: 4px; font-size: 0.8rem; font-weight: 700; color: #27ae60; }
.ha-card-bar { height: 4px; background: var(--color-gray-pale); border-radius: 50px; overflow: hidden; }
.ha-card-bar-fill { height: 100%; background: linear-gradient(90deg, var(--color-orange), var(--color-orange-dark)); border-radius: 50px; animation: bar-grow 3s ease-out forwards; width: var(--bar-width, 75%); }
@keyframes bar-grow { from { width: 0; } to { width: var(--bar-width, 75%); } }

.ha-card-1 { top: 8%; left: 0; animation: float-card-1 6s ease-in-out infinite; }
@keyframes float-card-1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(0,-12px); } }
.ha-card-2 { top: 38%; right: 0; animation: float-card-2 7s ease-in-out infinite; }
@keyframes float-card-2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(0,14px); } }
.ha-card-3 { bottom: 8%; left: 12%; animation: float-card-3 8s ease-in-out infinite; }
@keyframes float-card-3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(8px,-8px); } }

.ha-orb { position: absolute; width: 64px; height: 64px; background: rgba(247, 148, 29, 0.95); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-white); box-shadow: 0 10px 30px rgba(247, 148, 29, 0.4); z-index: 2; }
.ha-orb-1 { top: 28%; right: 35%; animation: pulse-orb 3s ease-in-out infinite; }
.ha-orb-2 { bottom: 22%; right: 8%; background: rgba(255, 255, 255, 0.95); color: var(--color-blue); box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3); animation: pulse-orb 4s ease-in-out infinite reverse; }
@keyframes pulse-orb { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }

.ha-chart { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 380px; height: 380px; opacity: 0.35; z-index: 1; }
.ha-chart svg { width: 100%; height: 100%; }
.ha-chart-line { stroke-dasharray: 1500; stroke-dashoffset: 1500; animation: draw-line 4s ease-out forwards; }
@keyframes draw-line { to { stroke-dashoffset: 0; } }

/* Hero subpáginas */
.hero-sub { min-height: 60vh; padding: 140px 0 60px; }
.hero-sub h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.hero-sub .hero-animation { height: 380px; }

.breadcrumb { display: flex; gap: 8px; font-size: 0.88rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255, 255, 255, 0.7); }
.breadcrumb a:hover { color: var(--color-orange); }
.breadcrumb .separator { color: var(--color-orange); }

/* === SECCIONES === */
.section { padding: 100px 0; position: relative; }
.section-light { background: var(--color-gray-pale); }
.section-dark { background: var(--color-dark); color: var(--color-white); }
.section-dark p { color: rgba(255, 255, 255, 0.8); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--color-white); }
.section-header { text-align: center; max-width: 780px; margin: 0 auto 60px; }
.section-eyebrow { display: inline-block; font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--color-orange); margin-bottom: 12px; position: relative; padding-left: 40px; }
.section-eyebrow::before { content: ''; position: absolute; left: 0; top: 50%; width: 30px; height: 2px; background: var(--color-orange); }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--color-gray); }

/* === SERVICIOS CARDS === */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.service-card { background: var(--color-white); padding: 40px 32px; border-radius: var(--radius-md); border: 1px solid var(--color-gray-light); transition: var(--transition); position: relative; overflow: hidden; cursor: pointer; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--color-blue), var(--color-orange)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--color-blue-pale), var(--color-blue-light)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--color-blue); transition: var(--transition); }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--color-orange), var(--color-orange-dark)); color: var(--color-white); transform: scale(1.08) rotate(-5deg); }
.service-number { position: absolute; top: 20px; right: 24px; font-family: var(--font-display); font-size: 3.5rem; font-weight: 900; color: var(--color-gray-pale); line-height: 1; transition: var(--transition); }
.service-card:hover .service-number { color: var(--color-blue-pale); }
.service-card h3 { margin-bottom: 12px; font-size: 1.35rem; color: var(--color-dark); }
.service-card p { font-size: 0.95rem; margin-bottom: 20px; }
.service-card .service-link { display: inline-flex; align-items: center; gap: 8px; color: var(--color-blue); font-weight: 700; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.5px; background: none; border: none; cursor: pointer; padding: 0; font-family: var(--font-body); }
.service-card .service-link:hover { color: var(--color-orange); gap: 12px; }

/* === MODAL DE SERVICIOS === */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(20, 30, 50, 0.75); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; padding: 20px; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal { background: var(--color-white); border-radius: var(--radius-lg); max-width: 720px; width: 100%; max-height: 88vh; overflow-y: auto; position: relative; transform: scale(0.92) translateY(20px); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.modal-overlay.active .modal { transform: scale(1) translateY(0); }
.modal-header { background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%); color: var(--color-white); padding: 40px 40px 36px; position: relative; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.modal-header::before { content: ''; position: absolute; top: -50%; right: -10%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(247,148,29,0.25), transparent 70%); border-radius: 50%; }
.modal-tagline { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--color-orange); margin-bottom: 8px; position: relative; }
.modal-title { font-family: var(--font-display); font-size: 1.9rem; margin-bottom: 12px; color: var(--color-white); position: relative; line-height: 1.2; }
.modal-summary { color: rgba(255,255,255,0.92); font-size: 1rem; position: relative; margin: 0; }
.modal-close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; background: rgba(255,255,255,0.18); border: none; border-radius: 50%; color: var(--color-white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); z-index: 2; }
.modal-close:hover { background: var(--color-orange); transform: rotate(90deg); }
.modal-body { padding: 36px 40px 40px; }
.modal-body h4 { font-family: var(--font-display); color: var(--color-blue); font-size: 1.1rem; margin-bottom: 16px; margin-top: 24px; }
.modal-body h4:first-child { margin-top: 0; }
.modal-features { list-style: none; padding: 0; margin: 0; }
.modal-features li { padding: 14px 0 14px 36px; border-bottom: 1px solid var(--color-gray-light); position: relative; color: var(--color-dark); font-size: 0.95rem; }
.modal-features li:last-child { border-bottom: none; }
.modal-features li::before { content: ''; position: absolute; left: 0; top: 18px; width: 22px; height: 22px; background: var(--color-orange); border-radius: 50%; }
.modal-features li::after { content: '✓'; position: absolute; left: 6px; top: 14px; color: var(--color-white); font-weight: 900; font-size: 0.85rem; }
.modal-features li strong { color: var(--color-blue); display: block; margin-bottom: 4px; font-size: 0.98rem; }
.modal-cta { margin-top: 32px; padding-top: 28px; border-top: 2px solid var(--color-gray-pale); display: flex; gap: 12px; flex-wrap: wrap; }

/* === VALORES === */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.value-card { text-align: center; padding: 36px 24px; background: var(--color-white); border-radius: var(--radius-md); border-top: 4px solid var(--color-orange); transition: var(--transition); }
.value-card:nth-child(2) { border-top-color: var(--color-blue); }
.value-card:nth-child(3) { border-top-color: var(--color-orange); }
.value-card:nth-child(4) { border-top-color: var(--color-blue); }
.value-card:nth-child(5) { border-top-color: var(--color-orange); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-icon { width: 70px; height: 70px; margin: 0 auto 20px; background: var(--color-blue-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-blue); }
.value-card h4 { color: var(--color-blue); font-family: var(--font-display); margin-bottom: 12px; font-size: 1.3rem; }
.value-card p { font-size: 0.92rem; }

/* === STATS === */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; padding: 60px 0; }
.stat { text-align: center; padding: 20px; }
.stat-number { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: var(--color-orange); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--color-white); }

/* === CTA === */
.cta-block { background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%); color: var(--color-white); padding: 80px 40px; border-radius: var(--radius-lg); text-align: center; position: relative; overflow: hidden; }
.cta-block::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(247,148,29,0.2), transparent 70%); border-radius: 50%; }
.cta-block h2 { color: var(--color-white); margin-bottom: 16px; position: relative; }
.cta-block p { color: rgba(255,255,255,0.88); font-size: 1.15rem; max-width: 600px; margin: 0 auto 32px; position: relative; }
.cta-block .btn { position: relative; }

/* === EQUIPO === */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.team-card { background: var(--color-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-photo { width: 100%; aspect-ratio: 3/4; background: linear-gradient(135deg, var(--color-blue-pale), var(--color-blue-light)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; position: relative; z-index: 1; }
.team-photo::before { content: ''; position: absolute; top: -20%; right: -10%; width: 60%; height: 60%; background: rgba(247, 148, 29, 0.18); border-radius: 50%; filter: blur(40px); z-index: 0; }
.team-photo::after { content: ''; position: absolute; bottom: -20%; left: -10%; width: 60%; height: 60%; background: rgba(26, 74, 138, 0.18); border-radius: 50%; filter: blur(40px); z-index: 0; }
.team-photo .initials { font-family: var(--font-display); font-size: 7rem; font-weight: 900; color: var(--color-blue); position: relative; z-index: 2; align-self: center; text-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.team-info { padding: 28px 24px; }
.team-info h3 { color: var(--color-blue); margin-bottom: 4px; font-size: 1.4rem; }
.team-role { color: var(--color-orange); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; display: block; }
.team-info p { font-size: 0.92rem; margin-bottom: 16px; }
.team-email { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 700; }

/* === FORMULARIOS === */
.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 8px; font-weight: 700; font-size: 0.86rem; color: var(--color-dark); text-transform: uppercase; letter-spacing: 0.5px; }
.form-control { width: 100%; padding: 14px 18px; font-family: var(--font-body); font-size: 1rem; color: var(--color-dark); background: var(--color-white); border: 2px solid var(--color-gray-light); border-radius: var(--radius-sm); transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--color-blue); box-shadow: 0 0 0 4px rgba(26,74,138,0.1); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* === FOOTER === */
.footer { background: var(--color-dark); color: rgba(255, 255, 255, 0.7); padding: 70px 0 30px; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--color-blue), var(--color-orange)); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 50px; margin-bottom: 50px; }
.footer .logo { gap: 16px; }
.footer .logo-img { height: 100px; }
.footer .logo-text { color: var(--color-white); }
.footer .logo-name { color: var(--color-white); }
.footer .logo-subtitle { color: rgba(255, 255, 255, 0.7); }
.footer h4 { color: var(--color-white); font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 24px; }
.footer p, .footer a { color: rgba(255, 255, 255, 0.7); font-size: 0.92rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a:hover { color: var(--color-orange); padding-left: 5px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; font-size: 0.92rem; }
.footer-contact-item svg { flex-shrink: 0; color: var(--color-orange); margin-top: 2px; }
.social-icons { display: flex; gap: 12px; margin-top: 16px; }
.social-icons a { width: 38px; height: 38px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-white); transition: var(--transition); }
.social-icons a:hover { background: var(--color-orange); transform: translateY(-3px); }
.footer-bottom { padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 0.85rem; }

/* === ANIMACIONES === */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-up { animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.animate-delay-1 { animation-delay: 0.15s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.3s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.45s; opacity: 0; }

/* === UTILS === */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.mb-lg { margin-bottom: 60px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-animation { height: 380px; max-width: 500px; margin: 0 auto; }
  .hero-sub .hero-animation { display: none; }
}
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .logo-img { height: 64px; }
  .logo-name { font-size: 1.4rem; }
  .logo-subtitle { font-size: 0.6rem; }
  .nav-menu { position: fixed; top: 88px; right: -100%; flex-direction: column; background: var(--color-white); width: 280px; height: calc(100vh - 88px); padding: 40px 30px; gap: 24px; box-shadow: -10px 0 30px rgba(0,0,0,0.1); transition: right 0.4s ease; }
  .nav-menu.active { right: 0; }
  .section { padding: 70px 0; }
  .hero { min-height: 70vh; padding: 120px 0 60px; }
  .hero-animation { height: 320px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-block { padding: 50px 24px; }
  .modal-header { padding: 30px 24px 26px; }
  .modal-body { padding: 28px 24px 32px; }
  .modal-title { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .logo-img { height: 56px; }
  .logo-name { font-size: 1.2rem; }
  .footer .logo-img { height: 72px; }
}
