:root {
  --peru-red: #df0919;
  --peru-dark: #000000;
  --ink: #111827;
  --muted: #6b7280;
  --light: #f8fafc;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
  --radius-xl: 28px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #0f172a;
  background: var(--light);
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  width: 100%;
}

::selection {
  background: var(--peru-red);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  background: none;
}

.container {
  width: min(1400px, 100%);
  margin: 0 auto;
  padding: 0 12px;
}

.icon,
.lucide {
  width: 20px;
  height: 20px;
}

.lucide {
  display: inline-flex;
  stroke-width: 2.2px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.3s ease;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.9) 0%, rgba(248, 250, 252, 0) 100%);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 10px;
  color: var(--peru-red);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #4b5563;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--peru-red);
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--peru-red);
}

.nav-links a:hover::after {
  width: 100%;
  left: 0;
}

.nav-toggle {
  display: none;
  background: #fff;
  border-radius: 999px;
  padding: 8px;
  border: 1px solid #e5e7eb;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle.active .icon-menu {
  display: none;
}

.nav-toggle.active .icon-close {
  display: block;
}

.nav-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.nav-overlay.open {
  max-height: 100vh;
}

.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 32px 20px 40px;
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn-primary {
  background: var(--peru-red);
  color: #fff;
  box-shadow: 0 18px 40px rgba(223, 9, 25, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-primary:hover {
  background: var(--peru-dark);
  transform: translateY(-2px);
}

.btn-strong {
  padding: 16px 28px;
  border-radius: 18px;
}

.btn-outline {
  border: 2px solid #111827;
  color: #111827;
  padding: 14px 24px;
  border-radius: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn-outline:hover {
  background: #111827;
  color: #fff;
}

.btn-dark {
  background: #111827;
  color: #fff;
}

.btn-dark:hover {
  background: var(--peru-red);
}

.btn-light {
  background: #fff;
  color: var(--peru-red);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
}

.btn-wide {
  width: 100%;
  justify-content: center;
  font-size: 18px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(160deg, #f8fafc 0%, #ffffff 60%, #f8fafc 100%);
}

.hero-visual {
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.hero-glow-top {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 175, 29, 0.4), rgba(223, 9, 25, 0.05));
  top: -12%;
  right: -5%;
  animation: pulse 6s infinite;
}

.hero-glow-bottom {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(223, 9, 25, 0.15), transparent 70%);
  bottom: -12%;
  left: -5%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/graphy.png");
  opacity: 0.05;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 40px;
}

.hero-text h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.9;
  color: #0f172a;
  text-transform: uppercase;
}

.hero-highlight {
  color: transparent;
  background-image: linear-gradient(90deg, var(--peru-red), #000000);
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
}

.hero-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 6px;
  background: #f5af1d;
  opacity: 0.6;
  border-radius: 999px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--peru-red);
  margin-bottom: 18px;
}

.hero-line {
  width: 48px;
  height: 1px;
  background: var(--peru-red);
}

.hero-quote {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 20px;
  color: var(--muted);
  margin: 20px 0 24px;
  border-left: 4px solid #f5af1d;
  padding-left: 20px;
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-support {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-weight: 600;
}

.hero-avatars {
  display: flex;
}

.hero-avatars span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-size: cover;
  background-position: center;
  margin-left: -8px;
  filter: grayscale(1);
  transition: filter 0.3s ease;
}

.hero-avatars span:hover {
  filter: grayscale(0);
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image {
  position: relative;
  z-index: 2;
  height: min(620px, 70vh);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(15, 23, 42, 0.2));
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.hero-stat {
  position: absolute;
  top: 22%;
  right: -1010px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  padding: 14px;
  border-radius: 18px;
  max-width: 180px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
  animation: float-badge 4s ease-in-out infinite;
}

@keyframes float-badge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.hero-stat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111827;
  margin-bottom: 6px;
}

.hero-stat-title .icon,
.hero-stat-title .lucide {
  color: #f5af1d;
}

.hero-stat p {
  font-size: 13px;
  font-weight: 700;
}

.hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(245, 175, 29, 0.2), transparent 70%);
  filter: blur(60px);
  z-index: 1;
}

.quick-links {
  background: #fff;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.quick-links::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(223, 9, 25, 0.08);
  filter: blur(30px);
}

.quick-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.quick-inner h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 32px;
}

.quick-inner p {
  color: var(--muted);
  font-size: 18px;
  margin-top: 10px;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  border: 2px solid #111827;
  color: #111827;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.pill:hover {
  background: #111827;
  color: #fff;
}

.about {
  padding: 96px 0;
  background: radial-gradient(circle at 10% 10%, rgba(223, 9, 25, 0.08), transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(15, 23, 42, 0.06), transparent 60%),
    #fff;
  position: relative;
  overflow: hidden;
}

.about::before,
.about::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
  pointer-events: none;
  animation: about-float 12s ease-in-out infinite;
}

.about::before {
  background: rgba(223, 9, 25, 0.25);
  top: -40px;
  left: -60px;
}

.about::after {
  background: rgba(15, 23, 42, 0.2);
  bottom: -50px;
  right: -40px;
  animation-delay: 2.5s;
}

@keyframes about-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-col {
  display: grid;
  gap: 16px;
}

.about-col:first-child {
  margin-top: 40px;
}

.about-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.12));
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.image-card:hover img {
  transform: scale(1.08);
}

.image-card:hover::after {
  opacity: 0.2;
}

.quote-card {
  background: rgba(223, 9, 25, 0.1);
  color: var(--peru-red);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 22px;
  padding: 20px;
  border: 1px solid rgba(223, 9, 25, 0.18);
}

.dark-card {
  background: linear-gradient(140deg, #111827, #0f172a);
  color: #fff;
  padding: 20px;
  display: grid;
  gap: 20px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-card .lucide {
  width: 34px;
  height: 34px;
  color: #f5af1d;
}

.about-text h4 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--peru-red);
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 10px;
}

.about-text h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 18px;
}

.about-text h2 span {
  color: transparent;
  background-image: linear-gradient(90deg, var(--peru-red), #000000);
  -webkit-background-clip: text;
  background-clip: text;
}

.about-text p {
  color: #4b5563;
  font-size: 17px;
  margin-bottom: 16px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.stat {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 14px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(223, 9, 25, 0.25);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.stat-icon {
  margin-bottom: 6px;
  color: var(--peru-red);
}

.stat-icon .lucide {
  width: 24px;
  height: 24px;
}

.stat h3 {
  font-size: 22px;
  font-weight: 800;
}

.stat p {
  font-size: 12px;
  color: var(--muted);
}

.proposals {
  position: relative;
  padding: 96px 0;
  background: #fff;
  overflow-x: hidden;
}

.proposal-blob {
  position: absolute;
  top: 160px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: #f1f5f9;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 48px;
}

.section-head h4 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--peru-red);
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 8px;
}

.section-head h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 42px;
  color: #111827;
  text-transform: uppercase;
}

.section-head h2 span {
  color: #000000;
}

.link-arrow {
  font-weight: 800;
  border-bottom: 2px solid #111827;
  padding-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.link-arrow:hover {
  color: var(--peru-red);
  border-color: var(--peru-red);
}

.proposal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.proposal-card {
  position: relative;
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid #f1f5f9;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.proposal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(223, 9, 25, 0.18);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.proposal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.12);
}

.proposal-card:hover::after {
  opacity: 1;
}

.proposal-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 0 26px 0 100px;
  opacity: 0.12;
}

