
  /* =========================
     PADRÃO / VARIÁVEIS
  ========================= */

  @font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter_24pt-Medium.ttf');
   
    font-weight: 400;
  }

  body {
    font-family: 'Inter', sans-serif;
  }

  :root {
    --white: #ffffff;
    --verde: #2c7d22;
    --azul: #2966bc;
    --amarelo: #f4b52a;

    --t-h1: clamp(40px, 4.5vw, 72px);
    --t-h2: clamp(42px, 4.5vw, 68px);
    --t-h2-light: clamp(36px, 4.2vw, 54px);
    --t-h3: clamp(34px, 3.2vw, 54px);

    --t-body: 15px;
    --t-small: 13px;
    --lh-body: 1.6;

    --radius-1: 12px;
    --radius-2: 14px;
  }

  img {
    max-width: 100%;
  }

  body {
    font-size: var(--t-body);
    line-height: var(--lh-body);
  }

  /* =========================
     HERO
  ========================= */
  .hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background:
      linear-gradient(rgba(3, 20, 33, 0.49), rgba(3, 20, 33, 0.18)),
      url("../imagens/banner-ecotechne2.png") top/cover no-repeat;
  }

  .hero .navbar {
    position: absolute;
    top: 0;

    left: 0;
    width: 100%;
    z-index: 10;
    padding-top: 25px;
  }

  .navbar-nav .nav-link {
    color: #fff !important;
    font-size: 15px;
    font-weight: 500;
    margin-left: 30px;
    
  }

  .navbar-nav .nav-link:hover {
    opacity: .8;
  }

  .logo img {
    height: 130px;
  }

  .hero-content {
    width: 100%;
    padding-top: 120px;
  }

  .hero-title {
    font-weight: 800;
    font-size: var(--t-h1);
    line-height: 1.05;
    margin: 0;
    background: linear-gradient(180deg, #ffffff 0%, #e6e6e6 55%, #cfcfcf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero-right {
    text-align: right;
  }

  .hero-subtitle {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 10px;
  }

  .btn-hero {
    position: relative;
    display: inline-block;
    padding: 15px 45px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .02em;
    color: #fff;
    background: rgba(0, 0, 0, 0.49);
  }

  .btn-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(90deg,
        rgb(29, 29, 29) 0%,
        rgba(255, 255, 255, 0.4) 45%,
        rgba(255, 255, 255, .85) 100%);
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }

  .btn-hero:hover {
    background: rgba(0, 0, 0, .84);
  }

  /* =========================
     SOBRE NÓS
  ========================= */
  .about-section {
    padding: 90px 0 0px;
    background: #fff;
  }

  .about-wrap {
    max-width: 1320px;
    margin: 0 auto;
  }

  .about-row {
    --bs-gutter-x: 10px;
    align-items: center;
  }

  .about-title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 36px;
    margin-bottom: 20px;
  }

  .about-title .line {
    width: 38px;
    height: 2px;
    background: #111;
  }

  .about-text {
    font-size: var(--t-body);
    line-height: 1.55;
    margin-bottom: 14px;
    max-width: 520px;
  }

  .about-right {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .about-img {
    max-width: 800px;
    object-fit: contain;
    margin-top: -45px;
  }

  .about-cards {
    margin-top: 40px;
    transform: translateY(-40px);
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-cards .row {
    --bs-gutter-x: 12px;
  }

  .about-card {
    border-radius: var(--radius-1);
    padding: 20px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    width: 65%;
    height: 18px;
    box-shadow: 0 20px 28px rgba(0, 0, 0, 0.5);
    filter: blur(6px);
    border-radius: 50%;
  }

  .about-card h5 {
    font-weight: 800;
    margin: 10px 0 10px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-card p,
  .about-card ul {
    font-size: var(--t-body);
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .about-card p {
    -webkit-line-clamp: 6;
  }

  .about-card ul {
    list-style: none;
    padding: 0;
  }

  .about-card ul li {
    line-height: 1.25;
  }

  .bg-missao {
    background: #2F69B6;
  }

  .bg-visao {
    background: #3C8E3F;
  }

  .bg-valores {
    background: #F2C14E;
  }

  /* =========================
     ÁREAS (CARROSSEL)
  ========================= */
  .areas {
    position: relative;
    background: #000;
    overflow: hidden;
  }

  .areas .carousel,
  .areas .carousel-inner,
  .areas .carousel-item {
    min-height: 520px;
  }

  .areas-slide {
    position: absolute;
    inset: 0;
    background: center/cover no-repeat;
    z-index: 1;
  }

  .areas-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, .70) 0%,
      rgba(0, 0, 0, .25) 40%,
      rgba(0, 0, 0, .78) 100%
    );
  }

  .areas-title {
    position: relative;
    z-index: 5;
    padding-top: 80px;
  }

  .areas-title .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .areas-title-left {
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .01em;
    font-size: 42px;
    line-height: .9;
    max-width: 320px;
  }

  .areas-title-right {
    color: #F5B400;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: .02em;
    font-size: 18px;
    margin-top: 10px;
  }

  .areas-content {
    position: relative;
    z-index: 5;
    padding: 40px 0 160px;
  }

  .areas-box {
    max-width: 760px;
    color: #fff;
    margin-left: 50px;
  }

  .areas-box p {
    margin: 0 0 18px 0;
    font-size: 17px;
    line-height: 1.5;
  }

  .areas-box h3 {
    margin: 0 0 18px 0;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
  }

  .areas-box ul {
    margin: 0;
    padding-left: 22px;
  }

  .areas-box ul li {
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.45;
    color: #fff;
  }

  .areas .carousel-control-prev,
  .areas .carousel-control-next {
    width: 12%;
    z-index: 6;
  }

  .areas .carousel-control-prev-icon,
  .areas .carousel-control-next-icon {
    background-image: none;
  }

  .areas .carousel-control-prev-icon::before,
  .areas .carousel-control-next-icon::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-top: 2px solid rgba(255, 255, 255, .9);
    border-right: 2px solid rgba(255, 255, 255, .9);
    transform: rotate(-135deg);
    margin-left: 30px;
  }

  .areas .carousel-control-next-icon::before {
    transform: rotate(45deg);
    margin-left: auto;
    margin-right: 30px;
  }

  .areas .carousel-indicators {
    z-index: 6;
    bottom: 92px;
    margin-bottom: 0;
    gap: 7px;
  }

  .areas .carousel-indicators [data-bs-target] {
    width: 5px !important;
    height: 5px !important;
    border-radius: 999px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: rgba(255, 255, 255, .55) !important;
    opacity: 1 !important;
    border: 0 !important;
  }

  .areas .carousel-indicators .active {
    background: rgba(255, 255, 255, .95) !important;
  }

  .areas-wave {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 150px;
    z-index: 7;
    pointer-events: none;
  }

  /* =========================
     EXPERIÊNCIA
  ========================= */
  .xp-section {
    position: relative;
    background: #fbfbf6;
    padding: 90px 0 70px;
    overflow: hidden;
  }

  .xp-title {
    margin: 0;
    line-height: .95;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--azul);
    font-size: var(--t-h2-light);
  }

  .xp-line {
    position: relative;
    margin-top: 18px;
    height: 3px;
    width: 92%;
    background: var(--azul);
    max-width: 720px;
  }

  @media (min-width: 992px) {
    .xp-line {
      width: calc(100% + 170px);
    }
  }

  .xp-text {
    margin-top: 18px;
    max-width: 520px;
    font-size: var(--t-body);
    line-height: var(--lh-body);
    color: #111;
  }

  .xp-legend {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 120px;
    color: #111;
    font-size: var(--t-small);
  }

  .xp-dot {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #9fb5d6;
    flex: 0 0 20px;
  }

  .xp-right {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .xp-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    margin-top: -20px;
  }

  /* =========================
     REALIZAÇÕES
  ========================= */
  .reali {
    position: relative;
    padding: 120px 0 110px;
    color: #fff;
    overflow: hidden;
    background: url("../imagens/background-azul.png") center/cover no-repeat;
  }

  .reali-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .18) 0%, rgba(0, 0, 0, .55) 55%, rgba(0, 0, 0, .30) 100%);
    z-index: 1;
  }

  .reali-cards {
    position: relative;
    z-index: 2;
    margin-bottom: 55px;
  }

  .reali-card {
    background: rgba(0, 0, 0, .58);
    border-radius: var(--radius-2);
    padding: 25px;
    height: 345px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 30px rgba(0, 0, 0, .35);
    backdrop-filter: blur(3px);
  }

  .reali-card-img {
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    background: rgba(255, 255, 255, .05);
  }

  .reali-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .reali-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 16px;
    text-align: center;
  }

  .reali-card h5 {
    margin: 0 0 12px 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .02em;
    font-size: 15px;
    line-height: 1.15;
  }

  .reali-card p {
    margin: 0;
    font-size: var(--t-small);
    line-height: 1.35;
    opacity: .95;
  }

  .reali-bottom {
    position: relative;
    z-index: 2;
  }

  .reali-title {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .01em;
    font-size: clamp(44px, 4.5vw, 70px);
    margin: 0;
  }

  .reali-desc {
    margin: 0;
    max-width: 520px;
    font-size: 16px;
    line-height: 1.5;
  }

  /* =========================
     EXPANSÃO INTERNACIONAL
  ========================= */
  .intl {
    background: #fbfbf6;
    padding: 70px 0 60px;
    overflow: hidden;
  }

  .intl-top {
    margin-bottom: 22px;
  }

  .intl-title {
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .01em;
    line-height: .9;
    font-size: var(--t-h2);
    color: var(--verde);
  }

  .intl-text {
    margin: 0;
    max-width: 520px;
    font-size: var(--t-body);
    line-height: var(--lh-body);
    color: #111;
  }

  .intl-map-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0 18px;
  }

  .intl-map {
    width: 100%;
    max-width: 920px;
    height: auto;
    display: block;
  }

  .intl-legend {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    justify-content: flex-end;
  }

  .intl-dot {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--verde);
    flex: 0 0 34px;
    margin-top: 2px;
  }

  .intl-legend-text {
    margin: 0;
    max-width: 520px;
    color: #111;
    font-size: 14px;
    line-height: 1.5;
  }

  /* =========================
     GERAÇÃO DISTRIBUÍDA
  ========================= */
  .gd {
    overflow: hidden;
  }

  .gd-top {
    position: relative;
    width: 100%;
    height: 250px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .gd-top::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(44, 125, 34, .55) 0%,
        rgba(44, 125, 34, .25) 60%,
        rgba(44, 125, 34, .55) 100%);
    pointer-events: none;
  }

  .gd-bottom {
    background: var(--verde);
    padding: 100px 0;
    color: #fff;
  }

  .gd-title {
    margin: 0 0 20px 0;
    font-weight: 900;
    text-transform: uppercase;
    line-height: .92;
    font-size: var(--t-h2);
  }

  .gd-text {
    margin: 0;
    max-width: 360px;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 600;
  }

  .gd-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
  }

  .gd-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
  }

  .gd-info h4 {
    margin: 0 0 8px 0;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 16px;
  }

  .gd-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    max-width: 420px;
  }

  /* =========================
     CLIENTES (logos)
  ========================= */
  .clientes-logos {
    row-gap: 22px;
    margin-top: 22px;
  }

  .clientes-logos img {
    width: 100%;
    height: 75px;
    object-fit: contain;
    display: block;
    opacity: .95;
  }

  /* =========================
     PRINCIPAIS FERRAMENTAS
  ========================= */
  .tools {
    position: relative;
    background: #F2BE3E;
    padding: 85px 0 0;
    overflow: hidden;
    z-index: 1;
  }

  .tools::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 220px;
    background: linear-gradient(
      to top,
      #f6b639 0%,
      rgba(246, 182, 57, 0.95) 20%,
      rgba(246, 182, 57, 0.75) 45%,
      rgba(246, 182, 57, 0.35) 70%,
      rgba(246, 182, 57, 0) 100%
    );
    z-index: 0;
    pointer-events: none;
  }

  .tools-text {
    margin: 0;
    max-width: 520px;
    color: #fff;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
  }

  .tools-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .tools-img {
    width: 100%;
    max-width: 1080px;
    height: auto;
    display: block;
    filter: drop-shadow(0 28px 40px rgba(0, 0, 0, .22));
  }

  /* =========================
     CASES (CARROSSEL)
  ========================= */
  .cases-section {
    position: relative;
  }

  .case-slide {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 120px;
  }

  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
  }

  .cases-title {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    z-index: 2;
  }

  .case-content {
    position: relative;
    color: #fff;
    max-width: 680px;
    z-index: 2;
  }

  .case-small-title {
    color: var(--amarelo);
    font-weight: 800;
    margin-bottom: 6px;
  }

  .case-main-title {
    font-size: var(--t-h3);
    font-weight: 900;
    margin-bottom: 14px;
    line-height: 1.05;
  }

  .case-desc {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .case-info {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
    color: #fff;
  }

  .case-left,
  .case-right {
    font-size: 13px;
    line-height: 1.6;
  }

  .case-left p,
  .case-right p {
    margin: 0;
  }

  .case-right {
    margin-left: auto;
    text-align: right;
  }

  .case-line {
    flex: 1;
    height: 3px;
    background: var(--amarelo);
  }

  #casesCarousel .carousel-indicators {
    bottom: 40px;
    margin-bottom: 0;
    gap: 8px;
  }

  #casesCarousel .carousel-indicators button {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    padding: 0;
    margin: 0;
    background: rgba(255, 255, 255, .55);
    opacity: 1;
    transition: all .25s ease;
  }

  #casesCarousel .carousel-indicators button.active {
    background: #fff;
    transform: scale(1.15);
  }

  /* =========================
     ONDE ESTAMOS
  ========================= */
  .onde-estamos {
    background: #f6f6f6;
  }

  .onde-row {
    min-height: 520px;
  }

  .onde-left {
    display: flex;
    align-items: center;
    padding: 90px 95px;
  }

  .onde-left-inner {
    max-width: 640px;
  }

  .onde-title {
    margin: 0 0 24px 0;
    font-weight: 900;
    text-transform: uppercase;
    line-height: .95;
    font-size: clamp(48px, 4.8vw, 78px);
    color: #0f0f0f;
  }

  .onde-text {
    margin: 0 0 18px 0;
    font-size: 18px;
    line-height: 1.5;
    color: #111;
    max-width: 520px;
  }

  .onde-sub {
    margin: 0 0 28px 0;
    font-size: var(--t-body);
    color: #222;
  }

  .onde-contatos {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 10px;
  }

  .onde-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: var(--t-body);
    color: #111;
  }

  .onde-icon {
    font-size: 22px;
    color: var(--amarelo);
    min-width: 26px;
  }

  .onde-right {
    position: relative;
  }

  .onde-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .onde-map {
  width: 100%;
  height: 100%;
  border: 0;
}

  /* =========================
     RESPONSIVO (GERAL)
  ========================= */
  @media(max-width:991px) {
    .logo img {
      height: 90px;
    }

    .hero {
      text-align: left;
    }

    .hero-right {
      text-align: left;
      margin-top: 40px;
    }

    .navbar-nav {
      background: rgba(0, 0, 0, .85);
      padding: 20px;
    }

    .navbar-nav .nav-link {
      margin-left: 0;
      margin-bottom: 15px;
    }

    .about-img {
      height: 340px;
      margin-top: -10px;
    }

    .about-section {
      padding-bottom: 50px;
    }

    .areas .carousel,
    .areas .carousel-inner,
    .areas .carousel-item {
      min-height: 620px;
    }

    .areas-title {
      padding-top: 50px;
    }

    .areas-title-left {
      font-size: 34px;
      max-width: 240px;
    }

    .areas-title-right {
      font-size: 16px;
    }

    .areas-content {
      padding: 28px 0 130px;
    }

    .areas-box {
      max-width: 100%;
      margin-left: 0;
      padding-right: 15px;
    }

    .areas-box p,
    .areas-box ul li {
      font-size: 15px;
      line-height: 1.45;
    }

    .areas-box h3 {
      font-size: 24px;
    }

    .areas .carousel-indicators {
      bottom: 80px;
    }

    .areas-wave {
      height: 135px;
    }

    .xp-section {
      padding: 70px 0 55px;
    }

    .xp-line {
      width: 68%;
    }

    .xp-legend {
      margin-top: 28px;
    }

    .xp-img {
      margin-top: 18px;
    }

    .reali {
      padding: 70px 0 55px;
    }

    .reali-cards {
      margin-bottom: 34px;
    }

    .reali-card {
      height: 325px;
    }

    .reali-title {
      margin-bottom: 14px;
    }

    .intl {
      padding: 55px 0 50px;
    }

    .intl-text {
      margin-top: 12px;
    }

    .intl-legend {
      justify-content: flex-start;
    }

    .intl-dot {
      width: 28px;
      height: 28px;
      flex: 0 0 28px;
    }

    .gd-top {
      height: 140px;
    }

    .gd-bottom {
      padding: 50px 0;
    }

    .gd-text {
      margin-bottom: 30px;
      max-width: 100%;
    }

    .gd-img {
      width: 70px;
      height: 70px;
    }

    .tools {
      padding: 65px 0 0px;
    }

    .tools-text {
      margin-top: 14px;
      max-width: 100%;
    }

    .tools-img {
      max-width: 720px;
    }

    .case-slide {
      padding-bottom: 70px;
    }

    .cases-title {
      font-size: 32px;
    }

    .case-info {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }

    .case-right {
      margin-left: 0;
      text-align: left;
    }

    .case-line {
      width: 120px;
      flex: none;
    }

    .onde-row {
      min-height: auto;
    }

    .onde-left {
      padding: 60px 22px;
    }

    .onde-right {
      height: 320px;
    }

    .hero-wave {
      bottom: 0px !important;
    }

    .btn-hero {
      padding: 12px 32px;
    }

    #casesCarousel .carousel-indicators{
    display: none;
  }
  }






    .hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(rgba(3, 20, 33, 0.84), rgba(3, 20, 33, 0.18)),
    url("../imagens/banner-ecotechne.png") center/cover no-repeat;
}

