/* ─────────────────────────────────────────
   SEGURA & ASOCIADOS — Editorial Bold Style
   Poppins · Blue · Cyan · Cool Dark
───────────────────────────────────────── */

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

:root {
  --black:       #0C0F1E;
  --black-soft:  #141828;
  --cream:       #EEF2FF;
  --cream-dark:  #DDE5F8;
  --blue:        #1A3FCC;
  --blue-dark:   #122FA0;
  --blue-light:  #3D68E8;
  --cyan:        #00B4D8;
  --white:       #FFFFFF;
  --mid:         #556080;
  --light:       #8A9AC0;
  --border-dark: rgba(255,255,255,0.07);
  --border-light:rgba(26,63,204,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--black);
  height: 68px;
  display: flex; align-items: center;
}
.nav-inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 900;
  color: var(--white); letter-spacing: -0.02em;
}
.logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.logo-text strong {
  font-size: 0.88rem; font-weight: 800;
  color: var(--white); letter-spacing: 0.02em;
}
.logo-text span {
  font-size: 0.6rem; font-weight: 400;
  color: var(--cyan); letter-spacing: 0.15em; text-transform: uppercase;
  margin-top: 2px;
}

nav { display: flex; align-items: center; gap: 0; }
nav a {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; padding: 0.5rem 1rem;
  transition: color 0.2s;
}
nav a:hover { color: var(--cyan); }
.nav-tel {
  margin-left: 1.5rem;
  color: var(--white) !important;
  background: var(--blue);
  padding: 0.5rem 1.2rem !important;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-tel:hover { background: var(--blue-light) !important; color: var(--white) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 1px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0; z-index: 99;
  background: var(--black-soft);
  flex-direction: column; padding: 1.5rem 2rem;
  border-top: 2px solid var(--blue);
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--cyan); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--black);
  padding: 68px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4; z-index: 0;
}

.hero-left {
  padding: 7rem 3rem 6rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 2.5rem;
}
.hero-tag-dot {
  width: 8px; height: 8px; background: var(--cyan); border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-tag span {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cyan);
}

.hero-left h1 {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 900; line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
}
.hero-left h1 .line-accent { color: var(--cyan); display: block; }
.hero-left h1 .line-outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.2);
  color: transparent; display: block;
}

.hero-desc {
  font-size: 0.95rem; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.45);
  max-width: 420px; margin-bottom: 3rem;
}

.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.btn-main {
  background: var(--blue); color: var(--white);
  font-family: 'Poppins', sans-serif; font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 1rem 2rem; text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s; display: inline-block;
}
.btn-main:hover { background: var(--blue-light); transform: translateY(-2px); }
.btn-ghost {
  color: rgba(255,255,255,0.45); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  display: flex; align-items: center; gap: 8px; transition: color 0.2s;
}
.btn-ghost svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.2s; }
.btn-ghost:hover { color: var(--cyan); }
.btn-ghost:hover svg { transform: translateX(4px); }

.hero-right {
  background: var(--black-soft);
  border-left: 1px solid var(--border-dark);
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 3.5rem; position: relative; z-index: 1;
}
.hero-right::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: var(--blue);
}

.stat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  margin-bottom: 3rem;
}
.stat-box {
  background: rgba(255,255,255,0.03);
  padding: 1.8rem 1.5rem;
  border: 1px solid var(--border-dark);
  transition: background 0.2s;
}
.stat-box:hover { background: rgba(26,63,204,0.12); }
.stat-num {
  font-size: 2.8rem; font-weight: 900;
  color: var(--cyan); letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.contact-quick { display: flex; flex-direction: column; gap: 1.2rem; }
.cq-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border-dark);
  transition: border-color 0.2s;
}
.cq-item:hover { border-color: var(--cyan); }
.cq-icon {
  width: 32px; height: 32px; background: var(--blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cq-icon svg { width: 15px; height: 15px; stroke: white; fill: none; stroke-width: 2; }
.cq-text p { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--light); margin-bottom: 2px; }
.cq-text a, .cq-text span {
  font-size: 0.82rem; font-weight: 600; color: var(--white);
  text-decoration: none; transition: color 0.2s;
}
.cq-text a:hover { color: var(--cyan); }

.wa-hero {
  margin-top: 1.5rem; display: flex; align-items: center; justify-content: center;
  gap: 0.7rem; padding: 0.9rem; background: #1F6B3A;
  color: var(--white); text-decoration: none; font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.2s;
}
.wa-hero:hover { background: #25863A; }
.wa-hero svg { width: 18px; height: 18px; fill: white; }

/* ── SECCIÓN BASE ── */
.sec { padding: 7rem 2.5rem; }
.sec-inner { max-width: 1280px; margin: 0 auto; }

.sec-num {
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue); display: flex; align-items: center; gap: 10px;
  margin-bottom: 1rem;
}
.sec-num::after { content: ''; flex: 1; height: 1px; background: var(--blue); max-width: 40px; }

h2.sec-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900; line-height: 0.95;
  letter-spacing: -0.03em; margin-bottom: 1.5rem;
}
h2.sec-title .accent { color: var(--blue); }

