﻿
:root {
  --orange:       #F07030;
  --orange-light: #F8A878;
  --orange-pale:  #FEF0EE;
  --teal:         #2D6B7A;
  --teal-light:   #4A8A9A;
  --teal-pale:    #D4E8EC;
  --white:        #FFFFFF;
  --cream:        #FEF0EE;
  --dark:         #1A2A30;
  --gray:         #6B7B80;
  --font-sans:    'Montserrat', sans-serif;
  --font-serif:   'Playfair Display', serif;
  --font-script:  'Dancing Script', cursive;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.script        { font-family: var(--font-script); font-style: italic; color: var(--orange); }
.script-inline { font-family: var(--font-script); font-style: italic; color: var(--orange); }

.section-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-label--light { color: var(--orange-light); }

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
}
.btn--orange       { background: var(--orange);  color: var(--white); border-color: var(--orange); }
.btn--orange:hover { background: transparent;    color: var(--orange); }
.btn--white        { background: var(--white);   color: var(--orange); border-color: var(--white); }
.btn--white:hover  { background: transparent;    color: var(--white); }
.btn--teal         { background: var(--teal);    color: var(--white); border-color: var(--teal); }
.btn--teal:hover   { background: transparent;    color: var(--teal); }
.btn--full { width: 100%; text-align: center; }

.nav__logo,
.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.logo-amti {
  font-family: var(--font-script);
  font-size: 3.2rem;
  color: var(--white);
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: .42rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-top: 2px;
}

.announcement-bar {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 9px 16px;
  font-size: .72rem;
  letter-spacing: .08em;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--orange);
  box-shadow: 0 2px 20px rgba(240,112,48,.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
  height: 74px;
  gap: 24px;
}

.nav__links {
  display: flex;
  gap: 24px;
}
.nav__links a {
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: opacity .2s;
  white-space: nowrap;
}
.nav__links a:hover { opacity: .65; }

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

.nav__mobile {
  display: none;
  flex-direction: column;
  background: #C85C20;
  padding: 12px 24px 20px;
  gap: 2px;
}
.nav__mobile a {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.nav__mobile.open { display: flex; }

.hero {
  position: relative;
  overflow: hidden;
  height: 620px;
}

.hero__slider { position: relative; width: 100%; height: 100%; }

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.hero__slide.active { opacity: 1; pointer-events: all; }

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,42,48,.75) 0%,
    rgba(26,42,48,.5) 50%,
    rgba(26,42,48,.2) 100%
  );
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 10% 0 8%;
  z-index: 2;
}

.hero__eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 32px;
}
.hero__title em {
  font-style: italic;
  color: var(--orange-light);
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.hero__arrow:hover { background: var(--teal); }
.hero__arrow--prev { left: 24px; }
.hero__arrow--next { right: 24px; }

.hero__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: background .25s;
}
.hero__dot.active { background: var(--orange); }

.ticker {
  background: var(--orange);
  overflow: hidden;
  white-space: nowrap;
  padding: 15px 0;
}
.ticker--teal { background: var(--teal); }

.ticker__track {
  display: inline-flex;
  gap: 0;
  animation: scroll-left 35s linear infinite;
  will-change: transform;
}
.ticker__track--rev { animation: scroll-right 35s linear infinite; }

.ticker__track span {
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  flex-shrink: 0;
  padding-right: 52px;
}

@keyframes scroll-left  { from { transform: translateX(0); }         to { transform: translateX(calc(-100% / 3)); } }
@keyframes scroll-right { from { transform: translateX(calc(-100% / 3)); } to { transform: translateX(0); }         }

.quienes {
  position: relative;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  padding: 88px 80px 0;
  overflow: hidden;
}

.quienes__image {
  position: relative;
  flex: 0 0 440px;
  height: 560px;
}
.quienes__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}
.quienes__blob {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  background: var(--orange);
  border-radius: 60% 40% 50% 50% / 40% 50% 60% 50%;
  z-index: 0;
  opacity: .18;
}

