﻿:root
{
  --ink:#16202b;
  --muted:#637080;
  --blue:#25a9e0;
  --dark:#0788bd;
  --pale:#edf8fc;
  --line:#e4ebef
}
*
{
  box-sizing:border-box
}
html
{
  scroll-behavior:smooth
}
body
{
  margin:0;
  color:var(--ink);
  font-family:'DM Sans',sans-serif;
  line-height:1.55
}
a
{
  color:inherit;
  text-decoration:none
}
img
{
  display:block;
  max-width:100%
}
.container
{
  width:min(1160px,calc(100% - 48px));
  margin:auto
}
.eyebrow
{
  color:var(--dark);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase
}
h1,h2,h3
{
  font-family:Manrope,sans-serif;
  line-height:1.1;
  letter-spacing:-.045em
}
h1
{
  font-size:clamp(2.8rem,6vw,5.25rem);
  max-width:680px;
  margin:0
}
h2
{
  font-size:clamp(2rem,4vw,3.1rem);
  margin:0
}
p
{
  color:var(--muted);
  margin:0
}
.btn
{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 21px;
  border-radius:10px;
  font-weight:700;
  border:1px solid transparent;
  cursor:pointer;
  font:inherit
}
.btn-primary
{
  color:#fff;
  background:var(--blue);
  box-shadow:0 8px 18px #25a9e02e
}
.btn-primary:hover
{
  background:var(--dark);
  transform:translateY(-2px)
}
.btn-light
{
  background:#fff;
  border-color:var(--line)
}
header
{
  height:82px;
  display:flex;
  align-items:center;
  border-bottom:1px solid #eef2f4;
  background:#ffffffeb;
  backdrop-filter:blur(12px);
  position:sticky;
  top:0;
  z-index:5
}
.nav
{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px
}
.brand
{
  display:flex;
  align-items:center;
  gap:11px;
  font-family:Manrope;
  font-weight:800;
  line-height:1.02;
  max-width:245px
}
.brand-mark
{
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border-radius:11px;
  color:#fff;
  background:var(--blue);
  font-size:18px
}
.brand small
{
  display:block;
  color:var(--dark);
  font:700 9px 'DM Sans';
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-top:4px
}
nav
{
  display:flex;
  gap:30px;
  font-size:.88rem;
  font-weight:600;
  color:#53606d
}
.menu
{
  display:none;
  background:none;
  border:0;
  font-size:24px
}
.hero
{
  padding:84px 0 100px
}
.hero-grid
{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:70px;
  align-items:center
}
.hero-copy
{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:24px
}
.hero-copy h1 span
{
  color:var(--blue)
}
.hero-copy p
{
  max-width:525px;
  font-size:1.09rem;
  line-height:1.7
}
.hero-actions
{
  display:flex;
  gap:12px;
  flex-wrap:wrap
}
.hero-visual
{
  height:530px;
  position:relative
}
.hero-photo
{
  height:100%;
  width:88%;
  margin-left:auto;
  object-fit:cover;
  border-radius:22px
}
.visual-frame
{
  position:absolute;
  inset:24px 0 0 25px;
  border:1px solid var(--blue);
  border-radius:22px;
  z-index:-1
}
.hero-badges
{
  position: absolute;
  left: 0;
  bottom: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}