.proposal-accent.blue {
  background: linear-gradient(135deg, #df0919, #000000);
}

.proposal-accent.green {
  background: linear-gradient(135deg, #f5af1d, #df0919);
}

.proposal-accent.purple {
  background: linear-gradient(135deg, #df0919, #f5af1d);
}

.proposal-accent.orange {
  background: linear-gradient(135deg, #f5af1d, #000000);
}

.proposal-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.proposal-icon .lucide {
  width: 28px;
  height: 28px;
}

.proposal-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 12px;
}

.proposal-card p {
  color: var(--muted);
  font-size: 14px;
}

.news {
  padding: 96px 0;
  background: #f8fafc;
}

.news-detail {
  padding: 140px 0 80px;
  background: #fff;
}

.news-detail .container {
  max-width: 860px;
}

.news-detail h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 48px);
  color: #111827;
  margin-bottom: 12px;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 24px;
}

.news-hero {
  width: 100%;
  height: 360px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  margin-bottom: 32px;
}

.news-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-body {
  color: #4b5563;
  font-size: 17px;
  display: grid;
  gap: 18px;
}

.news-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #111827;
  margin-top: 28px;
}

.news-back:hover {
  color: var(--peru-red);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.news-card {
  background: #fff;
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid #f1f5f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.news-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  margin: 10px 0;
}

.news-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.news-card button {
  color: var(--peru-red);
  font-weight: 800;
  background: none;
}

.news-link {
  color: var(--peru-red);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
}

.news-index {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #9ca3af;
  font-weight: 800;
}

.link-underline {
  font-weight: 800;
  border-bottom: 2px solid #111827;
  padding-bottom: 6px;
}

.link-underline:hover {
  color: var(--peru-red);
  border-color: var(--peru-red);
}

.events {
  padding: 96px 0;
  background: #fff;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.event-card {
  border-radius: 26px;
  padding: 26px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.event-date {
  font-size: 12px;
  font-weight: 800;
  color: var(--peru-red);
}

.event-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  margin: 10px 0;
}

.event-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.gallery {
  padding: 96px 0;
  background: #f8fafc;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-item {
  height: 240px;
  border-radius: 26px;
  background-size: cover;
  background-position: center;
  border: 1px solid #f1f5f9;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.testimonials {
  padding: 96px 0;
  background: #fff;
}

.testimonials h2 {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 32px;
  margin-bottom: 20px;
}

.testimonials h2 span {
  color: var(--peru-red);
}

.marquee {
  position: relative;
  overflow: hidden;
  padding: 20px 0 10px;
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.testimonial-card {
  width: 320px;
  background: #f8fafc;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  padding: 20px;
  flex-shrink: 0;
}

.stars {
  color: #f5af1d;
  margin-bottom: 10px;
}

.testimonial-card p {
  color: var(--muted);
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-author span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #9ca3af;
}

.testimonial-author strong {
  display: block;
  font-size: 13px;
}

.testimonial-author small {
  color: var(--muted);
  font-size: 11px;
}

.marquee-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
}

.marquee-mask.left {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.marquee-mask.right {
  right: 0;
  background: linear-gradient(-90deg, #fff, transparent);
}

.cta {
  padding: 120px 0;
  background: var(--peru-red);
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.1;
}

.cta::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  top: -80px;
  left: -80px;
  filter: blur(40px);
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.cta-shape-left {
  width: 360px;
  height: 360px;
  left: -120px;
  top: -120px;
  background: rgba(255, 255, 255, 0.18);
}

.cta-shape-right {
  width: 300px;
  height: 300px;
  right: -80px;
  bottom: -80px;
  background: rgba(0, 0, 0, 0.12);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  text-transform: uppercase;
}

.cta h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  text-transform: none;
}

.footer {
  background: linear-gradient(180deg, #000000 0%, #120203 55%, #000000 100%);
  color: #f8fafc;
  padding: 80px 0 40px;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  margin-top: -32px;
  box-shadow: 0 -30px 80px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 0%, rgba(245, 175, 29, 0.22), transparent 48%);
  opacity: 0.55;
}

.footer::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 9, 25, 0.3), transparent 62%);
  filter: blur(40px);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

.brand-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.brand-inline img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
  box-shadow: 0 10px 30px rgba(223, 9, 25, 0.15);
}

.brand-inline h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
}

.brand-inline span {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #f5af1d;
}

.footer p,
.footer a {
  color: #e2e8f0;
  font-size: 13px;
}

.footer-links,
.footer-contact,
.footer-form {
  display: grid;
  gap: 12px;
}

