:root {
  --primary: #ef2b2d;
  --primary-dark: #d92525;
  --secondary: #f7c325;
  --secondary-strong: #ffc107;
  --cta: #00ff38;
  --cta-dark: #00db31;
  --whatsapp: #25d366;
  --text: #111111;
  --muted: #5f5f5f;
  --light-bg: #ededed;
  --white: #ffffff;
  --line: rgba(0, 0, 0, 0.08);
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  --radius: 24px;
  --radius-small: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: #ffffff;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.section {
  padding: 64px 0;
}

.section-light,
.partners-section,
.institutional-section {
  background: #ffffff;
}

.narrow-header {
  text-align: center;
  margin-bottom: 36px;
}

.narrow-header h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.narrow-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 26px;
  border: 0;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--cta);
  color: #000;
  box-shadow: 0 10px 24px rgba(0, 255, 56, 0.18);
}

.btn-primary:hover {
  background: var(--cta-dark);
}

.btn-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand img {
  width: 156px;
}

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

.site-nav a {
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 600;
}

.site-nav a:hover {
  opacity: 0.88;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: var(--white);
  padding: 42px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 36px;
  min-height: 540px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero h1 {
  margin: 0 0 14px;
  max-width: 470px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 0.96;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-text {
  max-width: 420px;
  margin: 0 0 22px;
  font-size: 1rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 470px;
}

.hero-person {
  width: min(100%, 560px);
  position: relative;
  z-index: 2;
}

.hero-badges,
.hero-badge {
  display: none;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shapes-left::before,
.hero-shapes-left::after,
.hero-shapes-right::before,
.hero-shapes-right::after {
  content: "";
  position: absolute;
  transform: rotate(45deg);
  border: 8px solid #173154;
}

.hero-shapes-left::before {
  width: 86px;
  height: 86px;
  left: -16px;
  top: 20px;
}

.hero-shapes-left::after {
  width: 120px;
  height: 120px;
  left: -36px;
  bottom: 90px;
  border-color: var(--secondary);
  background: var(--white);
}

.hero-shapes-right::before {
  width: 72px;
  height: 72px;
  right: 48px;
  top: 26px;
  border-color: #173154;
}

.hero-shapes-right::after {
  width: 94px;
  height: 94px;
  right: -26px;
  top: 10px;
  border-color: var(--secondary);
  background: var(--white);
}

.warning-bar {
  background: var(--secondary);
  color: var(--white);
  overflow: hidden;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.warning-track {
  display: inline-block;
  padding: 11px 0;
  min-width: 200%;
  animation: marquee 24s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

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

.solution-card {
  background: linear-gradient(180deg, #ff4748 0%, var(--primary) 100%);
  color: var(--white);
  border-radius: 14px;
  padding: 14px;
  min-height: 360px;
  box-shadow: var(--shadow);
}

.solution-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
}

.solution-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.12;
}

.solution-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.cta-center {
  text-align: center;
  margin-top: 28px;
}

.partners-section {
  background: var(--light-bg);
  padding-top: 18px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(185px, 1fr));
  gap: 30px 38px;
  align-items: center;
  justify-items: center;
}

.partner-logo {
  height: 120px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.partners-grid img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 96px;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.96);
}

.services-stack {
  display: grid;
  gap: 16px;
}

.service-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  align-items: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: var(--shadow);
}

.service-image img {
  max-width: 300px;
  margin: 0 auto;
}

.service-content h3 {
  margin: 0 0 14px;
  font-size: 1.45rem;
  text-transform: uppercase;
}

.service-content ul {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.service-content li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.service-content li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cta);
  font-weight: 800;
}

.section-light,
.partners-section,
.institutional-section {
  background: #ffffff;
}

.institutional-box {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  align-items: center;
  background: var(--secondary);
  border-radius: 24px;
  padding: 30px 34px;
}

.institutional-brand img {
  width: 220px;
  margin: 0 auto;
}

.institutional-text {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  font-size: 0.94rem;
  line-height: 1.7;
}

.institutional-text p {
  margin: 0 0 14px;
}

.institutional-text p:last-child {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.contact-box+.contact-box {
  margin-top: 22px;
}

.contact-box h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  text-transform: uppercase;
}

.contact-box p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.hours-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #f7f7f7;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 14px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.hours-list li:last-child {
  border-bottom: 0;
}

.contact-cta-card {
  background: var(--primary);
  color: var(--white);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-cta-card h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
}

.contact-cta-card p {
  margin: 0 0 18px;
  line-height: 1.6;
  font-size: 0.94rem;
}

.site-footer {
  background: #060606;
  color: var(--white);
  padding-top: 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-branding img {
  width: 118px;
}

.footer-column h4 {
  margin: 0 0 14px;
  color: var(--secondary);
  font-size: 0.95rem;
}

.footer-column ul {
  display: grid;
  gap: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}


.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: var(--secondary);
  flex: 0 0 18px;
}

.footer-bottom a {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 28px;
  padding: 16px 0 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 6px 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.28);
  z-index: 90;
}

.floating-whatsapp img {
  width: 42px;
  height: 42px;
}

@media (max-width: 1180px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 50px;
  }

  .hero-copy {
    max-width: 620px;
    padding-top: 18px;
  }

  .hero-visual {
    min-height: auto;
    justify-content: flex-start;
    padding-right: 220px;
  }
}

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: var(--primary);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 10px 16px 18px;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-panel,
  .institutional-box,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding-right: 0;
    padding-bottom: 160px;
  }

  .hero-badges {
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    transform: none;
    width: min(100%, 360px);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 46px 0;
  }

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

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 104px;
  }

  .hero {
    padding-top: 20px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .cards-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: auto;
  }

  .service-panel {
    padding: 24px 18px;
  }

  .institutional-box {
    padding: 22px 18px;
  }

  .institutional-brand img {
    width: 180px;
  }

  .contact-cta-card {
    padding: 22px 18px;
  }

  .floating-whatsapp {
    width: 66px;
    height: 66px;
    right: 14px;
    bottom: 14px;
  }

  .floating-whatsapp img {
    width: 38px;
    height: 38px;
  }

  .hero-shapes-left::before,
  .hero-shapes-left::after,
  .hero-shapes-right::before,
  .hero-shapes-right::after {
    opacity: 0.45;
  }
}


.contact-grid-centered {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.contact-info-centered {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.contact-box-centered {
  text-align: left;
}

.contact-box-centered p+p {
  margin-top: 10px;
}

.contact-box-centered a {
  color: inherit;
}

.contact-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.contact-actions .btn {
  min-width: 280px;
}

section:not(.hero) {
  background: #ffffff !important;
}

@media (max-width: 640px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
    align-items: center;
    justify-items: center;
  }

  .partner-logo {
    min-height: 96px;
    padding: 12px 14px;
  }

  .partners-grid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}