.hero-stat
{
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 14px 36px #1224381c;
  display: flex;
  gap: 10px;
  align-items: center
}
.stat-icon
{
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--dark);
  border-radius: 50%;
  background: var(--pale);
  font-size: 20px
}
.stat-icon i
{
  font-size: 20px;
  font-style: normal
}
.hero-stat strong
{
  display: block;
  font: 800 1.1rem Manrope;
  color: var(--ink)
}
.hero-stat strong::after
{
  content: attr(data-suffix);
  display: none
}
.hero-stat span span
{
  color: var(--muted);
  font-size: .75rem
}
section
{
  padding:100px 0
}
.services
{
  background:#f8fbfc
}
.section-head
{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:30px;
  margin-bottom:46px
}
.section-head p
{
  max-width:410px
}
.service-grid
{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px
}
.service-card
{
  min-height:220px;
  padding:28px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  cursor:pointer;
  transition:.3s ease-in-out
}
/* hover effects moved to @media (hover: hover) below */
.service-icon
{
  width:45px;
  height:45px;
  display:grid;
  place-items:center;
  color:var(--dark);
  background:var(--pale);
  border-radius:12px;
  font-size:21px;
  margin-bottom:22px;
  transition:.2s
}
.service-card h3
{
  font-size:1.12rem;
  letter-spacing:-.02em;
  margin:0 0 10px
}
.service-card p
{
  font-size:.9rem
}
.manager-grid,.contact-grid
{
  display:grid;
  grid-template-columns:.86fr 1.14fr;
  gap:90px;
  align-items:center
}
.manager-photo-wrap
{
  max-width:410px;
  position:relative;
  padding:12px 0 0 12px
}
.manager-photo
{
  width:100%;
  height:430px;
  object-fit:cover;
  border-radius:18px
}
.manager-accent
{
  position:absolute;
  z-index:-1;
  inset:0 20px 20px 0;
  border:1px solid var(--blue);
  border-radius:18px
}
.manager-copy,.contact-copy
{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:22px
}
.manager-copy h2
{
  max-width:500px
}
.manager-copy h2 span
{
  color:var(--blue)
}
.signature
{
  font-family:Manrope;
  font-weight:800;
  font-size:1.18rem
}
.contact
{
  background:var(--pale)
}
.contact-copy p
{
  font-size:1.05rem;
  max-width:430px
}
.contact-info
{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding-top:10px
}
.contact-info a
{
  color:var(--dark);
  font-weight:700
}
.contact-address
{
  color:var(--dark);
  font-weight:700
}
form
{
  background:#fff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 12px 36px #1232490b;
  display:block;
  overflow:hidden
}
label
{
  display:flex;
  flex-direction:column;
  gap:7px;
  font-size:.8rem;
  font-weight:700;
  color:#4d5c68
}
input,select,textarea
{
  width:100%;
  border:1px solid var(--line);
  border-radius:9px;
  padding:13px 14px;
  font:inherit;
  color:var(--ink);
  background:#fff
}
textarea
{
  min-height:115px;
  resize:vertical
}
.full
{
  grid-column:1/-1
}
.form-message
{
  display:none;
  color:var(--dark);
  font-size:.9rem;
  font-weight:600;
  align-self:center
}
footer
{
  background:var(--ink);
  color:#fff;
  padding:45px 0 28px
}
.footer-top
{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:30px;
  padding-bottom:40px
}
footer .brand
{
  color:#fff
}
footer .brand small
{
  color:#8bd8f2
}
.footer-email
{
  color:#a9bac6;
  font-size:.9rem;
  margin-top:10px
}
.socials
{
  display:flex;
  gap:10px
}
.socials a
{
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border:1px solid #ffffff2b;
  border-radius:50%;
  font-weight:700;
  font-size:.8rem
}
.copyright
{
  border-top:1px solid #ffffff1c;
  padding-top:20px;
  color:#8c9ba6;
  font-size:.78rem
}
.hero-grid
{
  grid-template-columns: 1.1fr .9fr
}
.manager-grid
{
  grid-template-columns: .9fr 1.1fr
}
.hero-visual
{
  height: 460px
}
.manager-photo
{
  height: 420px;
  object-position: top center
}
.service-icon i
{
  font-size: 28px;
  font-style: normal;
  display: inline-block;
  transition: .2s
}
.testimonials
{
  background: #f8fbfc
}
.testimonial-grid
{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}
.testimonial-card
{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .3s ease-in-out
}
.testimonial-card p
{
  color: var(--ink);
  margin-bottom: 18px
}
.testimonial-author
{
  font-weight: 700;
  color: var(--dark)
}
.social
{
  background: #fff
}
.social-grid
{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}
.social-card
{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  font-weight: 700;
  color: var(--ink);
  background: #fff
}
.social-card:hover
{
  background: var(--pale);
  border-color: var(--blue)
}
.social-badge
{
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--dark);
  background: var(--pale);
  font-size: .8rem
}
@media(max-width:800px)
{
  .container
  {
    width:min(100% - 32px,600px)
  }
  nav,header .btn
  {
    display:none
  }
  .menu
  {
    display:block
  }
  .hero
  {
    padding:40px 0 50px
  }
  .hero-grid,.manager-grid,.contact-grid
  {
    grid-template-columns:1fr;
    gap:30px
  }
  .hero-visual
  {
    height:auto;
    padding:10px 35px 70px 35px
  }
  .hero-photo
  {
    width:100%;
    height:340px;
    object-position: center 25%
  }
  .visual-frame
  {
    display:none
  }
  .section-head
  {
    display:block
  }
  .section-head p
  {
    margin-top:15px
  }
  .service-grid
  {
    grid-template-columns:1fr 1fr
  }
  .manager-photo-wrap
  {
    max-width:100%
  }
  .manager-photo
  {
    height:360px
  }
}
@media(max-width:520px)
{
  .service-grid,form
  {
    grid-template-columns:1fr
  }
  .full
  {
    grid-column:auto
  }
  .hero-actions .btn
  {
    width:100%
  }
  section
  {
    padding:70px 0
  }
  .footer-top
  {
    flex-direction:column
  }
}
@media(max-width:800px)
{
  .testimonial-grid,
  .social-grid
  {
    grid-template-columns: 1fr 1fr
  }
}
@media(max-width:520px)
{
  .testimonial-grid,
  .social-grid
  {
    grid-template-columns: 1fr
  }
}