.footer-links h4,
.footer-contact h4,
.footer-form h4 {
  font-size: 16px;
  color: #ffffff;
}

.footer-links a:hover,
.footer-contact p:hover {
  color: var(--peru-red);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(245, 175, 29, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #f5af1d;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.footer-social .lucide {
  width: 16px;
  height: 16px;
}

.footer-social a:hover {
  background: var(--peru-red);
  color: #fff;
}

.footer-contact .lucide {
  width: 14px;
  height: 14px;
  margin-right: 8px;
  color: var(--peru-red);
}

.footer-contact p {
  display: flex;
  align-items: center;
}

.footer-form form {
  display: grid;
  gap: 10px;
}

.footer-form input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(245, 175, 29, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
}

.footer-form button {
  background: var(--peru-red);
  color: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 11px;
  color: rgba(226, 232, 240, 0.7);
  border-top: 1px solid rgba(245, 175, 29, 0.2);
  padding-top: 20px;
  position: relative;
  z-index: 1;
}

.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 120;
}

.whatsapp,
.chat-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
}

.whatsapp {
  background: #25d366;
}

.chat-toggle {
  background: var(--peru-red);
  position: relative;
}

.chat-toggle .icon-close {
  display: none;
}

.chat-toggle.active .icon-chat {
  display: none;
}

.chat-toggle.active .icon-close {
  display: block;
}

.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 100px;
  width: min(360px, 90vw);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
  border: 1px solid #f1f5f9;
  display: none;
  flex-direction: column;
  z-index: 110;
  overflow: hidden;
}

.chat-widget.open {
  display: flex;
}

.chat-header {
  background: var(--peru-red);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
}

.chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-avatar img {
  width: 30px;
  height: 30px;
}

.chat-header h3 {
  font-size: 14px;
}

.chat-header p {
  font-size: 11px;
  opacity: 0.7;
}

.chat-messages {
  padding: 16px;
  background: #f8fafc;
  max-height: 300px;
  overflow-y: auto;
  display: grid;
  gap: 12px;
}

.chat-message {
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 13px;
  max-width: 80%;
}

.chat-message.bot {
  background: #fff;
  color: #111827;
  border-top-left-radius: 4px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

.chat-message.user {
  background: var(--peru-red);
  color: #fff;
  border-top-right-radius: 4px;
  margin-left: auto;
}

.chat-input {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
}

.chat-input input {
  flex: 1;
  border-radius: 999px;
  border: none;
  background: #f1f5f9;
  padding: 10px 14px;
  font-size: 13px;
}

.chat-input input:focus {
  outline: 2px solid rgba(223, 9, 25, 0.3);
}

.chat-input button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--peru-red);
  color: #fff;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image {
    height: 460px;
  }

  .hero-text h1 {
    font-size: clamp(36px, 9vw, 64px);
  }

  .section-head h2 {
    font-size: 34px;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .about-col:first-child {
    margin-top: 0;
  }

  .proposal-grid,
  .news-grid,
  .events-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta h2 {
    font-size: 38px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .proposal-grid,
  .news-grid,
  .events-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .quick-inner {
    text-align: center;
  }

  .hero-stat {
    position: static;
    margin-top: 16px;
  }

  .nav-overlay-inner {
    font-size: 22px;
  }

  .proposal-grid,
  .news-grid,
  .events-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    width: 280px;
  }

  .cta h2 {
    font-size: 32px;
  }

  .about,
  .proposals,
  .news,
  .events,
  .gallery,
  .testimonials,
  .cta {
    padding: 72px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-actions {
    right: 16px;
    bottom: 16px;
  }

  .chat-widget {
    right: 16px;
    bottom: 90px;
  }

  .footer {
    border-radius: 24px 24px 0 0;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 10px;
  }

  .brand-title {
    font-size: 18px;
  }

  .brand-subtitle {
    letter-spacing: 0.2em;
  }

  .hero-quote {
    font-size: 18px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-image {
    height: auto;
  }

  .hero-image img {
    width: 100%;
    height: auto;
  }

  .hero-visual {
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }

  .hero-visual {
    margin-top: 12px;
  }

  .hero-highlight::after {
    bottom: -6px;
    height: 4px;
  }

  .news-hero {
    height: 240px;
  }

  .news-detail .container {
    max-width: 100%;
  }

  .footer {
    padding: 64px 0 32px;
  }
}
    z-index: 0;
  }

  .cta-shape-left {
    width: 360px;
    height: 360px;
    left: -120px;
    top: -120px;
    background: rgba(255, 255, 255, 0.18);
  }

  .cta-shape-right {
    width: 300px;
    height: 300px;
    right: -80px;
    bottom: -80px;
    background: rgba(0, 0, 0, 0.12);
  }
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 10px;
  color: var(--peru-red);
  .footer-social .lucide {
    width: 16px;
    height: 16px;
  }
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #4b5563;
}
  .footer-contact .lucide {
    width: 14px;
    height: 14px;
    margin-right: 8px;
    color: var(--peru-red);
  }

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--peru-red);
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--peru-red);
}