.sec-sub {
  font-size: 0.95rem; font-weight: 300; line-height: 1.8;
  color: var(--mid); max-width: 520px;
}

/* ── SERVICIOS ── */
.sec-servicios { background: var(--cream); }

.services-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: end; margin-bottom: 5rem;
}

.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.srv-card {
  padding: 3rem 2.5rem;
  border: 1px solid var(--border-light);
  border-right: none; border-bottom: none;
  position: relative; overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}
.services-grid .srv-card:nth-child(2n) { border-right: 1px solid var(--border-light); }
.services-grid .srv-card:nth-child(3),
.services-grid .srv-card:nth-child(4) { border-bottom: 1px solid var(--border-light); }

.srv-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; height: 3px; width: 0;
  background: var(--blue);
  transition: width 0.4s;
}
.srv-card:hover { background: var(--white); }
.srv-card:hover::before { width: 100%; }

.srv-pack {
  display: inline-block;
  font-size: 5rem; font-weight: 900;
  color: rgba(26,63,204,0.07); line-height: 1;
  letter-spacing: -0.04em; margin-bottom: 1.5rem;
  transition: color 0.3s;
}
.srv-card:hover .srv-pack { color: rgba(26,63,204,0.13); }

.srv-icon {
  width: 48px; height: 48px; background: var(--black);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.srv-icon svg { width: 22px; height: 22px; stroke: var(--cyan); fill: none; stroke-width: 1.8; }

.srv-card h3 {
  font-size: 1.2rem; font-weight: 800;
  letter-spacing: -0.02em; color: var(--black);
  margin-bottom: 0.8rem;
}
.srv-card p {
  font-size: 0.87rem; font-weight: 300;
  color: var(--mid); line-height: 1.8;
}
.srv-tag {
  display: inline-block; margin-top: 1.5rem;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue);
  border-top: 2px solid var(--blue); padding-top: 0.6rem;
}

/* ── TITULAR ── */
.sec-titular { background: var(--black); }
.sec-titular .sec-num { color: var(--cyan); }
.sec-titular .sec-num::after { background: var(--cyan); }
.sec-titular h2.sec-title { color: var(--white); }
.sec-titular .sec-sub { color: rgba(255,255,255,0.4); }

.titular-layout {
  display: grid; grid-template-columns: 1fr 480px; gap: 5rem; align-items: center;
}

