/* LATO FONT */
@font-face {
  font-family: 'Lato';
  src: url('assets/fonts/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url('assets/fonts/Lato/Lato-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url('assets/fonts/Lato/Lato-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}


:root {
  --primary: #0b9fdb;
  --accent: #fdc001;
  --text: #474747;
  --dark: #212121;
  --light: #ffffff;
  --bg: #ffffff;
  --footer-bg: #0b9fdb;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  --radius: 22px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  /* font-family: 'Open Sans', sans-serif; */
  color: var(--text);
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* .site-nav a {
  color: var(--light);
  font-size: 0.96rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color .25s ease;
} */

.site-nav a.active {
  color: var(--accent); /* o var(--primary), el que quieras */
}

button,
input,
textarea {
  font: inherit;
}


#btnTop {
  position: fixed;
  bottom: 30px;
  right: 30px;

  width: 48px;
  height: 48px;
  border-radius: 50%;

  border: none;
  background: var(--primary);
  color: white;
  font-size: 20px;
  cursor: pointer;

  display: none; /* oculto al inicio */
  align-items: center;
  justify-content: center;

  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;

  transition: all 0.3s ease;
}

#btnTop:hover {
  transform: translateY(-3px);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.texto_style {
  text-align: justify;
}

.section-light {
  background: var(--bg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.nav-wrap {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  height: 58px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.site-nav a {
  font-size: 0.96rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav a:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px auto;
  background: var(--dark);
  border-radius: 6px;
}

.hero {
  padding: 28px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  align-items: stretch;
}

.hero-panel {
  background: var(--primary);
  color: var(--light);
  padding: 80px 60px;
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
  min-height: 510px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-panel h1 {
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  line-height: 1.06;
  margin: 0 0 32px;
  max-width: 520px;
  font-weight: 800;
}

.hero-media {
  position: relative;
  margin-left: -100px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 510px;
}

.hero-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 78px;
  height: 18px;
  background: var(--accent);
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  min-height: 58px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  transition: 0.25s ease;
  text-transform: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border: 4px solid rgba(255, 255, 255, .85);
  color: var(--light);
}

.btn-primary {
  background: var(--primary);
  color: var(--light);
}

.btn-white {
  background: var(--light);
  color: var(--primary);
}

.btn-yellow {
  background: var(--accent);
  color: var(--text);
  border: none;
}

.btn-small {
  min-width: 140px;
  min-height: 48px;
}

.about,
.benefits,
.portfolio,
.faq,
.contact {
  padding: 90px 0;
}

.about-grid,
.benefits-grid,
.faq-grid,
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-copy {
  position: relative;
  padding-top: 50px;
}

.shape-block {
  position: absolute;
  top: 0;
  left: -40px;
  width: 220px;
  height: 100px;
  background: var(--primary);
}

.section-kicker {
  margin: 0;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--dark) !important;
  font-weight: 800;
}

.about h2,
.benefits h2,
.portfolio h2,
.faq h2,
.contact h2,
.cta h2,
.partners-head h2 {
  margin: 8px 0 10px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.03;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 800;
}

.about-copy .section-kicker+h2 {
  margin-top: 0;
}

.about p {
  line-height: 1.9;
  margin: 0 0 24px;
  font-size: 1.02rem;
}

.about-strong {
  font-weight: 800;
  color: var(--dark);
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  min-height: 650px;
  object-fit: cover;
  filter: grayscale(100%);
}


.dot-pattern {
  position: absolute;
  right: -30px;
  bottom: 30px;
  width: 300px;
  height: 300px;
  background-image: url('assets/icons/YELLOWDOTS.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.dot-pattern.left {
  left: -20px;
  right: auto;
  top: -20px;
  bottom: auto;
  width: 230px;
  height: 250px;
}

/* .dot-pattern {
  position: absolute;
  right: -26px;
  bottom: 34px;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(circle, rgba(253,192,1,.95) 1.6px, transparent 1.6px);
  background-size: 16px 16px;
}
.dot-pattern.left {
  left: -10px;
  right: auto;
  top: -12px;
  bottom: auto;
  width: 260px;
  height: 150px;
  opacity: .9;
} */


.accent-line {
  width: 110px;
  height: 6px;
  background: var(--primary);
  border-radius: 10px;
  transform: skewX(-25deg) rotate(-2deg);
  margin-top: 10px;
  margin-bottom: 24px;
}

.accent-line.light {
  background: rgba(255, 255, 255, .85);
}


.altior {
  position: relative;
  color: var(--primary);
  display: inline-block;
}


.altior::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 5px;
  background: var(--primary);
  border-radius: 10px;
  transform: skewX(-25deg) rotate(-2deg);
}

.altiorHoy {
  position: relative;
  color: var(--light);
  display: inline-block;
}


.altiorHoy::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 5px;
  background: var(--light);
  border-radius: 10px;
  transform: skewX(-25deg) rotate(-2deg);
}


.benefit-feature {
  position: relative;
  min-height: 720px;
}

.benefit-bars {
  position: absolute;
  left: -30px;
  top: 90px;
  z-index: 2;
  display: flex;
  gap: 0;
}

.benefit-bars span:first-child {
  width: 54px;
  height: 420px;
  background: var(--primary);
}

.benefit-bars span:last-child {
  width: 16px;
  height: 420px;
  background: var(--accent);
}

.benefit-feature img {
  width: 80%;
  height: 85%;
  min-height: 650px;
  object-fit: cover;
}

.benefit-overlay {
  position: absolute;
  left: 70px;
  bottom: 52px;
  max-width: 620px;
  padding: 42px 40px;
  background: rgba(130, 130, 130, .42);
  color: var(--light);
}


.benefit-overlay h3,
.benefits-list-wrap h3,
.portfolio-card h3,
.footer-contact h3,
.footer-offices h4 {
  margin-top: 0;
  font-size: 1.9rem;
  text-transform: uppercase;
  font-weight: 800;
}

.benefits-list-wrap {
  margin-left: 60px;
  margin-top: 100px;
  margin-bottom: 10px;
}

.benefit-overlay p,
.benefits-list-wrap li,
.portfolio-card p,
.tools-copy p,
.cta-panel p,
.quote-banner p,
.footer-offices p,
.footer-contact p {
  line-height: 1.8;
}

.benefits-copy h2 {
  color: var(--dark);
  text-transform: none;
}

.benefits-copy h2 span,
.portfolio h2 span,
.faq h2 span {
  color: var(--primary);
}

.benefits-list-wrap ul {
  padding-left: 24px;
  margin: 16px 0 24px;
}



.benefits-list-wrap ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.benefits-list-wrap li {
  list-style: none !important;
  position: relative;
  margin-bottom: 14px;
  padding-left: 25px;
}

.benefits-list-wrap li::before {
  content: "" !important;
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border: 2px solid #000;
  border-radius: 50%;
  background: #fff;
}

.tools {
  position: relative;
  padding: 0 0 30px;
  background: var(--bg);
}

.tools-bg {
  position: absolute;
  inset: 0 0 100px 0;
}

.tools-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .38);
}

.tools-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tools-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 40px;
  padding-top: 90px;
  align-items: end;
}

.tools-card {
  background: rgba(11, 159, 219, .83);
  color: var(--light);
  padding: 46px 36px;
  max-width: 520px;
}

.tools-card h2 {
  color: var(--light);
  text-transform: none;
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  line-height: 1.2;
  margin-top: 0%;
  margin-bottom: 0%;
}

.tools-copy {
  background: rgba(71, 71, 71, .28);
  color: var(--light);
  padding: 40px 44px;
  max-width: 560px;
  justify-self: end;
}

.tools-icon {
  width: 62px;
  margin-bottom: 22px;
}

.powered-by {
  margin-bottom: 10px;
}

.undo-logo {
  width: 150px;
}

.social-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding-top: 26px;
}