.quienes__content {
  flex: 1;
  max-width: 520px;
}
.quienes__content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--dark);
}
.quienes__content p {
  font-size: .95rem;
  line-height: 1.85;
  color: var(--gray);
  margin-bottom: 16px;
}
.quienes__content p strong { color: var(--teal); }
.quienes__content .btn { margin-top: 16px; }

.quienes__scallop {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}
.quienes__scallop svg { width: 100%; display: block; }

.mision {
  position: relative;
  background: var(--orange);
  padding: 96px 80px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mision__blob {
  position: absolute;
  border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%;
}
.mision__blob--tl {
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,.15);
}
.mision__blob--tr {
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: var(--teal);
  opacity: .6;
  border-radius: 40% 60% 50% 50% / 60% 40% 50% 50%;
}

.mision__cards {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
}

.mision__card {
  position: relative;
  padding: 52px 48px;
  border-radius: 55% 45% 48% 52% / 52% 48% 55% 45%;
  flex: 0 0 420px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.mision__card--teal  { background: var(--teal); }
.mision__card--white { background: var(--white); }

.mision__label {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 24px;
}

.mision__card--teal .mision__label  { background: var(--white);  color: var(--teal); }
.mision__card--white .mision__label { background: var(--teal);   color: var(--white); }

.mision__card p {
  font-size: 1rem;
  line-height: 1.85;
  font-weight: 400;
}
.mision__card--teal  p { color: var(--orange); }
.mision__card--white p { color: var(--orange); }

.propuesta {
  background: var(--orange-pale);
  padding: 88px 80px;
  border-top: 4px solid var(--orange-pale);
}
.propuesta__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.propuesta__inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark);
}
.propuesta__inner p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--gray);
  max-width: 720px;
  margin: 0 auto;
}

.valores {
  position: relative;
  background: var(--cream);
  padding: 80px 80px 96px;
  overflow: hidden;
}

.valores__blob {
  position: absolute;
  border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%;
}
.valores__blob--tl {
  top: -40px;
  left: -50px;
  width: 240px;
  height: 220px;
  background: var(--orange);
  opacity: .9;
  border-radius: 40% 60% 50% 50% / 60% 40% 50% 50%;
}
.valores__blob--tr {
  top: -20px;
  right: -30px;
  width: 180px;
  height: 170px;
  background: var(--white);
  opacity: .7;
  border-radius: 55% 45% 40% 60% / 45% 55% 60% 40%;
}

.valores__header {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.valores__header h2 {
  line-height: 1.1;
}

.script-valores {
  font-family: var(--font-script);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--orange);
  font-style: italic;
  display: block;
  line-height: 1;
}
.valores__header h2 strong {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--teal);
  display: block;
}

.valores__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
  align-items: center;
}

.valor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.valor--note-above { flex-direction: column; }
.valor--note-below { flex-direction: column; }

.valor__circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.valor__circle span {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  text-align: center;
}

.valor__note {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.valor__note--below { margin-top: 8px; }
.valor__note--above { margin-bottom: 8px; }

.valor__note p {
  font-family: var(--font-sans);
  font-size: .75rem;
  color: var(--teal);
  text-align: center;
  max-width: 160px;
  line-height: 1.5;
}

.arrow-svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.arrow-svg--down {
  transform: scaleY(-1);
}

.portfolio {
  background: var(--white);
  padding: 88px 80px;
}

.portfolio__header {
  text-align: center;
  margin-bottom: 72px;
}
.portfolio__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--dark);
}

.proyecto {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
  padding-bottom: 96px;
  border-bottom: 1px solid var(--orange-pale);
}
.proyecto:last-child { margin-bottom: 0; border-bottom: none; padding-bottom: 0; }
.proyecto--reverse { grid-template-columns: 1.6fr 1fr; }