.titular-creds {
  margin-top: 3rem; display: flex; flex-direction: column; gap: 0;
}
.cred-item {
  display: flex; align-items: flex-start; gap: 1.5rem;
  padding: 1.5rem 0; border-bottom: 1px solid var(--border-dark);
}
.cred-item:first-child { border-top: 1px solid var(--border-dark); }
.cred-num {
  font-size: 0.65rem; font-weight: 900;
  color: var(--cyan); letter-spacing: 0.1em; min-width: 24px; margin-top: 3px;
}
.cred-item h4 { font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.cred-item p { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.6; }

.profile-card {
  background: var(--blue);
  padding: 0; overflow: hidden; position: relative;
}
.profile-card-top {
  padding: 3rem 2.5rem;
  background: var(--blue);
}
.profile-initials {
  font-size: 5rem; font-weight: 900;
  color: rgba(255,255,255,0.12); letter-spacing: -0.05em; line-height: 1;
  margin-bottom: 1.5rem;
}
.profile-card h3 {
  font-size: 1.6rem; font-weight: 900;
  letter-spacing: -0.03em; color: var(--white); line-height: 1;
  margin-bottom: 0.3rem;
}
.profile-card .role {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.profile-card-bottom {
  background: var(--white); padding: 2rem 2.5rem;
}
.profile-card-bottom p {
  font-size: 0.87rem; font-weight: 300;
  color: var(--mid); line-height: 1.8;
}
.profile-card-bottom .btn-main {
  margin-top: 1.5rem; display: inline-block;
}

/* ── NOSOTROS ── */
.sec-nosotros { background: var(--cream-dark); }

.nosotros-layout {
  display: grid; grid-template-columns: 380px 1fr; gap: 6rem; align-items: start;
}

.big-quote { position: sticky; top: 100px; }
.big-quote-mark {
  font-size: 8rem; font-weight: 900;
  color: var(--blue); line-height: 0.8; margin-bottom: 1rem;
  font-family: Georgia, serif;
}
.big-quote p {
  font-size: 1.3rem; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.4;
  color: var(--black);
}
.big-quote-author {
  margin-top: 2rem; display: flex; align-items: center; gap: 12px;
}
.author-dot { width: 32px; height: 3px; background: var(--blue); }
.author-name { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); }

.values-list { display: flex; flex-direction: column; gap: 0; }
.value-item {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 2rem; align-items: start;
  padding: 2.5rem 0; border-bottom: 1px solid var(--border-light);
}
.value-item:first-child { border-top: 1px solid var(--border-light); }
.value-n {
  font-size: 3rem; font-weight: 900; color: rgba(26,63,204,0.1);
  letter-spacing: -0.04em; line-height: 1; margin-top: -6px;
}
.value-item h3 {
  font-size: 1.1rem; font-weight: 800;
  letter-spacing: -0.02em; color: var(--black); margin-bottom: 0.5rem;
}
.value-item p {
  font-size: 0.87rem; font-weight: 300;
  color: var(--mid); line-height: 1.8;
}

/* ── PORQUE ── */
.sec-porque { background: var(--white); }
.porque-intro {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 4rem; gap: 2rem;
}

.porque-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
  background: var(--border-light);
}
.pq-card {
  background: var(--white); padding: 2.5rem 2rem;
  transition: background 0.25s;
}
.pq-card:hover { background: var(--black); }
.pq-card:hover .pq-n,
.pq-card:hover h3 { color: var(--white); }
.pq-card:hover p { color: rgba(255,255,255,0.4); }
.pq-card:hover .pq-icon { background: var(--blue); }

.pq-icon {
  width: 42px; height: 42px; background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; transition: background 0.25s;
}
.pq-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 2; }
.pq-card:hover .pq-icon svg { stroke: var(--cyan); }

.pq-n {
  font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 0.7rem;
  transition: color 0.25s;
}
.pq-card h3 {
  font-size: 1rem; font-weight: 800;
  letter-spacing: -0.01em; color: var(--black);
  margin-bottom: 0.7rem; transition: color 0.25s;
}
.pq-card p {
  font-size: 0.83rem; font-weight: 300;
  color: var(--mid); line-height: 1.75; transition: color 0.25s;
}

/* ── CONTACTO ── */
.sec-contacto { background: var(--black); padding: 0; }

.contact-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh;
}