.proof
{
  background: var(--pale)
}
.proof-grid
{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}
.proof-card
{
  text-align: center;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px
}
.proof-number
{
  display: block;
  font-family: Manrope;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--dark);
  line-height: 1
}
.proof-label
{
  color: var(--muted);
  font-size: .9rem
}
@media(max-width:800px)
{
  .proof-grid
  {
    grid-template-columns: 1fr 1fr
  }
}
@media(max-width:520px)
{
  .proof-grid
  {
    grid-template-columns: 1fr
  }
}

.testimonial-photo
{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  align-self: center
}
.stars
{
  display: flex;
  gap: 4px;
  color: var(--dark);
  margin-bottom: 18px;
  align-self: center
}
.stars i
{
  font-size: 18px
}

.contact-info a
{
  color: var(--dark);
  font-weight: 700
}
.footer-phones
{
  display: flex;
  gap: 8px;
  margin-top: 10px;
  color: #a9bac6;
  font-size: .9rem;
  flex-wrap: wrap
}
.footer-phones a
{
  color: #a9bac6
}
.footer-phones a:hover
{
  color: #fff
}
.footer-address
{
  color: #a9bac6;
  font-size: .9rem;
  margin-top: 4px
}
.whatsapp-float
{
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(37, 169, 224, .35);
  z-index: 100;
  transition: transform .2s;
  animation: whatsapp-pulse 2.5s ease-in-out infinite
}
.whatsapp-float img
{
  width: 28px;
  height: 28px
}
.whatsapp-float:hover
{
  transform: scale(1.08)
}
.whatsapp-float:hover::after
{
  content: "Escríbenos";
  position: absolute;
  right: 70px;
  background: var(--ink);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap
}
@keyframes whatsapp-pulse
{
  0%, 100%
  {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(37, 169, 224, .35)
  }
  50%
  {
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(37, 169, 224, .5)
  }
}
@media(max-width:800px)
{
  .whatsapp-float
  {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px
  }
  .whatsapp-float img
  {
    width: 24px;
    height: 24px
  }
  .whatsapp-float:hover::after
  {
    display: none
  }
}

.faq
{
  background: #fff
}
.faq-list
{
  display: grid;
  gap: 18px;
  max-width: 800px;
  margin: 0 auto
}
.faq-item
{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 12px #16202b08
}
.faq-question
{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: none;
  border: 0;
  font-family: Manrope, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  cursor: pointer
}
.faq-question:hover
{
  color: var(--dark)
}
.faq-icon
{
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--dark);
  flex-shrink: 0
}
.faq-icon i
{
  transition: transform .3s
}
.faq-item.open .faq-icon i
{
  transform: rotate(180deg)
}
.faq-answer
{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .35s ease, opacity .3s ease
}
.faq-item.open .faq-answer
{
  max-height: 400px;
  opacity: 1
}
.faq-answer p
{
  padding: 0 24px 24px;
  color: var(--muted);
  margin: 0
}
@media(max-width:520px)
{
  .faq-question
  {
    font-size: 1rem;
    padding: 20px
  }
  .faq-answer p
  {
    padding: 0 20px 20px
  }
}

