/*
Theme Name: OMarketing y Eventos
Theme URI: https://omarketingyeventos.com
Author: OMarketing
Author URI: https://omarketingyeventos.com
Description: Tema personalizado para OMarketing y Eventos — Deep Blue + Metallic Gold Luxury Design
Version: 1.2
License: GNU General Public License v2 or later
Text Domain: omarketing
*/


@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600;700;800&display=swap');


:root {
  --navy:        #0A1628;
  --navy-mid:    #0D1F3C;
  --navy-light:  #152844;
  --gold:        #C9A84C;
  --gold-light:  #E8C96E;
  --gold-dark:   #A07830;
  --gold-pale:   #F5E9C8;
  --white:       #FFFFFF;
  --off-white:   #F8F6F1;
  --gray-light:  #E8E4DA;
  --gray-mid:    #9A9080;
  --text-dark:   #1A1510;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;
  --shadow-gold: 0 8px 40px rgba(201,168,76,0.25);
  --shadow-navy: 0 8px 40px rgba(10,22,40,0.4);
  --transition:  0.38s cubic-bezier(0.4,0,0.2,1);
  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   16px;
  --header-h: 80px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100%; } /* FIX franja blanca */
body { font-family: var(--font-body); background: var(--white); color: var(--text-dark); line-height: 1.7; overflow-x: hidden; max-width: 100%; } /* FIX franja blanca */
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, textarea, select { font-family: var(--font-body); }


/* ─── WORDPRESS CORE FIXES ───────────────────────── */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
.wp-block-image { margin: 0; }
p:empty { display: none; }
.nav-main .current-menu-item > a,
.nav-main .current-menu-ancestor > a { color: var(--gold); }

/* ── DROPDOWN FIX DEFINITIVO ── */
.nav-main li { position: relative; }

.nav-main .sub-menu,
.nav-main .dropdown-menu {
  position: absolute;
  top: calc(100% + 18px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.2);
  min-width: 280px; opacity: 0; visibility: hidden;
  transition: opacity 0.28s ease, transform 0.28s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  z-index: 1001;
}
.nav-main li:hover > .sub-menu,
.nav-main li:hover > .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-main .sub-menu li a,
.nav-main .dropdown-menu li a {
  display: block; padding: 13px 24px;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); border-bottom: 1px solid rgba(255,255,255,0.05); transition: all 0.2s;
}
.nav-main .sub-menu li:last-child a,
.nav-main .dropdown-menu li:last-child a { border-bottom: none; }
.nav-main .sub-menu li a:hover,
.nav-main .dropdown-menu li a:hover { color: var(--gold); padding-left: 32px; background: rgba(201,168,76,0.06); }


