/* ============================================
   SOBRE - CSS ESPECÍFICO
   ============================================ */

/* ============================================
   VARIÁVEIS CSS
   ============================================ */
:root {
  --primary-color: #2A7DE1;
  --secondary-color: #6bdad5;
  --dark-bg: #0F2C3E;
  --darker-bg: #000F18;
  --darkest-bg: #080D16;
  --text-white: #FFFFFF;
  --text-light: rgba(255, 255, 255, 0.80);
  --border-color: rgba(42, 125, 225, 0.20);
  --font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container-max-width: 1250px;
  --container-sized: 600px;
  --spacing-xs: 10px;
  --spacing-sm: 15px;
  --spacing-md: 20px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;
  --spacing-xxl: 80px;
  --border-radius: 10px;
  --border-radius-lg: 15px;
  --transition: all 0.3s ease;
  --badge-bg: rgba(22, 112, 202, 0.20);
}

/* ============================================
   CONTAINER
   ============================================ */
.container.sized {
  max-width: 1250px;
}

/* ============================================
   BADGE - MESMO ESTILO DA HOME
   ============================================ */
.section-badge {
  display: inline-block;
  padding: 5px 15px;
  background: var(--badge-bg);
  border: 1px solid var(--badge-bg);
  border-radius: var(--border-radius);
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: var(--spacing-md);
  width: fit-content;
}

/* ============================================
   SEÇÃO NOSSA ESSÊNCIA
   ============================================ */
.nossa-essencia-section {
  background: #000F18;
  position: relative;
  padding: 200px 0 var(--spacing-xxl) 0;
  overflow: hidden;
  z-index: 1;
}

.nossa-essencia-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.nossa-essencia-text-column {
  display: flex;
  flex-direction: column;
}

.nossa-essencia-title {
  font-family: var(--font-family);
  font-size: 40px;
  line-height: 44px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 var(--spacing-md) 0;
}

.nossa-essencia-description {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: var(--text-light);
  margin: 0;
}

.nossa-essencia-video-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nossa-essencia-video-wrapper {
  width: 250px;
  height: 444.44px;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.nossa-essencia-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--border-radius);
}

/* ============================================
   SEÇÃO O QUE NOS GUIA
   ============================================ */
.o-que-nos-guia-section {
  position: relative;
  padding: var(--spacing-xxl) 0;
  overflow: hidden;
  margin-top: -25px;
  z-index: 2;
}