.social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-icons img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

/* .social-icons.light img {
  filter: brightness(0) invert(1);
} */

.portfolio h2,
.portfolio .cards,
.portfolio .container {
  position: relative;
  z-index: 2;
}

.portfolio-head {
  position: relative;
  padding-top: 10px;
  margin-bottom: 48px;
}

.portfolio h2 {
  color: var(--dark);
  text-transform: none;
  text-align: center;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.portfolio-card {
  text-align: center;
  z-index: 0
}

.portfolio-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.portfolio-card h3 {
  margin: 0;
  padding: 18px 14px;
  background: var(--primary);
  color: var(--light);
  text-transform: none;
  font-size: 1.6rem;
}

.partners {
  background:#0b9fdb;
  padding-bottom: 80px;
}

.partners-top {
  position: relative;
  min-height: 400px;
}

.partners-top img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: saturate(.8);
}

.partners-top::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(50, 90, 160, .28);
}

.partners-head {
  position: absolute;
  inset: 0;
  z-index: 2;
  place-items: center;
  text-align: center;
  color: var(--light);
}

.partners-head h2,
.partners-head p {
  color: var(--light);
  margin: 6px 0;
}

.mini-mark {
  width: 50px !important;
  height:50px !important;
  margin-top: 30px;
}

.partners-logos-wrap {
  margin-top: -70px;
  position: relative;
  z-index: 3;
}