.proyecto__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.proyecto__num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--orange-pale);
  line-height: 1;
  display: block;
}

.proyecto__info h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.proyecto__info p {
  font-size: .9rem;
  line-height: 1.8;
  color: var(--gray);
}

.proyecto__tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  padding: 5px 12px;
  display: inline-block;
  width: fit-content;
}

.proyecto__galeria {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 480px;
}
.proyecto__galeria--two {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}

.proyecto__img {
  overflow: hidden;
  margin: 0;
  border-radius: 3px;
}
.proyecto__img--main {
  grid-row: 1 / 3;
}
.proyecto__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.proyecto__img:hover img { transform: scale(1.04); }

.servicios {
  background: var(--teal);
  padding: 88px 80px;
}

.servicios__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.servicios__texto h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 24px;
}
.servicios__texto h2 em { color: var(--orange-light); }
.servicios__texto p {
  font-size: .92rem;
  line-height: 1.85;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
}

.servicios__lista {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.servicio__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.servicio__item:last-child { border-bottom: none; padding-bottom: 0; }

.servicio__icon {
  color: var(--orange-light);
  font-size: .85rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.servicio__item h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.servicio__item p {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}

.cta-final {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-sans);
  padding: 72px 80px;
}

.cta-final__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-final__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.cta-final__pregunta {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1.5;
}

/* Formulario de contacto */
.cta-final__form-wrap {
  background: var(--white);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-form__label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--orange);
  margin-bottom: 4px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cta-form__field-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
}