.hero-content {
  width: 100%;
  padding-top: 120px;
  padding-bottom: 140px;
}

.hero-wave {
  position: absolute;
  left: 0;
  bottom: -45px;
  
  width: 100%;
  line-height: 0;
  z-index: 3;
  pointer-events: none;
 
}

.hero-wave img {
  display: block;
  width: 100%;
  height: auto;
}
 

  .wpp-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 32px;
  z-index: 9999;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.wpp-float:hover{
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,.28);
  opacity: .95;
}

@media (max-width: 991px){
  .wpp-float{
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
}


 /* =========================
   DEPOIMENTOS
========================= */
.depoimentos-section{
  padding: 90px 0 100px;
  background: #ffffff;
  position: relative;
}

.depoimentos-head{
  margin-bottom: 26px;
}

.depoimentos-head .about-title{
  justify-content: center;
}

#depoimentosCarousel{
  position: relative;
}

#depoimentosCarousel .carousel-inner{
  min-height: 420px;
}

.depoimento-box{
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 10px 90px 70px;
}

.depoimento-avatar{
  width: 180px;
  height: 180px;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto 28px;
}

.depoimento-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.depoimento-texto{
  max-width: 100%;
  margin: 0 auto;
  color: #4d4d4d;
}

.depoimento-texto.about-text{
  max-width: 100%;
  margin-bottom: 0;
  font-size: var(--t-body);
  line-height: var(--lh-body);
}