/* ─── UTILITY ─────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container--wide { max-width: 1440px; margin: 0 auto; padding: 0 60px; }
.section { padding: 100px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--off { background: var(--off-white); }
.section--navy-mid { background: var(--navy-mid); color: var(--white); }
.gold-line { display: block; width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin: 16px 0 28px; }
.gold-line--center { margin: 16px auto 28px; }
.eyebrow { font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.2; color: var(--navy); }
.section-title--light { color: var(--white); }
.section-title--center { text-align: center; }
.section-subtitle { font-size: 1.05rem; font-weight: 300; color: var(--gray-mid); max-width: 620px; margin: 0 auto; text-align: center; }
.section-subtitle--left { text-align: left; margin: 0; }


/* ─── BUTTONS ─────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 36px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; border: none; cursor: pointer; transition: var(--transition); position: relative; overflow: hidden; }
.btn::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.08); opacity: 0; transition: var(--transition); }
.btn:hover::after { opacity: 1; }
.btn--gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%); background-size: 200% 100%; color: var(--navy); box-shadow: var(--shadow-gold); }
.btn--gold:hover { background-position: 100% 0; transform: translateY(-2px); box-shadow: 0 12px 50px rgba(201,168,76,0.4); }
.btn--outline-gold { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn--outline-gold:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn--outline-white { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }
.btn--outline-white:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }


/* ─── HEADER / NAV ────────────────────────────────── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--header-h); transition: background 0.4s ease, box-shadow 0.4s ease; background: transparent; }
.site-header.scrolled { background: rgba(10,22,40,0.97); backdrop-filter: blur(12px); box-shadow: 0 2px 30px rgba(10,22,40,0.5); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; padding: 0 40px; overflow: visible; }
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-primary { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--white); letter-spacing: 0.02em; }
.logo-primary span { color: var(--gold); }
.logo-sub { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-top: 3px; }
.nav-main { display: flex; align-items: center; gap: 40px; overflow: visible; }
.nav-main > li { position: relative; }
.nav-main > li > a { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.85); padding: 6px 0; transition: color var(--transition); display: flex; align-items: center; gap: 5px; }
.nav-main > li > a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.nav-main > li > a:hover, .nav-main > li > a.active { color: var(--gold); }
.nav-main > li > a:hover::after { transform: scaleX(1); }
.caret { display: inline-block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; transition: transform 0.2s; margin-left: 2px; }
.nav-main > li:hover .caret { transform: rotate(180deg); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--white); transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }


/* ─── HERO ────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,0.12) 0%, transparent 60%), radial-gradient(ellipse 50% 80% at 20% 80%, rgba(13,31,60,0.8) 0%, transparent 70%), linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #091525 100%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px); background-size: 60px 60px; }
.hero-content { position: relative; z-index: 2; padding: 80px 0; }
.hero-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 12px; margin-bottom: 24px; opacity: 0; animation: fadeUp 0.8s 0.3s forwards; }
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero-title { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300; line-height: 1.08; color: var(--white); margin-bottom: 28px; opacity: 0; animation: fadeUp 0.8s 0.5s forwards; }
.hero-title strong { font-weight: 600; color: var(--gold-light); display: block; }
.hero-desc { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.65); max-width: 540px; margin-bottom: 44px; opacity: 0; animation: fadeUp 0.8s 0.7s forwards; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s 0.9s forwards; }
.hero-stats { display: flex; gap: 48px; margin-top: 72px; padding-top: 48px; border-top: 1px solid rgba(201,168,76,0.2); opacity: 0; animation: fadeUp 0.8s 1.1s forwards; }
.hero-stat__num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.hero-stat__label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.45); }


/* ─── SERVICES GRID ───────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gray-light); margin-top: 70px; }
.service-card { background: var(--white); padding: 48px 40px; position: relative; overflow: hidden; transition: var(--transition); cursor: pointer; display: block; color: var(--text-dark); }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transition: transform 0.4s ease; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--off-white); }
.service-card:hover .service-card__arrow { transform: translateX(6px); opacity: 1; }
.service-card__icon { font-size: 2.4rem; margin-bottom: 24px; display: block; color: var(--gold); transition: var(--transition); }
.service-card__num { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 10px; }
.service-card__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; line-height: 1.2; margin-bottom: 14px; color: var(--navy); }
.service-card__desc { font-size: 0.88rem; color: var(--gray-mid); line-height: 1.7; margin-bottom: 24px; }
.service-card__arrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 8px; opacity: 0.6; transition: all 0.3s; }


/* ─── MARQUEE ─────────────────────────────────────── */
.marquee-strip { background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark)); padding: 14px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 0; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy); padding: 0 36px; }
.marquee-track span::after { content: '✦'; margin-left: 36px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


/* ─── ABOUT STRIP ─────────────────────────────────── */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 560px; }
.about-strip__content { background: var(--navy); padding: 80px 70px; display: flex; flex-direction: column; justify-content: center; }
.about-strip__visual { background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.about-strip__visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(201,168,76,0.15) 0%, transparent 60%), radial-gradient(circle at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 40%); }
.visual-number { font-family: var(--font-display); font-size: 14rem; font-weight: 700; color: rgba(201,168,76,0.06); line-height: 1; user-select: none; position: absolute; right: -20px; bottom: -20px; }
.visual-badge { position: relative; z-index: 1; width: 200px; height: 200px; border: 1px solid rgba(201,168,76,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; padding: 20px; animation: rotateSlow 20s linear infinite; }
.visual-badge-inner { font-family: var(--font-display); font-size: 4rem; font-weight: 300; color: var(--gold); line-height: 1; animation: rotateSlow 20s linear infinite reverse; }
.visual-badge-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px; animation: rotateSlow 20s linear infinite reverse; }
@keyframes rotateSlow { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }


/* ─── STATS BAR ───────────────────────────────────── */
.stats-bar { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(201,168,76,0.15); }
.stat-item { padding: 48px 24px; text-align: center; background: var(--navy); }
.stat-item__num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-item__label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.45); }


/* ─── FEATURES GRID ───────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
.feature-item { padding: 40px 32px; border: 1px solid var(--gray-light); position: relative; transition: var(--transition); opacity: 0; transform: translateY(24px); }
.feature-item.visible { opacity: 1; transform: translateY(0); }
.feature-item::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: linear-gradient(var(--gold), var(--gold-light)); transition: height 0.5s ease; }
.feature-item:hover::before { height: 100%; }
.feature-item:hover { border-color: rgba(201,168,76,0.3); }
.feature-icon { font-size: 2rem; margin-bottom: 20px; display: block; }
.feature-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--navy); margin-bottom: 12px; }
.feature-desc { font-size: 0.88rem; color: var(--gray-mid); line-height: 1.7; }


/* ─── PAGE HERO ───────────────────────────────────── */
.page-hero { min-height: 55vh; display: flex; align-items: flex-end; padding-bottom: 70px; position: relative; overflow: hidden; background: var(--navy); padding-top: var(--header-h); }
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 80% 20%, rgba(201,168,76,0.1) 0%, transparent 60%), linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }
.page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px); background-size: 50px 50px; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero__back { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; transition: gap 0.2s; }
.page-hero__back:hover { gap: 14px; }
.page-hero__title { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 4.5rem); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.page-hero__title em { font-style: italic; color: var(--gold-light); }
.page-hero__desc { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.6); max-width: 600px; }


/* ─── TWO COL ─────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }
.visual-box { position: relative; aspect-ratio: 4/3; background: var(--navy-light); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.visual-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 40% 60%, rgba(201,168,76,0.18) 0%, transparent 65%); }
.visual-box__icon { font-size: 6rem; opacity: 0.15; position: absolute; }
.visual-box__pattern { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px); background-size: 40px 40px; }
.visual-box__label { position: relative; z-index: 1; border: 1px solid rgba(201,168,76,0.25); padding: 24px 40px; text-align: center; }
.visual-box__label-title { font-family: var(--font-display); font-size: 2.8rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.visual-box__label-sub { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.visual-box__corner { position: absolute; width: 30px; height: 30px; }
.visual-box__corner--tl { top: 16px; left: 16px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.visual-box__corner--tr { top: 16px; right: 16px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.visual-box__corner--bl { bottom: 16px; left: 16px; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.visual-box__corner--br { bottom: 16px; right: 16px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }


/* ─── PROCESS LIST ────────────────────────────────── */
.process-list { counter-reset: process; display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; background: var(--gray-light); margin-top: 60px; }
.process-item { counter-increment: process; background: var(--white); padding: 40px; position: relative; overflow: hidden; transition: background 0.3s; }
.process-item:hover { background: var(--navy); }
.process-item:hover .process-item__title { color: var(--white); }
.process-item:hover .process-item__desc { color: rgba(255,255,255,0.55); }
.process-item__num { font-family: var(--font-display); font-size: 5rem; font-weight: 300; color: rgba(10,22,40,0.05); line-height: 1; position: absolute; top: 10px; right: 20px; transition: color 0.3s; }
.process-item::before { content: counter(process, decimal-leading-zero); display: block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 14px; }
.process-item__title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--navy); margin-bottom: 10px; transition: color 0.3s; }
.process-item__desc { font-size: 0.87rem; color: var(--gray-mid); line-height: 1.7; transition: color 0.3s; }