.nav-links a:hover::after {
  width: 100%;
  left: 0;
}

.nav-toggle {
  display: none;
  background: #fff;
  border-radius: 999px;
  padding: 8px;
  border: 1px solid #e5e7eb;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle.active .icon-menu {
  display: none;
}

.nav-toggle.active .icon-close {
  display: block;
}

.nav-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.nav-overlay.open {
  max-height: 100vh;
}

.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 32px 20px 40px;
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn-primary {
  background: var(--peru-red);
  color: #fff;
  box-shadow: 0 18px 40px rgba(223, 9, 25, 0.35);
}

.btn-primary:hover {
  background: var(--peru-dark);
  transform: translateY(-2px);
}

.btn-strong {
  padding: 16px 28px;
  border-radius: 18px;
}

.btn-outline {
  border: 2px solid #111827;
  color: #111827;
  padding: 14px 24px;
  border-radius: 18px;
}

.btn-outline:hover {
  background: #111827;
  color: #fff;
}

.btn-dark {
  background: #111827;
  color: #fff;
}

.btn-dark:hover {
  background: var(--peru-red);
}

.btn-light {
  background: #fff;
  color: var(--peru-red);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
}

.btn-wide {
  width: 100%;
  justify-content: center;
  font-size: 18px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: #f8fafc;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.hero-glow-top {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 175, 29, 0.4), rgba(223, 9, 25, 0.05));
  top: -12%;
  right: -5%;
  animation: pulse 6s infinite;
}

.hero-glow-bottom {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(223, 9, 25, 0.15), transparent 70%);
  bottom: -12%;
  left: -5%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/graphy.png");
  opacity: 0.05;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 40px;
}

.hero-text h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.9;
  color: #0f172a;
}

.hero-highlight {
  color: transparent;
  background-image: linear-gradient(90deg, var(--peru-red), #000000);
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
}

.hero-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 6px;
  background: #f5af1d;
  opacity: 0.6;
  border-radius: 999px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--peru-red);
  margin-bottom: 18px;
}

.hero-line {
  width: 48px;
  height: 1px;
  background: var(--peru-red);
}

.hero-quote {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 20px;
  color: var(--muted);
  margin: 20px 0 24px;
  border-left: 4px solid #f5af1d;
  padding-left: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-support {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-weight: 600;
}

.hero-avatars {
  display: flex;
}

.hero-avatars span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-size: cover;
  background-position: center;
  margin-left: -8px;
  filter: grayscale(1);
  transition: filter 0.3s ease;
}

.hero-avatars span:hover {
  filter: grayscale(0);
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image {
  position: relative;
  z-index: 2;
  height: min(620px, 70vh);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(15, 23, 42, 0.2));
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.hero-stat {
  position: absolute;
  top: 22%;
  right: -10px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  padding: 14px;
  border-radius: 18px;
  max-width: 180px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.hero-stat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111827;
  margin-bottom: 6px;
}

.hero-stat-title .icon {
  color: #f5af1d;
}

.hero-stat p {
  font-size: 13px;
  font-weight: 700;
}

.hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(245, 175, 29, 0.2), transparent 70%);
  filter: blur(60px);
  z-index: 1;
}