.depoimento-autor{
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  color: #3b3b3b;
}

/* setas reaproveitando o estilo já usado */
#depoimentosCarousel .carousel-control-prev,
#depoimentosCarousel .carousel-control-next{
  width: 12%;
  z-index: 5;
}

#depoimentosCarousel .carousel-control-prev-icon,
#depoimentosCarousel .carousel-control-next-icon{
  background-image: none;
}

#depoimentosCarousel .carousel-control-prev-icon::before,
#depoimentosCarousel .carousel-control-next-icon::before{
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid rgba(0, 0, 0, .9);
  border-right: 2px solid rgba(0, 0, 0, .9);
  transform: rotate(-135deg);
  margin-left: 30px;
}

#depoimentosCarousel .carousel-control-next-icon::before{
  transform: rotate(45deg);
  margin-left: auto;
  margin-right: 30px;
}

/* bolinhas no mesmo padrão */
#depoimentosCarousel .carousel-indicators{
  bottom: 10px;
  margin-bottom: 0;
  gap: 7px;
}

#depoimentosCarousel .carousel-indicators button{
  width: 6px !important;
  height: 6px !important;
  border-radius: 999px !important;
  padding: 0 !important;
  margin: 0 !important;
  background: rgba(0, 0, 0, .35) !important;
  opacity: 1 !important;
  border: 0 !important;
}