/* ─── CTA BANNER ──────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 40%, rgba(201,168,76,0.08) 100%); border: 1px solid rgba(201,168,76,0.15); padding: 80px 70px; position: relative; overflow: hidden; margin: 80px 0; }
.cta-banner::before { content: ''; position: absolute; top: -40px; right: -40px; width: 300px; height: 300px; border: 1px solid rgba(201,168,76,0.1); border-radius: 50%; }
.cta-banner::after { content: ''; position: absolute; bottom: -60px; right: 60px; width: 200px; height: 200px; border: 1px solid rgba(201,168,76,0.08); border-radius: 50%; }
.cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 1; }
.cta-banner__title { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; color: var(--white); line-height: 1.2; }
.cta-banner__title strong { color: var(--gold); font-weight: 600; }
.cta-banner__sub { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-top: 8px; }
.cta-banner__actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }


/* ─── TESTIMONIALS ────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.testimonial-card { background: var(--white); border: 1px solid var(--gray-light); padding: 36px 32px; position: relative; transition: var(--transition); }
.testimonial-card:hover { border-color: rgba(201,168,76,0.4); box-shadow: var(--shadow-gold); }
.testimonial-card::before { content: '"'; font-family: var(--font-display); font-size: 5rem; color: rgba(201,168,76,0.15); line-height: 1; position: absolute; top: 10px; left: 20px; }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--gold); font-size: 0.85rem; }
.testimonial-text { font-size: 0.92rem; color: var(--gray-mid); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--navy); flex-shrink: 0; }
.testimonial-name { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.testimonial-role { font-size: 0.75rem; color: var(--gray-mid); margin-top: 2px; }


/* ─── CONTACT FORM ────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info__item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 36px; }
.contact-info__icon { width: 48px; height: 48px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; color: var(--gold); }
.contact-info__label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-info__value { font-size: 0.95rem; color: var(--navy); line-height: 1.5; }
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-mid); margin-bottom: 8px; }
.form-control { width: 100%; padding: 14px 18px; border: 1px solid var(--gray-light); background: var(--white); font-size: 0.9rem; color: var(--text-dark); font-family: var(--font-body); transition: border-color 0.2s; border-radius: 0; outline: none; }
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23C9A84C' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-success { display: none; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); padding: 20px; text-align: center; color: var(--gold-dark); font-weight: 500; }


/* ─── FOOTER ──────────────────────────────────────── */
.site-footer { background: #060F1A; color: var(--white); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo-primary { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--white); line-height: 1; margin-bottom: 4px; }
.footer-logo-primary span { color: var(--gold); }
.footer-logo-sub { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 280px; margin-bottom: 28px; }
.social-icons { display: flex; gap: 12px; }
.social-icon { width: 38px; height: 38px; border: 1px solid rgba(201,168,76,0.25); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.95rem; transition: var(--transition); text-decoration: none; }
.social-icon:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-col-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.87rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.72rem; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }


/* ─── WHATSAPP FLOAT ──────────────────────────────── */
.wa-float { position: fixed; bottom: 32px; right: 32px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.wa-tooltip { background: var(--navy); color: var(--white); font-size: 0.78rem; padding: 8px 16px; white-space: nowrap; opacity: 0; transform: translateX(10px); transition: all 0.3s; pointer-events: none; border-left: 3px solid var(--gold); }
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.wa-btn { width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,0.4); transition: transform 0.3s, box-shadow 0.3s; color: white; font-size: 1.6rem; }
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 10px 32px rgba(37,211,102,0.5); }


/* ─── SERVICE TAGS ────────────────────────────────── */
.service-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.service-tag { background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); padding: 6px 16px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }


/* ─── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }
.text-gold { background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }


/* ─── MOBILE NAV OVERLAY ──────────────────────────── */
.mobile-nav-overlay { display: none; position: fixed; inset: 0; background: var(--navy); z-index: 999; padding: var(--header-h) 40px 40px; overflow-y: auto; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
.mobile-nav-overlay.open { transform: translateX(0); }
.mobile-nav-links { display: flex; flex-direction: column; gap: 0; margin-top: 20px; }
.mobile-nav-links a { display: block; font-family: var(--font-display); font-size: 1.8rem; font-weight: 300; color: rgba(255,255,255,0.75); padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s; }
.mobile-nav-links a:hover { color: var(--gold); }
.mobile-nav-links .sub-link { font-size: 1rem; padding: 10px 0 10px 20px; color: rgba(255,255,255,0.45); }


/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 30px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 50px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip__visual { display: none; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .container { padding: 0 20px; }
  .section { padding: 70px 0; }
  .nav-main { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav-overlay { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 28px; }
  .process-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { padding: 50px 30px; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-strip__content { padding: 50px 30px; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .form-row { grid-template-columns: 1fr; }
  .wa-float { bottom: 20px; right: 20px; }
}