.partners-logos {
  background: rgba(255, 255, 255, 0.70);
  box-shadow: var(--shadow);
  padding: 42px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 28px;
}

.partners-logos img {
  max-height: 62px;
  width: auto;
  margin: 0 auto;
}

.cta {
  padding: 0 0 90px;
  margin-top: 20px;
}

.cta-grid {
  gap: 0;
  align-items: stretch;
  background: #eee7d4;
}

.cta-image img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}

.cta-panel {
  background: rgba(11, 159, 219, .86);
  color: var(--light);
  padding: 70px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-panel h2,
.contact h2 {
  color: var(--light);
  font-size: 2.5rem;
}

.cta-panel p {
  font-size: 1.2rem;
}

.quote-banner {
  background: var(--primary);
  color: var(--light);
  padding: 42px 0;
  text-align: center;
}

.quote-banner p {
  font-size: clamp(1.2rem, 3vw, 2rem);
  max-width: 65%;
  margin: 0 auto;
  font-weight: 400;
}

.faq-grid {
  align-items: flex-start;
}

.faq-image img {
  width: 100%;
  height: auto;
}

.faq-copy {
  position: relative;
}

.faq-copy::before {
  content: '';
  position: absolute;
  right: -30px;
  width: 300px;
  height: 300px;
  /* background-image: radial-gradient(circle, rgba(253, 192, 1, .68) 1.6px, transparent 1.6px);
  background-size: 18px 18px; */
  background-image: url('assets/icons/YELLOWDOTS.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: .85;
  pointer-events: none;
}

.faq-copy::before {
  top: 0;
}


.faq h2 {
  color: var(--dark);
  text-transform: none;
}

.faq-list {
  position: relative;
  z-index: 2;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  padding: 10px 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 12px 0;
  color: var(--primary);
  font-size: 1.3rem;
  line-height: 1.5;
  cursor: pointer;
  text-decoration: underline;
}

.faq-answer {
  display: none;
  padding: 0 0 16px;
}

.faq-item.active .faq-answer {
  display: block;
}

.contact {
  position: relative;
  overflow: hidden;
}

.contact-wrap {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-shape {
  position: absolute;
  left: -70px;
  bottom: -20px;
  width: 290px;
}

.contact-card {
  width: min(100%, 640px);
  text-align: center;
}

.contact h2 {
  color: var(--dark);
  text-transform: none;
}

.contact-card>p {
  font-size: 1.4rem;
  margin: 0 0 34px;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: 2.5px solid rgba(253, 192, 1, .75);
  border-radius: 28px;
  padding: 19px 26px;
  font-size: 1.4rem;
  color: #9c7f08;
  outline: none;
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #c9a10d;
}

.contact-form .btn-yellow {
  width: 240px;
  margin: 4px auto 0;
  font-size: 1.5rem;
}

.form-message {
  margin-top: 18px;
  font-weight: 700;
}

.whatsapp-float {
  position: absolute;
  right: 0;
  bottom: 44px;
}

.whatsapp-float img {
  width: 66px;
}

.site-footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, .95);
  padding: 60px 0 30px;
}

.footer-top,
.footer-offices,
.footer-bottom {
  display: grid;
  gap: 30px;
}

.footer-top {
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer-brand img {
  height: 84px;
  width: auto;
  margin: 0 auto;
}

.footer-social {
  justify-self: end;
  text-align: right;
}

.footer-social p {
  margin-top: 0;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  padding: 8px;
}

.footer-contact-item p {
  margin: 0;
}

.footer-offices {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.footer-offices strong {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-bottom {
  grid-template-columns: auto 1fr;
  align-items: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.footer-bottom div {
  justify-self: end;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

/* OFICINAS alineadas */
.footer-offices {
  display: grid;
  grid-template-columns: 180px 1fr 1fr 1fr; /* 👈 título + 3 columnas */
  gap: 30px;
  align-items: start;
}

.footer-offices h4 {
  margin: 0;
  padding-top: 6px;
}

.office-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.office-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.office-row img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  margin-top: 3px;
}

.office-row p {
  margin: 0;
}

.footer-offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.footer-offices h4 {
  grid-column: 1 / -1;
  margin: 0 0 10px 0;
  padding-top: 0;
}

.office-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.office-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.office-row img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  margin-top: 3px;
  flex-shrink: 0;
}

.office-row p {
  margin: 0;
}

@media (max-width: 1100px) {

  .hero-grid,
  .about-grid,
  .benefits-grid,
  .faq-grid,
  .cta-grid,
  .tools-grid,
  .footer-top,
  .footer-offices,
  .portfolio-grid,
  .partners-logos {
    grid-template-columns: 1fr 1fr;
  }

  .hero-media {
    margin-left: 0;
  }

  .hero-panel {
    clip-path: none;
    min-height: auto;
  }

  .hero-media img {
    min-height: 420px;
  }

  .partners-logos {
    gap: 24px;
  }
}

@media (max-width: 840px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 18px 20px 24px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .08);
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .hero-grid,
  .about-grid,
  .benefits-grid,
  .faq-grid,
  .cta-grid,
  .tools-grid,
  .footer-top,
  .footer-offices,
  .portfolio-grid,
  .partners-logos,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .cta-panel,
  .tools-card,
  .tools-copy,
  .benefit-overlay {
    padding: 34px 24px;
  }

  .hero-panel h1 {
    max-width: none;
  }

  .shape-block {
    left: 0;
    width: 140px;
    height: 90px;
  }

  .about-media img,
  .benefit-feature img,
  .cta-image img {
    min-height: 420px;
  }

  .benefit-bars {
    left: 0;
    top: 20px;
  }

  .benefit-overlay {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: none;
  }

  .tools-copy {
    justify-self: stretch;
  }

  .social-row {
    justify-content: flex-start;
  }

  .partners-logos-wrap {
    margin-top: 20px;
  }

  .contact-wrap {
    padding: 40px 0 90px;
  }

  .brand-shape {
    width: 170px;
    left: -40px;
  }

  .whatsapp-float {
    right: 10px;
    bottom: 20px;
  }

  .footer-social {
    justify-self: start;
    text-align: left;
  }

  .footer-bottom div {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .nav-wrap {
    min-height: 76px;
  }

  .brand img {
    height: 46px;
  }

  .hero,
  .about,
  .benefits,
  .portfolio,
  .faq,
  .contact {
    padding: 56px 0;
  }

  .faq-question,
  .contact-card>p,
  .contact-form input,
  .contact-form textarea {
    font-size: 1.05rem;
  }

  .portfolio-card img {
    height: 240px;
  }

  .contact-form .btn-yellow {
    width: 100%;
  }
}