#depoimentosCarousel .carousel-indicators .active{
  background: rgba(0, 0, 0, .95) !important;
}

@media(max-width:991px){
  .depoimentos-section{
    padding: 60px 0 80px;
  }

  #depoimentosCarousel .carousel-inner{
    min-height: auto;
  }

  .depoimento-box{
    padding: 10px 28px 55px;
  }

  .depoimento-avatar{
    width: 120px;
    height: 120px;
    margin-bottom: 22px;
  }

  .depoimento-texto.about-text{
    font-size: var(--t-body);
    line-height: var(--lh-body);
  }



  .depoimento-autor{
    font-size: 22px;
  }

  #depoimentosCarousel .carousel-control-prev,
  #depoimentosCarousel .carousel-control-next{
    width: 52px;
  }

  #depoimentosCarousel .carousel-control-prev-icon::before,
  #depoimentosCarousel .carousel-control-next-icon::before{
    margin-left: 12px;
  }

  #depoimentosCarousel .carousel-control-next-icon::before{
    margin-right: 12px;
  }
}



  /* =========================
   NOSSOS NÚMEROS
========================= */
.numeros-hero{
  position: relative;
  background: var(--azul);
  padding: 120px 0 110px;
  color: #fff;
  overflow: hidden;
}

.numeros-title{
  justify-content: center;
  color: #fff;
  margin-bottom: 65px;
}

