*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
 
span.resaltado-negro {
  color: black;
}
 
body {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}
 
a {
  text-decoration: none;
  color: inherit;
}
 
img,
svg {
  display: block;
  max-width: 100%;
}
 
ul {
  list-style: none;
}
 

:root {
  --orange: #FF5C00;
  --orange-dark: #e04e00;
  --orange-light: #FFF0E5;
  --orange-pale: #FFF5EE;
  --black: #111111;
  --dark: #1a1a1a;
  --gray: #555555;
  --gray-light: #aaaaaa;
  --bg-light: #FAFAFA;
  --border: #f0e8e0;
  --white: #ffffff;
 
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
 
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(255, 92, 0, 0.1);
 
  --section-pad: 80px 24px;
  --container-max: 1100px;
}
 

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
 
.section-pad {
  padding: var(--section-pad);
}
 
.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
 
.section-tag.light {
  color: rgba(255, 255, 255, 0.7);
}
 
.section-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 16px;
}
 
.section-title.light {
  color: var(--white);
}
 
.section-sub {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 48px;
}
 
.accent {
  color: var(--orange);
}
 
.dark {
  color: var(--black);
}
 

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
 
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}
 
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  display: inline-block;
}
 
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
}
 
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  display: inline-block;
}
 
.btn-outline-white:hover {
  background: var(--white);
  color: var(--orange);
  transform: translateY(-1px);
}
 
.btn-lg {
  padding: 15px 34px;
  font-size: 15px;
}
 
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
 
#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
 
.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
 
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 16px;
  color: var(--black);
  white-space: nowrap;
  flex-shrink: 0;
}
 
.logo-sun {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
 
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
 
.nav-links li a {
  font-size: 13px;
  font-weight: 600;
  color: #444;
  transition: color 0.2s;
}
 
.nav-links li a:hover {
  color: var(--orange);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
 
.hamburger span {
  display: block;
  height: 2.5px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
 
.hamburger.open span:nth-child(1) {
  transform: translateY(7.75px) rotate(45deg);
}
 
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
 
.hamburger.open span:nth-child(3) {
  transform: translateY(-7.75px) rotate(-45deg);
}
 

.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  z-index: 999;
}
 

.hero {
  background: linear-gradient(135deg, var(--orange-pale) 0%, var(--orange-light) 60%, #FFE8D6 100%);
  padding: 90px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-height: 520px;
  max-width: 100%;
  overflow: hidden;
}
 
.hero-text {
  max-width: 580px;
  flex: 1;
}
 
.hero h1 {
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 22px;
  letter-spacing: -1.5px;
}
 
.hero p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}
 
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
 
.hero-visual {
  flex-shrink: 0;
}
 

.lottie-crop {
  width: 310px;
  height: 310px;
  overflow: hidden;
  position: relative;
}

.lottie-crop dotlottie-wc {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 788px;
  height: 443px;
  transform: translate(calc(-50% + 28px), calc(-50% + 19px));
}
 
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
 
.stat {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
}
 
.stat:last-child {
  border-right: none;
}
 
.stat-num {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
}
 
.stat-label {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}
 

.historia {
  background: var(--bg-light);
}
 
.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
 
.historia-text p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 18px;
}
 
.historia-text strong {
  color: var(--orange);
}
 
.historia-visual {
  background: var(--orange-light);
  border-radius: var(--radius-lg);
  padding: 52px 36px;
  text-align: center;
}
 
.big-word {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  line-height: 1;
}
 
.historia-sub {
  font-size: 14px;
  color: var(--gray);
  margin-top: 14px;
}
 
.valores {
  background: var(--black);
}
 
.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
 
.valor-card {
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
 
.valor-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
 
.valor-icon {
  width: 50px;
  height: 50px;
  background: var(--orange);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
 
.valor-icon i {
  color: var(--white);
  font-size: 22px;
}
 
.valor-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
 
.valor-desc {
  font-size: 14px;
  color: #aaaaaa;
  line-height: 1.75;
}
 
.areas {
  background: var(--white);
}
 
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
 
.area-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
 
.area-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
 
.area-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
 
.area-icon-wrap {
  width: 46px;
  height: 46px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.area-icon-wrap i {
  color: var(--orange);
  font-size: 20px;
}
 
.area-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--orange);
}
 
.area-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
}
 
.area-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
 
.area-tag {
  background: var(--orange-light);
  color: #CC4700;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: var(--radius-pill);
}
 
.novedades {
  background: var(--white);
}

.novedades-slider {
  position: relative;
}

.novedades-viewport {
  overflow: hidden;
}

.novedades-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}

.novedad-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

.novedad-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-light);
}

.novedad-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transform: scale(1.01);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.novedad-slide:hover .novedad-img img {
  filter: grayscale(0);
  transform: scale(1.04);
}