.quick-links {
  background: #fff;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  padding: 60px 0;
}

.quick-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.quick-inner h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 32px;
}

.quick-inner p {
  color: var(--muted);
  font-size: 18px;
  margin-top: 10px;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  border: 2px solid #111827;
  color: #111827;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.pill:hover {
  background: #111827;
  color: #fff;
}

.about {
  padding: 96px 0;
  background: radial-gradient(circle at 10% 10%, rgba(223, 9, 25, 0.08), transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(15, 23, 42, 0.06), transparent 60%),
    #fff;
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-col {
  display: grid;
  gap: 16px;
}

.about-col:first-child {
  margin-top: 40px;
}

.about-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.12));
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.image-card:hover img {
  transform: scale(1.08);
}

.image-card:hover::after {
  opacity: 0.2;
}

.quote-card {
  background: rgba(223, 9, 25, 0.1);
  color: var(--peru-red);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 22px;
  padding: 20px;
  border: 1px solid rgba(223, 9, 25, 0.18);
}

.dark-card {
  background: linear-gradient(140deg, #111827, #0f172a);
  color: #fff;
  padding: 20px;
  display: grid;
  gap: 20px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-text h4 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--peru-red);
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 10px;
}

.about-text h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 18px;
}

.about-text h2 span {
  color: transparent;
  background-image: linear-gradient(90deg, var(--peru-red), #000000);
  -webkit-background-clip: text;
  background-clip: text;
}

.about-text p {
  color: #4b5563;
  font-size: 17px;
  margin-bottom: 16px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.stat {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 14px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(223, 9, 25, 0.25);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.stat-icon {
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--peru-red);
}

.stat h3 {
  font-size: 22px;
  font-weight: 800;
}

.stat p {
  font-size: 12px;
  color: var(--muted);
}

.proposals {
  position: relative;
  padding: 96px 0;
  background: #fff;
}

.proposal-blob {
  position: absolute;
  top: 160px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: #f1f5f9;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 48px;
}

.section-head h4 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--peru-red);
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 8px;
}

.section-head h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 42px;
  color: #111827;
}

.section-head h2 span {
  color: #000000;
}

.link-arrow {
  font-weight: 800;
  border-bottom: 2px solid #111827;
  padding-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.link-arrow:hover {
  color: var(--peru-red);
  border-color: var(--peru-red);
}

.proposal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.proposal-card {
  position: relative;
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid #f1f5f9;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proposal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.12);
}

.proposal-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 0 26px 0 100px;
  opacity: 0.12;
}