.numeros-title .line{
  background: linear-gradient(90deg, var(--amarelo) 0%, var(--verde) 100%);
}

.numeros-grid{
  text-align: center;
  row-gap: 30px;
  position: relative;
  z-index: 2;
}

.numero-item{
  padding: 10px 20px;
}

.numero-valor{
  font-size: clamp(60px, 7vw, 92px);
  font-weight: 800; /* usa o mesmo peso forte já presente no layout */
  line-height: 1;
  margin-bottom: 16px;
  color: #fff;
}

.numero-label{
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: .02em;
  font-weight: 700;
  text-transform: uppercase;
  color: #002947;
}

.numeros-wave-top,
.numeros-wave-bottom{
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 1;
  line-height: 0;
  pointer-events: none;
}

.numeros-wave-top{
  top: 0;
  height: 95px;
}

.numeros-wave-bottom{
  bottom: 0;
  height: 95px;
}

.numeros-wave-top svg,
.numeros-wave-bottom svg{
  width: 100%;
  height: 100%;
  display: block;
}

.numeros-wave-top path{
 
  fill: #f2f3f5;
}


.numeros-wave-bottom path{
  fill: #ffffff;
}

@media(max-width:991px){
  .numeros-hero{
    padding: 90px 0 80px;
  }

  .numeros-title{
    margin-bottom: 42px;
  }

  .numero-valor{
    font-size: 58px;
    margin-bottom: 12px;
  }

  .numero-label{
    font-size: 14px;
  }

  .numeros-wave-top,
  .numeros-wave-bottom{
    height: 70px;
  }
}



