/* =========================================================
   A YESCOM - NOVA VERSÃO
========================================================= */

:root {
  --yescom-blue: #002f6c;
  --yescom-blue-dark: #06172f;
  --yescom-blue-light: #008acf;
  --yescom-cyan: #35c7ff;
  --yescom-bg: #f4f7fb;
  --yescom-text: #263244;
  --yescom-muted: #6f7d90;
  --yescom-white: #ffffff;
  --yescom-radius: 24px;
  --yescom-shadow: 0 18px 45px rgba(0, 31, 84, 0.12);
}

p, h1, h2, h3, h4, h5, h6 {
	font-family: 'proxima_nova_rgregular' !important;
	}

.yescom-page {
  background: var(--yescom-bg);
  color: var(--yescom-text);
  font-family: 'proxima_nova_rgregular';
  overflow: hidden;
}

.yescom-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.yescom-section {
  padding: 80px 0;
}

.yescom-section-tag,
.yescom-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--yescom-blue-light);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.yescom-section-tag::before,
.yescom-eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--yescom-blue-light), var(--yescom-cyan));
}

.yescom-section h2,
.yescom-intro h2 {
  margin: 0 0 22px;
  color: var(--yescom-blue-dark);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.yescom-section p,
.yescom-intro p {
  color: var(--yescom-muted);
  font-size: 17px;
  line-height: 1.75;
}

.yescom-grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: stretch;
}

/* HERO */

.yescom-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--yescom-blue-dark);
}

.yescom-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yescom-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 23, 47, 0.94), rgba(0, 47, 108, 0.72), rgba(0, 138, 207, 0.22)),
    linear-gradient(0deg, rgba(6, 23, 47, 0.95), rgba(6, 23, 47, 0.05));
}

.yescom-hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 120px 0 90px;
  color: var(--yescom-white);
}

.yescom-hero-content h1 {
  margin: 0 0 18px;
  color: var(--yescom-white);
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.yescom-hero-content p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: clamp(19px, 2.4vw, 28px);
  line-height: 1.35;
}

/* INTRO */

.yescom-intro {
  background:
    radial-gradient(circle at top right, rgba(0, 138, 207, 0.12), transparent 36%),
    var(--yescom-white);
}

.yescom-highlight-card {
  position: relative;
  padding: 36px;
  border-radius: var(--yescom-radius);
  background:
    linear-gradient(145deg, rgba(0,47,108,1), rgba(6,23,47,1));
  color: var(--yescom-white);
  box-shadow: var(--yescom-shadow);
  overflow: hidden;
}

.yescom-highlight-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(53, 199, 255, 0.22);
}

.yescom-highlight-card h3 {
  position: relative;
  margin: 0 0 14px;
  color: var(--yescom-white);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.yescom-highlight-card p {
  position: relative;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.78);
}

.yescom-mini-list {
  position: relative;
  display: grid;
  gap: 14px;
}

.yescom-mini-list div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.yescom-mini-list strong {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yescom-blue-light);
  color: var(--yescom-white);
  font-size: 15px;
}

.yescom-mini-list span {
  color: rgba(255,255,255,0.9);
  font-weight: 700;
}

/* DETAILS ENGLISH */

.yescom-details {
  margin-top: 26px;
  padding: 20px;
  border-radius: 18px;
  background: #f4f7fb;
  border: 1px solid rgba(0, 47, 108, 0.1);
}

.yescom-details summary {
  cursor: pointer;
  color: var(--yescom-blue);
  font-weight: 900;
}

.yescom-details p {
  margin-bottom: 0;
  font-size: 15px;
}

/* NÚMEROS */

.yescom-numbers {
  padding: 34px 0;
  background: linear-gradient(90deg, var(--yescom-blue-dark), var(--yescom-blue), var(--yescom-blue-light));
}

.yescom-number-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.yescom-number-card {
  padding: 26px 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--yescom-white);
}

.yescom-number-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.yescom-number-card span {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.4;
}

/* HEADINGS */

.yescom-section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.yescom-section-heading p {
  margin: 0;
}

/* SERVICES */

.yescom-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.yescom-service-card {
  padding: 32px;
  border-radius: var(--yescom-radius);
  background: var(--yescom-white);
  box-shadow: var(--yescom-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.yescom-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(0, 31, 84, 0.18);
}

.yescom-service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--yescom-blue), var(--yescom-blue-light));
  color: var(--yescom-white);
  font-weight: 900;
}

.yescom-service-card h3 {
  margin: 0 0 12px;
  color: var(--yescom-blue-dark);
  font-size: 24px;
  font-weight: 900;
}

.yescom-service-card p {
  margin: 0;
  font-size: 15px;
}

/* EVENTOS / LOGOS */

.yescom-events-section {
  background: var(--yescom-white);
}

.yescom-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.yescom-logo-card {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 24px;
  border-radius: 22px;
  background: #f7f9fc;
  border: 1px solid rgba(0, 47, 108, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.yescom-logo-card:hover {
  transform: translateY(-5px);
  background: var(--yescom-white);
  box-shadow: var(--yescom-shadow);
}

.yescom-logo-card img {
  max-width: 100%;
  max-height: 96px;
  object-fit: contain;
}

/* GALERIA */

.yescom-gallery-section {
  background:
    radial-gradient(circle at top left, rgba(0, 138, 207, 0.12), transparent 34%),
    var(--yescom-bg);
}

.yescom-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 16px;
}

.yescom-gallery-item {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--yescom-blue-dark);
  box-shadow: 0 14px 35px rgba(0, 31, 84, 0.12);
}

.yescom-gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.yescom-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.yescom-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,23,47,0.5), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.yescom-gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.92;
}

.yescom-gallery-item:hover::after {
  opacity: 1;
}

/* RESPONSIVO */

@media (max-width: 992px) {
  .yescom-section {
    padding: 64px 0;
  }

  .yescom-grid-2,
  .yescom-services-grid {
    grid-template-columns: 1fr;
  }

  .yescom-number-grid,
  .yescom-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .yescom-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
}

@media (max-width: 576px) {
  .yescom-container,
  .yescom-hero-content {
    width: min(100% - 24px, 1180px);
  }

  .yescom-hero {
    min-height: 500px;
  }

  .yescom-hero-content {
    padding: 100px 0 62px;
  }

  .yescom-section {
    padding: 52px 0;
  }

  .yescom-highlight-card,
  .yescom-service-card {
    padding: 26px;
  }

  .yescom-number-grid,
  .yescom-logo-grid {
    grid-template-columns: 1fr;
  }

  .yescom-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .yescom-gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .yescom-logo-card {
    min-height: 130px;
  }
}