.proposal-accent.blue {
  background: linear-gradient(135deg, #3b82f6, #22d3ee);
}

.proposal-accent.green {
  background: linear-gradient(135deg, #22c55e, #34d399);
}

.proposal-accent.purple {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.proposal-accent.orange {
  background: linear-gradient(135deg, #f97316, #fbbf24);
}

.proposal-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.proposal-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 12px;
}

.proposal-card p {
  color: var(--muted);
  font-size: 14px;
}

.news {
  padding: 96px 0;
  background: #f8fafc;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.news-card {
  background: #fff;
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid #f1f5f9;
}

.news-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  margin: 10px 0;
}

.news-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.news-card button {
  color: var(--peru-red);
  font-weight: 800;
  background: none;
}

.news-index {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #9ca3af;
  font-weight: 800;
}

.link-underline {
  font-weight: 800;
  border-bottom: 2px solid #111827;
  padding-bottom: 6px;
}

.link-underline:hover {
  color: var(--peru-red);
  border-color: var(--peru-red);
}

.events {
  padding: 96px 0;
  background: #fff;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.event-card {
  border-radius: 26px;
  padding: 26px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
}

.event-date {
  font-size: 12px;
  font-weight: 800;
  color: var(--peru-red);
}

.event-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  margin: 10px 0;
}

.event-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.gallery {
  padding: 96px 0;
  background: #f8fafc;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-item {
  height: 240px;
  border-radius: 26px;
  background-size: cover;
  background-position: center;
  border: 1px solid #f1f5f9;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.testimonials {
  padding: 96px 0;
  background: #fff;
}

.testimonials h2 {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 32px;
  margin-bottom: 20px;
}

.testimonials h2 span {
  color: var(--peru-red);
}

.marquee {
  position: relative;
  overflow: hidden;
  padding: 20px 0 10px;
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.testimonial-card {
  width: 320px;
  background: #f8fafc;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  padding: 20px;
  flex-shrink: 0;
}

.stars {
  color: #f5af1d;
  margin-bottom: 10px;
}

.testimonial-card p {
  color: var(--muted);
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-author span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #9ca3af;
}

.testimonial-author strong {
  display: block;
  font-size: 13px;
}

.testimonial-author small {
  color: var(--muted);
  font-size: 11px;
}

.marquee-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
}

.marquee-mask.left {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.marquee-mask.right {
  right: 0;
  background: linear-gradient(-90deg, #fff, transparent);
}

.cta {
  padding: 120px 0;
  background: var(--peru-red);
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.1;
}

.cta::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  top: -80px;
  left: -80px;
  filter: blur(40px);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.cta h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.footer {
  background: #111827;
  color: #fff;
  padding: 80px 0 40px;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  margin-top: -32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.brand-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.brand-inline img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
}

.brand-inline h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
}

.brand-inline span {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #9ca3af;
}

.footer p,
.footer a {
  color: #cbd5f5;
  font-size: 13px;
}

.footer-links,
.footer-contact,
.footer-form {
  display: grid;
  gap: 12px;
}

.footer-links h4,
.footer-contact h4,
.footer-form h4 {
  font-size: 16px;
}

.footer-links a:hover,
.footer-contact p:hover {
  color: var(--peru-red);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.footer-social a:hover {
  background: var(--peru-red);
}

.footer-form form {
  display: grid;
  gap: 10px;
}

.footer-form input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.footer-form button {
  background: var(--peru-red);
  color: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 11px;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 120;
}

.whatsapp,
.chat-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
}

.whatsapp {
  background: #25d366;
}

.chat-toggle {
  background: var(--peru-red);
  position: relative;
}

.chat-toggle .icon-close {
  display: none;
}

.chat-toggle.active .icon-chat {
  display: none;
}

.chat-toggle.active .icon-close {
  display: block;
}

.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 100px;
  width: min(360px, 90vw);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
  border: 1px solid #f1f5f9;
  display: none;
  flex-direction: column;
  z-index: 110;
  overflow: hidden;
}

.chat-widget.open {
  display: flex;
}

.chat-header {
  background: var(--peru-red);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
}

.chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-avatar img {
  width: 30px;
  height: 30px;
}

.chat-header h3 {
  font-size: 14px;
}

.chat-header p {
  font-size: 11px;
  opacity: 0.7;
}

.chat-messages {
  padding: 16px;
  background: #f8fafc;
  max-height: 300px;
  overflow-y: auto;
  display: grid;
  gap: 12px;
}

.chat-message {
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 13px;
  max-width: 80%;
}

.chat-message.bot {
  background: #fff;
  color: #111827;
  border-top-left-radius: 4px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

.chat-message.user {
  background: var(--peru-red);
  color: #fff;
  border-top-right-radius: 4px;
  margin-left: auto;
}

.chat-input {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
}

.chat-input input {
  flex: 1;
  border-radius: 999px;
  border: none;
  background: #f1f5f9;
  padding: 10px 14px;
  font-size: 13px;
}

.chat-input input:focus {
  outline: 2px solid rgba(223, 9, 25, 0.3);
}

.chat-input button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--peru-red);
  color: #fff;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-image {
    height: 460px;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 120px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .quick-inner {
    text-align: center;
  }

  .section-head h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .hero-stat {
    position: static;
    margin-top: 16px;
  }

  .footer {
    border-radius: 24px 24px 0 0;
  }
}