/* =========================
   SOBRE.PHP - HISTÓRIA / VALORES
   base visual da seção SOBRE NÓS
========================= */
.about-historia-section{
  padding: 90px 0;
  background: #f2f3f5;
}

.about-historia-section .about-wrap{
  max-width: 1200px;
 
  border-top-right-radius: 120px;
  padding: 55px 42px;
}

.about-historia-section .about-row{
  --bs-gutter-x: 48px;
  align-items: flex-start;
}

.about-historia-section .about-text{
  max-width: 100%;
  font-size: 16px;
  line-height: 2;
  color: #7b7f86;
  margin-bottom: 18px;
}

.about-historia-section .about-text strong{
  color: #555b63;
  font-weight: 800;
}

.about-valores-wrap{
  padding-left: 10px;
}

/* accordion */
.about-accordion{
  margin-top: 22px;
}

.about-accordion-item{
  border: 0 !important;
  background: transparent !important;
  margin-bottom: 22px;
}

.about-accordion-button{
  background: #1f76c2;
  color: #fff;
  border: 0 !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  font-size: 17px;
  font-weight: 800;
  padding: 22px 22px;
}

.about-accordion-button:not(.collapsed){
  background: #1f76c2;
  color: #fff;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.about-accordion-button:focus{
  box-shadow: none !important;
}

