/* ═══════════════════════════════════════════════════════════════
   VICTLEO GROUP — styles.css
   Tipografía: Poppins  |  Colores marca: #FE7002, #1A1A1A, #585959
═══════════════════════════════════════════════════════════════ */

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

:root {
  --orange:    #FE7002;
  --orange2:   #FF6F34;
  --orange3:   #FCB686;
  --orange-lt: #FFF0EA;
  --orange-lt2:#FFF2E0;
  --yellow:    #FDB813;
  --dark:      #1A1A1A;
  --gray:      #585959;
  --red:       #C10007;
  --red-lt:    #F9E5E5;
  --white:     #ffffff;
  --border:    #FCB686;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(254,112,2,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--orange2); transform: translateY(-1px); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 13px 28px;
  border-radius: 50px;
  transition: background .2s, transform .15s;
}
.btn-whatsapp:hover { background: var(--orange2); transform: translateY(-1px); }

.btn-svc {
  display: inline-block;
  margin-top: 14px;
  background: transparent;
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  padding: 9px 18px;
  border-radius: 50px;
  border: 1.8px solid var(--orange);
  transition: background .2s, color .2s;
}
.btn-svc:hover { background: var(--orange); color: var(--white); }

.btn-nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 9px 20px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  transition: background .2s;
}
.btn-nav-cta:hover { background: var(--orange2); }

/* ─── SECTION HEADERS ─── */
.section-header { text-align: center; margin-bottom: 48px; }

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.section-sub {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gray);
}

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: box-shadow .3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.04em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--orange); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,26,26,0.82) 0%, rgba(26,26,26,0.55) 50%, rgba(26,26,26,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-top: 60px;
  padding-bottom: 80px;
  max-width: 640px;
}

.hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
}

/* ════════════════════════════════════════
   SERVICES SECTION
════════════════════════════════════════ */
.section-services {
  padding: 80px 0 60px;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  border: 1.8px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0 0 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(254,112,2,0.16); }

.service-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.service-card:hover .service-img-wrap img { transform: scale(1.04); }

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  padding: 18px 20px 6px;
}

.svc-desc {
  font-size: 0.82rem;
  color: var(--gray);
  padding: 0 20px 6px;
  font-weight: 500;
}

.svc-list {
  padding: 0 20px 10px 32px;
  list-style: disc;
}
.svc-list li {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 2px;
}

.svc-bullets { padding: 0 20px 10px; }
.svc-bullets li {
  font-size: 0.78rem;
  color: var(--gray);
  padding-left: 14px;
  position: relative;
  margin-bottom: 4px;
}
.svc-bullets li::before {
  content: "•";
  color: var(--orange);
  position: absolute;
  left: 0;
}

.svc-note {
  font-size: 0.73rem;
  color: var(--orange);
  font-weight: 500;
  font-style: italic;
  padding: 6px 20px 0;
  margin-top: auto;
}

.service-card .btn-svc { margin: 12px 20px 0; align-self: flex-start; }

/* ════════════════════════════════════════
   SERVICIOS ADICIONALES
════════════════════════════════════════ */
.section-additional {
  padding: 60px 0 80px;
  background: var(--white);
}

.add-box {
  background: var(--orange-lt);
  border: 1.8px solid var(--border);
  border-radius: 20px;
  padding: 40px 40px 32px;
}

.add-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.add-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}
.add-sub {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 28px;
}

.add-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.add-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  gap: 0;
  border: 1px solid rgba(254,112,2,0.15);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.add-img-wrap {
  width: 130px;
  flex-shrink: 0;
  overflow: hidden;
}
.add-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.add-body {
  padding: 16px 18px;
}
.add-body h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.add-body p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.55;
}

/* last card centered if odd */
.add-grid .add-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 50%;
  margin: 0 auto;
}

.add-footer-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--gray);
  font-style: italic;
}

/* ════════════════════════════════════════
   HOW TO HIRE
════════════════════════════════════════ */
.section-how {
  padding: 80px 0;
  background: var(--white);
}
.section-how .section-title { text-align: center; margin-bottom: 48px; }

.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 32px;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 165px;
  gap: 10px;
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--orange-lt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-step h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.how-step p {
  font-size: 0.75rem;
  color: var(--gray);
}

.how-arrow {
  font-size: 2rem;
  color: var(--orange);
  align-self: center;
  padding: 0 6px;
  margin-top: 24px;
}

.how-cta {
  text-align: center;
  margin-top: 48px;
}