.calculator
{
  background: #f8fbfc
}
.calculator-card
{
  max-width: 680px;
  margin: 0 auto;
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 24px #16202b0c
}
.calc-tabs
{
  display: flex;
  gap: 12px;
  margin-bottom: 24px
}
.calc-tab
{
  flex: 1;
  cursor: pointer
}
.calc-tab input
{
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0
}
.calc-tab span
{
  display: block;
  text-align: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
  transition: .2s
}
.calc-tab input:checked + span
{
  background: var(--blue);
  border-color: var(--blue);
  color: #fff
}
.calc-field
{
  margin-bottom: 24px
}
.calc-field label
{
  display: block;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px
}
.calc-field input[type="text"]
{
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--ink);
  font-family: inherit
}
.calc-field input[type="range"]
{
  width: 100%;
  margin-top: 10px;
  accent-color: var(--blue)
}
.calc-marks
{
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: var(--muted);
  font-size: .85rem
}
.calc-result
{
  text-align: center;
  padding: 28px;
  background: var(--pale);
  border-radius: 14px;
  margin-bottom: 18px
}
.calc-result p
{
  color: var(--muted);
  margin: 0 0 8px
}
.calc-amount
{
  display: block;
  font-family: Manrope, sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--dark)
}
.calc-note
{
  color: var(--muted);
  font-size: .85rem;
  margin-bottom: 24px
}
.calc-cta
{
  display: flex;
  justify-content: center
}
@media(max-width:520px)
{
  .calculator-card
  {
    padding: 24px
  }
  .calc-amount
  {
    font-size: 1.4rem
  }
}
@media (hover: hover)
{
  .service-card:hover
  {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px #16202b1a;
    border-color: var(--blue)
  }
  .service-card:hover .service-icon
  {
    background: var(--blue);
    color: #fff
  }
  .service-card:hover .service-icon i
  {
    transform: scale(1.1)
  }
  .testimonial-card:hover
  {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px #16202b0c
  }
}

.form-progress
{
  text-align: center;
  margin-bottom: 28px
}
.form-step-indicators
{
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px
}
.step-dot
{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--pale);
  color: var(--muted);
  font-weight: 700;
  font-size: .85rem;
  transition: .2s
}
.step-dot.active
{
  background: var(--blue);
  color: #fff
}
.step-label
{
  color: var(--muted);
  font-size: .85rem
}
.form-steps
{
  position: relative;
  min-height: 440px;
  overflow: hidden
}
.form-step
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .35s ease-in-out, transform .35s ease-in-out;
  pointer-events: none
}
.form-step.active
{
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto
}
.step-title
{
  grid-column: 1/-1;
  font-size: 1.25rem;
  margin: 0 0 8px;
  color: var(--ink)
}
.form-error
{
  color: #c0392b;
  font-size: .78rem;
  font-weight: 600;
  margin-top: 4px
}
.form-actions
{
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px
}
.form-actions button
{
  flex: 1
}
.form-success
{
  display: none;
  text-align: center;
  padding: 40px 0
}
.form-success h3
{
  font-size: 1.5rem;
  color: var(--dark);
  margin: 0 0 10px
}
.form-success p
{
  color: var(--muted)
}
.form-message
{
  display: none
}
@media(max-width:520px)
{
  .form-step
  {
    grid-template-columns: 1fr
  }
  .form-steps
  {
    min-height: 560px
  }
}

@media(max-width:800px)
{
  .hero-badges
  {
    position: absolute;
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 0 14px;
    margin: 0
  }
  .hero-stat
  {
    position: static;
    flex-direction: row;
    align-items: center;
    max-width: 150px;
    padding: 12px 14px;
    gap: 10px;
    min-width: auto;
    font-size: 1rem;
    text-align: left
  }
  .hero-stat .stat-icon
  {
    width: 44px;
    height: 44px
  }
  .hero-stat .stat-icon i
  {
    font-size: 24px
  }
  .hero-stat strong
  {
    font-size: 1.2rem
  }
  .hero-stat span span
  {
    display: block;
    font-size: .78rem;
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
  }
}

.calc-rate
{
  display: block;
  color: var(--muted);
  font-size: .85rem;
  margin-top: 6px
}
.calc-total
{
  display: block;
  font-family: Manrope, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark);
  margin-top: 8px
}