.about-accordion-button::after{
  filter: brightness(0) invert(1);
}

.about-accordion-body{
  background: #1f76c2;
  color: #fff;
  padding: 0 22px 22px;
  font-size: 15px;
  line-height: 1.75;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.about-historia-section .container{
  position: relative;
}

/* responsivo */
@media(max-width:991px){
  .about-historia-section{
    padding: 60px 0;
  }

  .about-historia-section .about-wrap{
    padding: 34px 22px;
    border-top-right-radius: 44px;
  }

  .about-historia-section .about-row{
    --bs-gutter-x: 0;
  }

  .about-historia-section .about-text{
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .about-valores-wrap{
    padding-left: 0;
    margin-top: 18px;
  }

  .about-accordion{
    margin-top: 18px;
  }

  .about-accordion-item{
    margin-bottom: 16px;
  }

  .about-accordion-button{
    font-size: 16px;
    padding: 18px 18px;
  }

  .about-accordion-body{
    padding: 0 18px 18px;
    font-size: 14px;
    line-height: 1.65;
  }
}




  /* =========================
   TOPO INTERNO
   usa o mesmo padrão da index,
   mas com fundo branco e sticky
========================= */

.topo-interno{
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}

.topo-interno .navbar{
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  z-index: 10;
  padding-top: 10px;
  padding-bottom: 10px;
  background: #fff;
}

.topo-interno .navbar-nav .nav-link{
  color: #111 !important;
  font-size: 15px;
  font-weight: 500;
  margin-left: 30px;
}

.topo-interno .navbar-nav .nav-link:hover{
  opacity: .8;
}

.topo-interno .logo img{
  height: 80px;
}

.topo-interno .navbar-toggler{
  border-color: rgba(0,0,0,.15);
  box-shadow: none !important;
}

.topo-interno .navbar-toggler:focus{
  box-shadow: none !important;
}

/* garante fundo branco no colapso mobile */
.topo-interno .navbar-collapse{
  background: transparent;
}

/* estado ativo opcional */
.topo-interno .navbar-nav .nav-link.active,
.topo-interno .navbar-nav .nav-link[aria-current="page"]{
  color: var(--azul) !important;
}

/* =========================
   RESPONSIVO
========================= */
@media(max-width:991px){
  .topo-interno .logo img{
    height: 90px;
  }

  .topo-interno .navbar{
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .topo-interno .navbar-nav{
    background: #fff;
    padding: 20px;
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
  }

  .topo-interno .navbar-nav .nav-link{
    margin-left: 0;
    margin-bottom: 15px;
    color: #111 !important;
  }

  .topo-interno .navbar-nav .nav-item:last-child .nav-link{
    margin-bottom: 0;
  }
}


    /* =========================
   CONTATO.PHP
========================= */
/* .contato-page-section{
  padding: 105px 0;
  background: #ffffff;
} */

/* .contato-page-section .about-wrap{
  max-width: 1200px;
} */

/* .contato-row{
  --bs-gutter-x: 70px;
} */

/* .contato-info .about-title{
  margin-bottom: 22px;
  text-transform: none;
} */

.contato-info .about-title strong{
  font-weight: 800;
}

.contato-info .about-text{
  max-width: 100%;
  margin-bottom: 22px;
}

.contato-info-extra{
  margin-top: 26px;
}

.contato-telefone{
  margin-bottom: 18px;
}

.contato-telefone a{
  color: #666;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}

.contato-telefone a:hover{
  color: var(--azul);
}

/* formulário */
.contato-form-wrap{
  width: 100%;
}

.contato-form .form-control{
  border: 0;
  border-radius: 0;
  box-shadow: none !important;
}

.contato-input,
.contato-textarea,
.contato-captcha-input{
  background: #e8e8e8;
  color: #666;
  font-size: var(--t-body);
  line-height: var(--lh-body);
}

.contato-input{
  height: 58px;
  padding: 16px 18px;
}

.contato-textarea{
  min-height: 150px;
  padding: 16px 18px;
  resize: vertical;
}

.contato-input::placeholder,
.contato-textarea::placeholder,
.contato-captcha-input::placeholder{
  color: #7c7c7c;
  opacity: 1;
}

.contato-input:focus,
.contato-textarea:focus,
.contato-captcha-input:focus{
  background: #e3e3e3;
  border: 0;
  outline: none;
}

/* linha final */
.contato-form-bottom{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.contato-captcha{
  display: flex;
  align-items: center;
  gap: 10px;
}

.contato-captcha label{
  font-size: var(--t-body);
  color: #555;
  margin: 0;
  white-space: nowrap;
}

.contato-captcha-input{
  width: 95px;
  height: 48px;
  padding: 10px 14px;
  text-align: center;
}

/* botão */
.btn-contato{
  min-width: 140px;
  height: 48px;
  border: 2px solid var(--azul);
  background: transparent;
  color: var(--azul);
  font-size: 18px;
  font-weight: 500;
  padding: 0 26px;
  transition: all .25s ease;
}

.btn-contato:hover{
  background: var(--azul);
  color: #fff;
}

/* responsivo */
@media(max-width:991px){
  .contato-page-section{
    padding: 60px 0;
  }

  .contato-row{
    --bs-gutter-x: 0;
    --bs-gutter-y: 30px;
  }

  .contato-form-bottom{
    justify-content: flex-start;
    gap: 16px;
  }

  .btn-contato{
    min-width: 130px;
  }
}