.contact-left {
  background: var(--blue);
  padding: 6rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.contact-left::before {
  content: 'CONTACTO';
  position: absolute; bottom: -1rem; left: -0.5rem;
  font-size: 7rem; font-weight: 900;
  color: rgba(255,255,255,0.05); letter-spacing: -0.04em;
  white-space: nowrap; pointer-events: none; line-height: 1;
}
.contact-left .sec-num { color: rgba(255,255,255,0.5); }
.contact-left .sec-num::after { background: rgba(255,255,255,0.3); }
.contact-left h2.sec-title { color: var(--white); }
.contact-left .sec-sub { color: rgba(255,255,255,0.55); max-width: 380px; }

.info-blocks { margin-top: 3rem; display: flex; flex-direction: column; gap: 0; }
.info-block {
  padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: flex-start; gap: 1.2rem;
}
.info-block:first-child { border-top: 1px solid rgba(255,255,255,0.12); }
.ib-icon {
  width: 36px; height: 36px; background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ib-icon svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2; }
.info-block h4 {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 3px;
}
.info-block a, .info-block p {
  font-size: 0.92rem; font-weight: 600;
  color: var(--white); text-decoration: none; transition: opacity 0.2s;
}
.info-block a:hover { opacity: 0.7; }

.wa-left {
  margin-top: 2rem; display: inline-flex; align-items: center;
  gap: 0.8rem; padding: 0.9rem 1.5rem;
  background: rgba(255,255,255,0.1); color: var(--white);
  text-decoration: none; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2); transition: background 0.2s;
  width: fit-content;
}
.wa-left:hover { background: rgba(255,255,255,0.2); }
.wa-left svg { width: 18px; height: 18px; fill: white; }

.contact-right {
  background: var(--black-soft);
  padding: 6rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-right h3 {
  font-size: 1.3rem; font-weight: 900;
  letter-spacing: -0.02em; color: var(--white);
  margin-bottom: 0.4rem;
}
.contact-right > p {
  font-size: 0.82rem; font-weight: 300;
  color: rgba(255,255,255,0.3); margin-bottom: 2.5rem;
}

.form-group { margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 0.45rem;
}
input, select, textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.18);
  color: var(--white); font-family: 'Poppins', sans-serif;
  font-size: 0.87rem; font-weight: 400;
  padding: 0.8rem 1rem; outline: none;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 0;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.18); }
input:focus, select:focus, textarea:focus {
  border-color: var(--cyan); background: rgba(0,180,216,0.05);
}
select option { background: #141828; color: var(--white); }
textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; background: var(--blue); color: var(--white);
  font-family: 'Poppins', sans-serif; font-size: 0.75rem;
  font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 1.1rem; border: none; cursor: pointer;
  transition: background 0.2s; margin-top: 0.5rem;
  border-radius: 0;
}
.form-submit:hover { background: var(--blue-light); }
.form-note {
  font-size: 0.65rem; color: rgba(255,255,255,0.18);
  margin-top: 0.8rem; text-align: center; font-weight: 300;
}

/* ── FOOTER ── */
footer {
  background: #060810; padding: 3rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.footer-copy {
  font-size: 0.72rem; font-weight: 400;
  color: rgba(255,255,255,0.18); text-align: center;
}
.footer-links-row { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links-row a {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.22); text-decoration: none; transition: color 0.2s;
}
.footer-links-row a:hover { color: var(--cyan); }
.footer-designed { font-size: 0.68rem; color: rgba(255,255,255,0.18); }
.footer-designed a { color: var(--cyan); text-decoration: none; transition: opacity 0.2s; }
.footer-designed a:hover { opacity: 0.7; }

/* ── WA FLOAT ── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  width: 54px; height: 54px; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: transform 0.2s;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: white; }
.wa-pulse {
  position: absolute; inset: -5px;
  border: 2px solid #25d366;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse { 0%{opacity:.6;transform:scale(1)} 100%{opacity:0;transform:scale(1.5)} }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { border-left: none; border-top: 1px solid var(--border-dark); }
  .titular-layout { grid-template-columns: 1fr; }
  .nosotros-layout { grid-template-columns: 1fr; }
  .big-quote { position: static; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-left::before { font-size: 5rem; }
  .services-intro { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .srv-card { border-right: 1px solid var(--border-light) !important; }
  .services-grid .srv-card:last-child { border-bottom: 1px solid var(--border-light); }
  .porque-grid { grid-template-columns: 1fr; gap: 0; }
  .porque-intro { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; text-align: center; align-items: center; }
  .hero-left { padding: 5rem 2rem 3rem; }
  .hero-right { padding: 3rem 2rem; }
  .contact-left, .contact-right { padding: 4rem 2rem; }
  .sec { padding: 5rem 1.5rem; }
}