/* ════════════════════════════════════════
   WHY US
════════════════════════════════════════ */
.section-why {
  padding: 80px 0;
  background: var(--orange-lt);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(254,112,2,0.12);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.why-card p {
  font-size: 0.8rem;
  color: var(--gray);
}

.why-emphasis {
  text-align: center;
  font-size: 1rem;
  color: var(--dark);
  font-weight: 400;
  line-height: 1.7;
}

/* ════════════════════════════════════════
   COVERAGE
════════════════════════════════════════ */
.section-coverage {
  padding: 80px 0;
  background: var(--dark);
  color: var(--white);
}

.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.coverage-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 32px;
}

.coverage-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.coverage-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coverage-icon.orange {
  background: rgba(254,112,2,0.18);
  color: var(--orange);
}

.coverage-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.coverage-item p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.coverage-zones {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.zone-pill {
  background: rgba(254,112,2,0.15);
  border: 1.5px solid var(--orange);
  color: var(--orange);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 24px;
  border-radius: 50px;
}

.coverage-right { display: flex; justify-content: center; align-items: center; }

.peru-map-wrap {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(254,112,2,0.2);
}
.peru-map { width: 240px; max-width: 100%; }

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.section-about {
  padding: 80px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}

.about-logo { height: 48px; width: auto; margin-bottom: 20px; }

.about-left p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-right h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
}

.enfoque-list { display: flex; flex-direction: column; gap: 20px; }

.enfoque-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.enfoque-dot {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 4px;
}

.enfoque-item strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
  margin-bottom: 2px;
}
.enfoque-item p {
  font-size: 0.8rem;
  color: var(--gray);
  margin: 0;
}

/* ════════════════════════════════════════
   WHAT TO EXPECT
════════════════════════════════════════ */
.section-expect {
  padding: 80px 0;
  background: var(--orange-lt);
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.expect-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.expect-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange-lt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.expect-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}

/* ════════════════════════════════════════
   CONDITIONS
════════════════════════════════════════ */
.section-conditions {
  padding: 70px 0;
  background: var(--white);
}

.conditions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.condition-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--orange-lt);
  border-left: 3px solid var(--orange);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.condition-check {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(254,112,2,0.15);
}

.condition-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
  margin-top: 4px;
}

/* ════════════════════════════════════════
   INFORMACIÓN IMPORTANTE
════════════════════════════════════════ */
.section-important {
  padding: 50px 0;
  background: var(--white);
}

.important-box {
  background: var(--red-lt);
  border: 1.8px solid #E8B4B4;
  border-radius: var(--radius);
  padding: 30px 36px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.important-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}
.important-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
}

.important-box p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ════════════════════════════════════════
   CTA FINAL
════════════════════════════════════════ */
.section-cta-final {
  padding: 80px 0;
  background: var(--dark);
  text-align: center;
}

.cta-final-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-cta-final h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
}

.section-cta-final p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: #111111;
  color: rgba(255,255,255,0.8);
  padding-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo { height: 42px; width: auto; margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background .2s;
}
.social-icon:hover { background: var(--orange); }

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.contact-item svg { flex-shrink: 0; margin-top: 2px; }
.contact-item span,
.contact-item a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}
.contact-item a:hover { color: var(--orange); }

.footer-coverage p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-zones {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-zones span {
  background: rgba(254,112,2,0.15);
  border: 1px solid rgba(254,112,2,0.4);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 50px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ─── WhatsApp flotante ─── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ════════════════════════════════════════
   RESPONSIVE — TABLET
════════════════════════════════════════ */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .expect-grid   { grid-template-columns: repeat(2, 1fr); }
  .coverage-inner{ grid-template-columns: 1fr; }
  .coverage-right{ display: none; }
  .about-grid    { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .footer-brand  { grid-column: 1 / -1; }
}

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE
════════════════════════════════════════ */
@media (max-width: 620px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    gap: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .hamburger { display: flex; }

  .hero        { min-height: 480px; }
  .hero-content{ padding-top: 40px; padding-bottom: 60px; }

  .services-grid { grid-template-columns: 1fr; }
  .add-grid      { grid-template-columns: 1fr; }
  .add-grid .add-card:last-child:nth-child(odd) { max-width: 100%; }
  .why-grid      { grid-template-columns: 1fr; }
  .expect-grid   { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; }
  .add-box       { padding: 24px 20px; }

  .how-steps {
    flex-direction: column;
    align-items: center;
  }
  .how-arrow { transform: rotate(90deg); margin-top: 0; }

  .coverage-zones { flex-wrap: wrap; }
}