.cta-form__input {
  background: var(--white);
  border: 1px solid rgba(230, 100, 20, 0.4);
  color: var(--orange);
  font-family: var(--font-sans);
  font-size: .85rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.cta-form__input::placeholder {
  color: rgba(230, 100, 20, 0.35);
}

.cta-form__input:focus {
  border-color: var(--orange);
}

.cta-form__textarea {
  resize: vertical;
  min-height: 100px;
}

.cta-form__btn {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 13px 28px;
  cursor: pointer;
  transition: background .2s, color .2s;
  align-self: flex-start;
}

.cta-form__btn:hover {
  background: transparent;
  color: var(--orange);
}


.footer__social h4 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.footer__social ul { display: flex; flex-direction: column; gap: 10px; }
.footer__social a {
  font-size: .85rem;
  opacity: .65;
  transition: opacity .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__social a { opacity: .65; }

.footer { background: var(--dark); color: var(--white); }

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 80px;
}

.footer__brand .footer__logo {
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer__brand .logo-amti { font-size: 2.4rem; }
.footer__brand p {
  font-size: .85rem;
  line-height: 1.75;
  opacity: .65;
  margin-bottom: 24px;
}

.footer__links h4 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: .85rem;
  opacity: .65;
  transition: opacity .2s;
}
.footer__links a:hover { opacity: 1; }

@media (max-width: 1100px) {
  .nav { padding: 0 32px; }
  .nav__links { gap: 16px; }
  .nav__links a { font-size: .66rem; }

  .quienes { padding: 72px 48px 0; gap: 48px; }
  .quienes__image { flex: 0 0 360px; height: 460px; }

  .mision { padding: 72px 48px; }
  .mision__card { flex: 0 0 340px; min-height: 340px; padding: 40px 36px; }

  .portfolio { padding: 72px 48px; }
  .proyecto { gap: 40px; margin-bottom: 72px; padding-bottom: 72px; }

  .servicios { padding: 72px 48px; }
  .servicios__inner { gap: 48px; }

  .valores { padding: 72px 48px 88px; }
  .valor__circle { width: 170px; height: 170px; }
  .valor__circle span { font-size: .95rem; }

  .footer__top { padding: 56px 48px; }
}

@media (max-width: 769px) {
  
  .nav { padding: 0 24px; height: 64px; }
  .nav__social { display: none; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  
  .hero { height: 500px; }
  .hero__content { padding: 0 6% 0 6%; }
  .hero__title { font-size: 2.2rem; }
  .hero__arrow { width: 40px; height: 40px; font-size: 1.4rem; }
  .hero__arrow--prev { left: 12px; }
  .hero__arrow--next { right: 12px; }

  
  .quienes {
    flex-direction: column;
    padding: 64px 32px 0;
    gap: 40px;
    text-align: center;
  }
  .quienes__image { flex: none; width: 100%; height: auto; }
  .quienes__image img { height: auto; object-fit: contain; object-position: center; }
  .quienes__blob { display: none; }
  .quienes__content { max-width: 100%; }
  .quienes__content .btn { margin: 16px auto 0; display: inline-block; }

  
  .mision { padding: 64px 32px; }
  .mision__cards {
    flex-direction: column;
    gap: 32px;
  }
  .mision__card {
    flex: none;
    width: 100%;
    max-width: 420px;
    min-height: auto;
    padding: 40px 36px;
    border-radius: 40px;
  }

  
  .propuesta { padding: 64px 32px; }

  
  .valores { padding: 64px 32px 80px; }
  .valores__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
  .valor__circle { width: 150px; height: 150px; }
  .valor__circle span { font-size: .85rem; }

  
  .portfolio { padding: 64px 32px; }
  .proyecto,
  .proyecto--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
    padding-bottom: 64px;
  }
  .proyecto--reverse .proyecto__galeria { order: -1; }
  .proyecto__galeria { height: 360px; }

  
  .servicios { padding: 64px 32px; }
  .servicios__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  
  .footer__top { grid-template-columns: 1fr; padding: 48px 32px; gap: 32px; }

  
  .cta-final { padding: 56px 32px; }
}

@media (max-width: 480px) {
  .announcement-bar { font-size: .62rem; padding: 7px 12px; }

  .nav { padding: 0 16px; height: 58px; }
  .logo-amti { font-size: 1.6rem; }
  .logo-sub { font-size: .48rem; }

  .hero { height: 420px; }
  .hero__title { font-size: 1.75rem; }
  .hero__eyebrow { font-size: .62rem; letter-spacing: .14em; }
  .btn { padding: 12px 24px; font-size: .7rem; }

  
  .quienes { padding: 48px 16px 0; gap: 32px; }
  .quienes__image { height: auto; }

  
  .mision { padding: 48px 16px; }
  .mision__card { padding: 32px 24px; border-radius: 32px; }
  .mision__card p { font-size: .9rem; }

  
  .propuesta { padding: 48px 16px; }

  
  .valores { padding: 48px 16px 64px; }
  .valores__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 8px;
  }
  .valor__circle { width: 120px; height: 120px; }
  .valor__circle span { font-size: .75rem; }
  .valor__note p { font-size: .65rem; max-width: 120px; }
  .arrow-svg { width: 24px; height: 24px; }
  .script-valores { font-size: 2.6rem; }
  .valores__header h2 strong { font-size: 1.5rem; }

  
  .portfolio { padding: 48px 16px; }
  .proyecto__galeria { height: 280px; gap: 6px; }
  .proyecto__num { font-size: 2.8rem; }
  .proyecto__info h3 { font-size: 1.3rem; }

  
  .servicios { padding: 48px 16px; }
  .servicios__texto h2 { font-size: 1.8rem; }

  
  .footer__top { grid-template-columns: 1fr; padding: 40px 16px; gap: 28px; }

  
  .cta-final { padding: 48px 16px; gap: 24px; }
  .cta-final__pregunta { font-size: 1rem; }
  .cta-final__social { flex-direction: column; gap: 12px; }
  .cta-final__sep { display: none; }
}

@media (max-width: 769px) {
  .cta-final { padding: 56px 32px; }
  .cta-final__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-final__pregunta { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .cta-final { padding: 48px 16px; }
  .cta-final__pregunta { font-size: 1rem; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__content { animation: fadeUp .9s ease both; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal); }