.novedad-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.6px;
  line-height: 1.18;
  margin-bottom: 22px;
}

.novedad-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 26px;
  max-width: 440px;
}

.novedad-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--orange);
  border-top: 1px solid var(--border);
  padding-top: 18px;
  width: 100%;
}

.novedades-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
}

.novedad-next {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--black);
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}

.novedad-next:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: rotate(90deg);
}

.novedades-dots {
  display: flex;
  gap: 8px;
}

.novedades-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}

.novedades-dots button.active {
  background: var(--orange);
  width: 22px;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .novedad-slide {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .novedad-tag {
    margin-top: 4px;
  }

  .novedad-next {
    width: 44px;
    height: 44px;
  }

  .novedades-controls {
    margin-top: 26px;
  }
}

.mision {
  background: var(--orange);
}
 
.mision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
 
.mision-box {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: background 0.2s;
}
 
.mision-box:hover {
  background: rgba(255, 255, 255, 0.18);
}
 
.mision-box-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}
 
.mision-box-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}
 
.porque {
  background: var(--bg-light);
}
 
.porque-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
 
.porque-card {
  background: var(--white);
  border: 1px solid #eeeeee;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: box-shadow 0.2s, transform 0.2s;
}
 
.porque-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
 
.porque-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
 
.porque-list {
  list-style: none;
  padding: 0;
}
 
.porque-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #444;
  line-height: 1.65;
}
 
.resaltado-naranja {
  color: var(--orange);
  font-weight: 800;
}
 
.porque-list li::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  min-width: 7px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 6px;
}
 
.cta {
  background: var(--black);
}
 
.cta-inner {
  text-align: center;
}
 
.cta h2 {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.8px;
}
 
.cta p {
  font-size: 15px;
  color: #aaaaaa;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
 
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
 
footer {
  background: #0d0d0d;
  border-top: 1px solid #222;
  padding: 36px 24px;
}
 
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
 
.footer-logo {
  font-weight: 900;
  font-size: 16px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}
 
.footer-text {
  font-size: 12px;
  color: #666;
}
 
.footer-social {
  display: flex;
  gap: 16px;
}
 
.footer-social a {
  color: #666;
  font-size: 18px;
  transition: color 0.2s;
}
 
.footer-social a:hover {
  color: var(--orange);
}
 
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s 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;
}
 

@media (max-width: 900px) {
 
  :root {
    --section-pad: 60px 20px;
  }
 
  span.resaltado-negro {
    color: black;
  }
 
  .resaltado-naranja {
    color: var(--orange);
    font-weight: 800;
  }
 

  .hamburger {
    display: flex;
  }
 
  .nav-links:not(.open) {
    display: none;
  }
 

  .hero {
    flex-direction: column;
    padding: 60px 24px 52px;
    min-height: auto;
    text-align: center;
  }
 
  .hero-btns {
    justify-content: center;
  }
 
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
 
  .hero-visual {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .lottie-crop {
    width: min(260px, 60vw);
    height: min(260px, 60vw);
  }

  .lottie-crop dotlottie-wc {
    width: 640px;
    height: 360px;
    transform: translate(calc(-50% + 22px), calc(-50% + 15px));
  }
 

  .stats-bar {
    grid-template-columns: 1fr;
  }
 
  .stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 28px 24px;
  }
 
  .stat:last-child {
    border-bottom: none;
  }
 

  .historia-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
 
  .historia-visual {
    order: -1;
    padding: 36px 24px;
  }
 

  .valores-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
 

  .areas-grid {
    grid-template-columns: 1fr;
  }
 

  .mision-grid {
    grid-template-columns: 1fr;
  }
 

  .porque-grid {
    grid-template-columns: 1fr;
  }
 

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
 
@media (max-width: 600px) {
 
  :root {
    --section-pad: 48px 16px;
  }
 
  span.resaltado-negro {
    color: black;
  }
 
  .resaltado-naranja {
    color: var(--orange);
    font-weight: 800;
  }
 
  .container {
    padding: 0 16px;
  }
 
  .nav-inner {
    padding: 0 16px;
  }
 
  .hero {
    padding: 52px 16px 44px;
  }
 
  .hero h1 {
    font-size: 34px;
    letter-spacing: -1px;
  }
 
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
 
  .btn-lg {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
 
  .stat-num {
    font-size: 36px;
  }
 
  .section-title {
    font-size: 26px;
  }
 
  .big-word {
    font-size: 34px;
  }
 
  .valores-grid,
  .areas-grid,
  .mision-grid,
  .porque-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
 
  .cta h2 {
    font-size: 28px;
  }
 
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
 
  .nav-logo span {
    font-size: 14px;
  }
}