.o-que-nos-guia-section-bg {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: calc(100% + 80px);
  background-image: url('../../uploads/Group-5-1.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
}

.o-que-nos-guia-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.o-que-nos-guia-image-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.o-que-nos-guia-image-wrapper {
  width: 480px;
  height: 420px;
  position: relative;
  overflow: hidden;
}

.o-que-nos-guia-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.o-que-nos-guia-text-column {
  display: flex;
  flex-direction: column;
}

.o-que-nos-guia-title {
  font-family: var(--font-family);
  font-size: 40px;
  line-height: 44px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 var(--spacing-md) 0;
}

.o-que-nos-guia-description {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: var(--text-light);
  margin: 0;
}

/* ============================================
   RESPONSIVE - TABLET (768px - 1199px)
   ============================================ */
@media (max-width: 1199px) and (min-width: 768px) {
  /* Container */
  .container.sized {
    max-width: 100%;
    padding: 0 var(--spacing-md);
  }

  /* Seção Nossa Essência */
  .nossa-essencia-section {
    padding: 120px 0 var(--spacing-xl) 0;
  }

  .nossa-essencia-content {
    gap: var(--spacing-lg);
  }

  .nossa-essencia-title {
    font-size: 36px;
    line-height: 40px;
  }

  .nossa-essencia-description {
    font-size: 17px;
    line-height: 25.5px;
  }

  .nossa-essencia-video-wrapper {
    border-radius: 8px;
  }

  .nossa-essencia-video-wrapper iframe {
    border-radius: 8px;
  }

  /* Seção O que nos guia */
  .o-que-nos-guia-section {
    padding: var(--spacing-xl) 0;
  }

  .o-que-nos-guia-content {
    gap: var(--spacing-lg);
  }

  .o-que-nos-guia-title {
    font-size: 36px;
    line-height: 40px;
  }

  .o-que-nos-guia-description {
    font-size: 17px;
    line-height: 25.5px;
  }

  .o-que-nos-guia-image-wrapper {
    max-width: 480px;
    width: 100%;
  }

  /* Badges */
  .section-badge {
    border-radius: 8px;
  }
}

/* ============================================
   RESPONSIVE - MOBILE GRANDE (576px - 767px)
   ============================================ */
@media (max-width: 767px) and (min-width: 576px) {
  /* Container */
  .container.sized {
    max-width: 100%;
    padding: 0 var(--spacing-sm);
  }

  /* Seção Nossa Essência */
  .nossa-essencia-section {
    padding: 80px 0 var(--spacing-lg) 0;
  }

  .nossa-essencia-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .nossa-essencia-video-column {
    order: -1;
  }

  .nossa-essencia-text-column {
    text-align: center;
  }

  .nossa-essencia-title {
    font-size: 32px;
    line-height: 36px;
    text-align: center;
  }

  .nossa-essencia-description {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .nossa-essencia-video-wrapper {
    width: 100%;
    max-width: 250px;
    height: auto;
    aspect-ratio: 250 / 444.44;
    border-radius: 8px;
  }

  .nossa-essencia-video-wrapper iframe {
    border-radius: 8px;
  }

  /* Seção O que nos guia */
  .o-que-nos-guia-section {
    padding: var(--spacing-lg) 0;
    margin-top: -30px;
  }

  .o-que-nos-guia-section-bg {
    top: -30px;
    height: calc(100% + 60px);
  }

  .o-que-nos-guia-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .o-que-nos-guia-image-column {
    order: -1;
  }

  .o-que-nos-guia-text-column {
    text-align: center;
  }

  .o-que-nos-guia-title {
    font-size: 32px;
    line-height: 36px;
    text-align: center;
  }

  .o-que-nos-guia-description {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .o-que-nos-guia-image-wrapper {
    width: 100%;
    max-width: 480px;
    height: auto;
    aspect-ratio: 480 / 420;
  }

  /* Badges */
  .section-badge {
    padding: 8px 16px;
    border-radius: 8px;
    align-self: center;
    text-align: center;
  }
}

/* ============================================
   RESPONSIVE - MOBILE PEQUENO (≤ 575px)
   ============================================ */
@media (max-width: 575px) {
  /* Container */
  .container.sized {
    max-width: 100%;
    padding: 0 var(--spacing-sm);
  }

  /* Seção Nossa Essência */
  .nossa-essencia-section {
    padding: 150px 0 50px 0;
  }

  .nossa-essencia-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .nossa-essencia-video-column {
    order: -1;
  }

  .nossa-essencia-text-column {
    text-align: center;
  }

  .nossa-essencia-title {
    font-size: 28px;
    line-height: 32px;
    text-align: center;
  }

  .nossa-essencia-description {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
  }

  .nossa-essencia-video-wrapper {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 250 / 444.44;
    border-radius: 8px;
  }

  .nossa-essencia-video-wrapper iframe {
    border-radius: 8px;
  }

  /* Seção O que nos guia */
  .o-que-nos-guia-section {
    padding: 60px 0 var(--spacing-md);
  }

  .o-que-nos-guia-section-bg {
    height: calc(100% + 40px);
  }

  .o-que-nos-guia-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .o-que-nos-guia-image-column {
    order: -1;
  }

  .o-que-nos-guia-text-column {
    text-align: center;
  }

  .o-que-nos-guia-title {
    font-size: 28px;
    line-height: 32px;
    text-align: center;
  }

  .o-que-nos-guia-description {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
  }

  .o-que-nos-guia-image-wrapper {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 480 / 420;
  }

  /* Badges */
  .section-badge {
    padding: 8px 16px;
    border-radius: 8px;
    align-self: center;
    text-align: center;
  }
}

