@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  color: white;
}

html, body {
  font-family: Syne, sans-serif !important;
  font-stretch: 75%;
}

.margin-caniballs-fix {
  margin: 0 15%;
}

.highlight {
  color: #ff8c22;
}

.section-inner {
  max-width: 1200px !important;
  padding: 0 1rem !important;
}

.half-section-inner {
  max-width: 600px !important;
  margin: 0 0 !important;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* full-screen */
  overflow: hidden;
  margin-top: 30px;
  /* container das bolinhas */
  /* cada bolinha */
  /* bolinha ativa */
  /* hover em qualquer bolinha */
}
.hero .hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero .hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero .hero-slide.active {
  opacity: 1;
}
.hero .hero-slide.active {
  opacity: 1;
}
.hero .hero-content {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  color: #fff; /* branco por cima da imagem */
  max-width: 35%;
  opacity: 1;
  transition: opacity 1s ease-in-out 0.3s;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .hero .hero-content {
    left: 16%;
  }
}
.hero .hero-text-block {
  position: relative;
  padding-left: 1rem;
  color: #fff;
}
.hero .hero-text-block::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 0;
  width: 4px;
  height: 100%;
  background: #ff8c22;
}
.hero .hero-text-block h1 {
  margin: 0 0 0.5em;
  line-height: 1.1;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .hero .hero-text-block h1 {
    font-size: 3.5rem;
  }
}
.hero .hero-text-block p {
  margin: 0;
  line-height: 1;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .hero .hero-text-block p {
    font-size: 1.375rem;
  }
}
.hero .hero-btn {
  align-self: flex-start;
  padding: 0.75em 1.5em;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 5px;
  transition: background 0.3s;
  margin: 1rem;
  position: relative;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
  transition: background 0.3s;
}
.hero .hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: left 0.5s ease-in-out;
  pointer-events: none;
  z-index: -1;
}
.hero .hero-btn:hover::before {
  left: 120%;
}
.hero .hero-dots span.active,
.hero .hero-dots span:hover {
  opacity: 1;
}
.hero .hero-dots {
  position: absolute;
  top: 90%;
  right: 50%;
  transform: translateY(-50%) rotate(-90deg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero .hero-dots {
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
  }
}
.hero .hero-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: 1px solid #fff;
  background-color: transparent;
}
.hero .hero-dots span.active {
  background: #fff;
  transform: scale(1.2);
}
.hero .hero-dots span:hover {
  background: #fff;
  transform: scale(1.1);
}
.hero .hero-bg.desktop-bg {
  display: block;
}
.hero .hero-bg.mobile-bg {
  display: none;
}
@media (max-width: 768px) {
  .hero .hero-bg.desktop-bg {
    display: none;
  }
  .hero .hero-bg.mobile-bg {
    display: block;
  }
}
.hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.text-image-section {
  background: #f9f9f9;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.text-image-section .text-image-text {
  padding-top: 5rem;
}
@media (min-width: 768px) {
  .text-image-section .text-image-text {
    padding-right: 5rem;
  }
}
.text-image-section .text-image-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid #ff8c22;
  padding-left: 1rem;
}
.text-image-section .text-image-text h2 .highlight {
  color: #ff8c22;
}
.text-image-section .text-image-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #a5a5a5;
}
.text-image-section .text-image-text .btn-primary {
  background-color: #ff8c22;
  border-color: #ff8c22;
  text-transform: uppercase;
}
.text-image-section .text-image-text .btn-primary:hover {
  background-color: rgb(238, 114.1538461538, 0);
  border-color: rgb(238, 114.1538461538, 0);
}
.text-image-section .ratio-16x9 {
  border-radius: 8px;
  overflow: hidden;
}
.text-image-section .ratio-16x9 iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .text-image-section .text-image-text {
    text-align: center;
  }
  .text-image-section .text-image-text h2 {
    font-size: 2rem;
    border-left: none;
    padding-left: 0;
  }
  .text-image-section .text-image-text .btn-primary {
    width: 100%;
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) and (min-width: 768px) {
  .text-image-section .text-image-text .btn-primary {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .text-image-section .text-image_wrapper {
    flex-direction: column-reverse;
  }
}

.text-image-grid h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  border-left: 4px solid #ff8c22;
  padding-left: 1rem;
}
@media (min-width: 768px) {
  .text-image-grid h2 {
    font-size: 2.5rem;
  }
}
.text-image-grid h2 .highlight {
  color: #ff8c22;
}
@media (max-width: 767.9px) {
  .text-image-grid .text-image_wrapper {
    flex-direction: column-reverse;
  }
}
.text-image-grid p {
  margin-bottom: 1.5rem;
  color: #555;
  line-height: 1.6;
}
.text-image-grid .btn-primary {
  background-color: #fff;
  color: #ff8c22;
  font-weight: 700;
  border: none;
  text-transform: uppercase;
}
.text-image-grid .btn-primary:hover {
  color: #191919;
  background-color: #fff;
  border: none;
}
@media (max-width: 767.9px) {
  .text-image-grid .btn-primary {
    margin-bottom: 2rem;
  }
}
.text-image-grid img.img-fluid,
.text-image-grid .ratio-16x9 {
  width: 100%;
  height: auto;
}
.text-image-grid .ratio-16x9 iframe {
  object-fit: cover;
}
.text-image-grid h3 {
  font-size: 1rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .text-image-grid h3 {
    font-size: 1.5rem;
  }
}

.cta-banner {
  background: #000;
}
.cta-banner .text-margin {
  display: flex;
  justify-content: center;
}
.cta-banner .justify-items-end {
  justify-content: flex-end;
}
.cta-banner .cta-content {
  color: #fff;
  padding: 2rem 0;
  position: relative;
  text-align: center;
}
@media (min-width: 768px) {
  .cta-banner .cta-content {
    text-align: left;
  }
}
.cta-banner .cta-content .line {
  border-left: 2px solid #fff;
  padding-left: 1rem;
}
.cta-banner .cta-content .cta-label {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #ff8c22;
  margin-bottom: 0.5rem;
}
.cta-banner .cta-content .cta-title {
  line-height: 1.1;
  margin-bottom: 1rem;
  font-size: 3.5rem;
}
@media (min-width: 768px) {
  .cta-banner .cta-content .cta-title {
    font-size: 5rem;
  }
}
.cta-banner .cta-content .cta-title span {
  color: #ff8c22;
}
.cta-banner .cta-content .cta-text {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
}
.cta-banner .cta-content .btn-outline {
  display: inline-block;
  padding: 0.75em 1.5em;
  border: 2px solid #ff8c22;
  color: #ff8c22;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
  z-index: 1;
  font-weight: 700;
}
.cta-banner .cta-content .btn-outline:hover {
  background: #ff8c22;
  color: #000;
}
.cta-banner .cta-image-wrapper {
  /* altura máxima do banner */
  max-height: 600px; /* ajuste ao seu gosto */
  overflow: hidden;
  max-width: 44%;
}
@media (min-width: 1025px) {
  .cta-banner .cta-image-wrapper {
    max-width: 50%;
  }
}
@media (max-width: 1000px) {
  .cta-banner .cta-image-wrapper {
    display: none;
  }
}
.cta-banner .cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop inteligente */
  object-position: center; /* foca no centro da imagem */
  display: block;
}
.cta-banner .half-section-inner {
  max-width: 700px !important;
}

.parallax-cards {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.parallax-cards .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/junte-se.jpg") center/cover no-repeat;
  background-attachment: fixed;
  z-index: 1;
}
.parallax-cards .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent 10%, black 50%);
  z-index: 2;
}
@media (max-width: 768px) {
  .parallax-cards .overlay {
    background: linear-gradient(transparent 0%, black 20%);
  }
}
.parallax-cards .container {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  padding: 6rem 1rem 4rem;
}
.parallax-cards .intro {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .parallax-cards .intro {
    display: block;
    max-width: 60%;
    text-align: left;
  }
}
.parallax-cards .intro h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  position: relative;
  padding-left: 1.5rem;
}
.parallax-cards .intro h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 4px;
  height: calc(100% - 0.5em);
  background: #ff8c22;
}
.parallax-cards .intro p {
  font-size: 1.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 26px;
  text-align: center;
}
@media (min-width: 768px) {
  .parallax-cards .intro p {
    text-align: left;
  }
}
.parallax-cards .intro .btn-outline {
  display: inline-block;
  padding: 0.75em 1.5em;
  border: 2px solid #ff8c22;
  color: #ff8c22;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
  font-weight: 700;
  text-align: center;
  backdrop-filter: blur(10px);
}
@media (min-width: 768px) {
  .parallax-cards .intro .btn-outline {
    text-align: left;
  }
}
.parallax-cards .intro .btn-outline:hover {
  background: #ff8c22;
  color: #000;
}
.parallax-cards .cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.parallax-cards .card {
  background: #fff;
  color: #000;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 3;
  height: 450px;
}
.parallax-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.parallax-cards .card .card-image {
  min-height: 280px;
  max-height: 280px;
  overflow: hidden;
}
.parallax-cards .card .card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.parallax-cards .card .card-content {
  padding: 1rem;
}
.parallax-cards .card .card-content .card-label {
  display: block;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #ff8c22;
  margin-bottom: 0.25rem;
}
.parallax-cards .card .card-content h3 {
  font-size: 2.1rem;
  margin: 0;
  text-transform: uppercase;
}

.obrigado {
  background-color: black;
  height: 98vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.obrigado p {
  color: white;
  font-size: 25px;
}

.hero-escola {
  position: relative;
  width: 100%;
  height: 100vh; /* full-screen */
  overflow: hidden;
  margin-top: 30px;
  /* container das bolinhas */
  /* cada bolinha */
  /* bolinha ativa */
  /* hover em qualquer bolinha */
}
.hero-escola .hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-escola .hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero-escola .hero-slide.active {
  opacity: 1;
}
.hero-escola .hero-slide.active {
  opacity: 1;
}
.hero-escola .hero-content {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  color: #fff; /* branco por cima da imagem */
  max-width: 35%;
  opacity: 1;
  transition: opacity 1s ease-in-out 0.3s;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .hero-escola .hero-content {
    left: 16%;
  }
}
.hero-escola .hero-text-block {
  position: relative;
  padding-left: 1rem;
  color: #fff;
}
.hero-escola .hero-text-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #ff8c22;
}
.hero-escola .hero-text-block h1 {
  margin: 0 0 0.5em;
  line-height: 1.1;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .hero-escola .hero-text-block h1 {
    font-size: 3.5rem;
  }
}
.hero-escola .hero-text-block p {
  margin: 0;
  line-height: 1;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .hero-escola .hero-text-block p {
    font-size: 1.375rem;
  }
}
.hero-escola .hero-btn {
  align-self: flex-start;
  padding: 0.75em 1.5em;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 5px;
  transition: background 0.3s;
  margin: 1rem;
  position: relative;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
  transition: background 0.3s;
}
.hero-escola .hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: left 0.5s ease-in-out;
  pointer-events: none;
  z-index: -1;
}
.hero-escola .hero-btn:hover::before {
  left: 120%;
}
.hero-escola .hero-dots span.active,
.hero-escola .hero-dots span:hover {
  opacity: 1;
}
.hero-escola .hero-dots {
  position: absolute;
  top: 90%;
  right: 50%;
  transform: translateY(-50%) rotate(-90deg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero-escola .hero-dots {
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
  }
}
.hero-escola .hero-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: 1px solid #fff;
  background-color: transparent;
}
.hero-escola .hero-dots span.active {
  background: #fff;
  transform: scale(1.2);
}
.hero-escola .hero-dots span:hover {
  background: #fff;
  transform: scale(1.1);
}
.hero-escola .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-escola .hero-bg.desktop-bg {
  display: block;
}
.hero-escola .hero-bg.mobile-bg {
  display: none;
}
@media (max-width: 767.98px) {
  .hero-escola .hero-bg.desktop-bg {
    display: none;
  }
  .hero-escola .hero-bg.mobile-bg {
    display: block;
  }
}

.escola-cards {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.escola-cards .container {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  padding: 6rem 1rem 4rem;
}
.escola-cards .intro {
  max-width: 60%;
  text-align: left;
}
.escola-cards .intro h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
}
@media (min-width: 768px) {
  .escola-cards .intro h2 {
    font-size: 2.5rem;
  }
}
.escola-cards .intro p {
  font-size: 1.2rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #000;
}
.escola-cards .intro .btn-outline {
  display: inline-block;
  padding: 0.75em 1.5em;
  border: 2px solid #ff8c22;
  color: #ff8c22;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}
.escola-cards .intro .btn-outline:hover {
  background: #ff8c22;
  color: #000;
}
.escola-cards .cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.escola-cards .card {
  background: #fff;
  color: #000;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 3;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.escola-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.escola-cards .card .card-image {
  min-height: 100px;
  max-height: 100px;
  overflow: hidden;
}
.escola-cards .card .card-image img {
  display: block;
  object-fit: cover;
  object-position: top center;
}
.escola-cards .card .card-content {
  padding: 1rem;
  text-align: center;
}
.escola-cards .card .card-content .card-label {
  display: block;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #ff8c22;
  margin-bottom: 0.25rem;
}
.escola-cards .card .card-content h3 {
  font-size: 2.1rem;
  margin: 0;
  text-transform: uppercase;
  color: #ff8c22;
}

.futuros-atletas .row {
  margin: 0;
}
.futuros-atletas__media {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}
@media (min-width: 768px) {
  .futuros-atletas__media {
    height: auto;
  }
}
.futuros-atletas__content {
  background: #000;
  color: #fff;
}
.futuros-atletas__content .container {
  padding: 6rem 1rem 4rem;
}
@media (min-width: 768px) {
  .futuros-atletas__content .container {
    padding: 4rem 3rem 3rem 3rem;
  }
}
.futuros-atletas__content .title-and-sub {
  border-left: 5px solid #ff8c22;
}
.futuros-atletas__content h2 {
  position: relative;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}
.futuros-atletas__content h2 .highlight {
  color: #ff8c22;
}
.futuros-atletas__content p.normal {
  font-size: 1.375rem;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}
.futuros-atletas__content p.italic {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.85);
}
.futuros-atletas__content .info-list {
  list-style: none;
  margin-bottom: 2.5rem;
  padding: 0;
}
.futuros-atletas__content .info-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.futuros-atletas__content .info-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff8c22;
}
.futuros-atletas__content .btn-primary {
  display: inline-block;
  padding: 0.75em 1.5em;
  background-color: transparent;
  border: 2px solid #ff8c22;
  color: #ff8c22;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}
.futuros-atletas__content .btn-primary:hover {
  background: #ff8c22;
  border: 2px solid #ff8c22;
  color: #000;
}

.escola-hero {
  background: #000;
  color: #fff;
  width: 100%;
  overflow: hidden;
  /* COLUNA ESQUERDA (lista) */
  /* COLUNA DIREITA (imagem) */
}
.escola-hero__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.escola-hero__list {
  flex: 1 1 100%;
  max-width: 100%;
  padding: 4rem 3rem 4rem 0;
}
@media (min-width: 768px) {
  .escola-hero__list {
    flex: 0 0 50%;
  }
}
.escola-hero__heading {
  font: 700 2.25rem/1;
  margin: 0 0 3rem;
  letter-spacing: 0.02em;
}
.escola-hero .hero-item {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.escola-hero .hero-item__icon {
  font-size: 3rem;
  color: #ff8c22;
  flex: 0 0 auto;
}
.escola-hero .hero-item__text h3 {
  position: relative;
  font: 700 1.875rem;
  text-transform: uppercase;
  margin: 0 0 0.5rem 0;
  padding-left: 1rem;
}
.escola-hero .hero-item__text h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #ff8c22;
}
.escola-hero .hero-item__text p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}
.escola-hero .hero-sep {
  border: 0;
  border-top: 2px solid #fff;
  margin: 2rem 0;
}
.escola-hero__image {
  flex: 1 1 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
}
@media (min-width: 992px) {
  .escola-hero__image {
    flex: 0 0 60%;
    max-width: 50%;
    height: auto;
    min-height: 600px;
  }
}

.video-block .video-block__inner {
  display: flex;
  flex-direction: column;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .video-block .video-block__inner {
    flex-direction: row;
    align-items: center;
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
.video-block .video-block__text {
  flex: 1;
}
@media (min-width: 768px) {
  .video-block .video-block__text {
    max-width: 50%;
    border-left: 6px solid black;
    padding-left: 1rem;
    padding-right: 2rem;
  }
}
.video-block .video-block__text h2 {
  position: relative;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  .video-block .video-block__text h2 {
    font-size: 3.5rem;
  }
}
.video-block .video-block__text h2 .highlight {
  color: #ff8c22;
}
.video-block .video-block__text p {
  font-size: 1.375rem;
  line-height: 1.2;
  color: #333;
}
.video-block .video-block__media {
  flex: 1;
  margin: 0 0;
}
.video-block .video-block__media .video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.video-block .video-block__media .video-embed img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
}
.video-block .video-block__media .video-embed__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  background: rgba(0, 0, 0, 0.6) url('data:image/svg+xml;utf8,<svg fill="%23fff" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M8 5v14l11-7z"/></svg>') center/50% no-repeat;
  border-radius: 50%;
}

.vlog-group {
  background: #ff8c22; /* fundo laranja */
  /* citações */
}
@media (min-width: 768px) {
  .vlog-group {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .vlog-group .container-fluid {
    height: 100% !important;
  }
  .vlog-group .container-fluid .row {
    height: 100% !important;
  }
}
.vlog-group .video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  overflow: hidden;
  cursor: pointer;
}
@media (min-width: 768px) {
  .vlog-group .video-embed {
    width: 280px;
    height: 120%;
    left: 50%;
    bottom: 50px;
  }
}
.vlog-group .video-embed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vlog-group .video-embed__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  background: rgba(255, 255, 255, 0.6) url('data:image/svg+xml;utf8,<svg fill="%23000" viewBox="0 0 24 24"><path d="M8 5v14l11-7z"/></svg>') center/50% no-repeat;
  border-radius: 50%;
}
.vlog-group p {
  color: #333;
  font-size: 1.875rem;
}
.vlog-group small {
  color: rgba(0, 0, 0, 0.7);
}
@media (min-width: 768px) {
  .vlog-group .padding-fix {
    padding-right: 17% !important;
    justify-content: space-evenly;
    gap: 20px;
  }
}
.vlog-group .citation-item {
  position: relative; /* para posicionar o ::before */
  padding-left: 1rem; /* desloca o texto um pouco para a direita, if necessário */
  padding-top: 3rem;
}
@media (min-width: 768px) {
  .vlog-group .citation-item {
    padding-top: 0;
  }
}
.vlog-group .citation-item::before {
  content: "“";
  position: absolute;
  top: -20px;
  left: 25px;
  font-size: 6rem;
  line-height: 1;
  color: #333;
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  .vlog-group .citation-item::before {
    top: -70px;
  }
}
.vlog-group .citation-item span {
  background-color: #333 !important;
  height: 100%;
  width: 10px;
}
.vlog-group .citation-item p {
  padding-left: 1rem;
  padding-top: 1rem;
  font-weight: 700;
}
.vlog-group .citation-item small {
  padding-left: 0.5rem;
}

.vlog-reverse-group {
  background: #191919; /* fundo laranja */
  /* citações */
}
@media (min-width: 768px) {
  .vlog-reverse-group {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .vlog-reverse-group .container-fluid {
    height: 100% !important;
  }
  .vlog-reverse-group .container-fluid .row {
    height: 100% !important;
  }
}
.vlog-reverse-group .video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  overflow: hidden;
  cursor: pointer;
}
@media (min-width: 768px) {
  .vlog-reverse-group .video-embed {
    width: 280px;
    height: 130%;
    right: -5%;
    bottom: 60px;
  }
}
.vlog-reverse-group .video-embed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vlog-reverse-group .video-embed__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  background: rgba(255, 255, 255, 0.6) url('data:image/svg+xml;utf8,<svg fill="%23000" viewBox="0 0 24 24"><path d="M8 5v14l11-7z"/></svg>') center/50% no-repeat;
  border-radius: 50%;
}
.vlog-reverse-group p {
  color: #ff8c22;
  font-size: 1.875rem;
}
.vlog-reverse-group small {
  color: #ff8c22;
}
@media (min-width: 768px) {
  .vlog-reverse-group .padding-fix {
    padding-left: 15% !important;
    justify-content: space-evenly;
    gap: 20px;
  }
}
.vlog-reverse-group .citation-item {
  position: relative; /* para posicionar o ::before */
  padding-left: 1rem; /* desloca o texto um pouco para a direita, if necessário */
}
.vlog-reverse-group .citation-item::before {
  content: "“";
  position: absolute;
  top: -70px;
  left: 25px;
  font-size: 6rem;
  line-height: 1;
  color: #ff8c22;
  transform: rotate(180deg);
}
.vlog-reverse-group .citation-item span {
  background-color: #ff8c22 !important;
  height: 100%;
  width: 10px;
}
.vlog-reverse-group .citation-item p {
  padding-left: 1rem;
  padding-top: 1rem;
  font-weight: 700;
}
.vlog-reverse-group .citation-item small {
  padding-left: 0.5rem;
}

.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 400px;
  pointer-events: none;
}
.hero-video__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-video__bg video {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero-video__bg video {
    height: 130%;
  }
}
.hero-video__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-left: 1rem;
}
@media (min-width: 768px) {
  .hero-video__content {
    padding-left: 3rem;
    left: 15% !important;
  }
}
.hero-video__content .hero-video__bar {
  display: block;
  width: 4px;
  height: 2rem;
  background: #fff;
}
.hero-video__content h1, .hero-video__content p, .hero-video__content small {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}
.hero-video__content h1 {
  text-transform: uppercase;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .hero-video__content h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .hero-video__content h1 {
    font-size: 5rem;
  }
}
.hero-video__content p {
  font-size: 1.5rem;
}
.hero-video__content small {
  font-size: 1.5rem;
  text-transform: uppercase;
}
.hero-video .content {
  border-left: 5px solid white;
  padding-left: 1rem;
}
.hero-video .highlight {
  color: #ff8c22;
}
.hero-video .hero-btn {
  align-self: flex-start;
  padding: 0.75em 1.5em;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 5px;
  transition: background 0.3s;
  margin: 1rem;
  position: relative;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
  transition: background 0.3s;
  pointer-events: all;
}
.hero-video .hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: left 0.5s ease-in-out;
  pointer-events: none;
  z-index: -1;
}
.hero-video .hero-btn:hover::before {
  left: 120%;
}

.logo-cta-section {
  background: #fff;
  color: #000;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.logo-cta-section .logo-cta__logo {
  max-width: 180px;
  width: 100%;
  height: auto;
}
.logo-cta-section .logo-cta__tagline {
  font-size: 1.25rem;
  font-style: italic;
  color: #555;
}
.logo-cta-section .logo-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  background: transparent;
  border: none;
  border-radius: 4px;
  transition: all 0.3s;
  color: black;
  border: 2px solid black;
  font-weight: 700;
}
.logo-cta-section .logo-cta__btn i {
  font-size: 1.25rem;
}
.logo-cta-section .logo-cta__btn:hover {
  background: #ff8c22;
  color: #fff;
  box-shadow: 0 0 5px black;
}

.infinite-media-block {
  padding-bottom: 3rem;
}
.infinite-media-block .row {
  margin: 0;
}
.infinite-media-block .media-col {
  padding: 0;
}
.infinite-media-block .media-col .media-bleed {
  margin-left: -22vw;
  height: 100%;
  overflow: hidden;
}
.infinite-media-block .media-col .media-bleed img.object-fit-cover {
  object-fit: cover;
}
.infinite-media-block .content-col {
  position: relative;
  color: #000;
  display: flex;
  justify-content: center;
}
.infinite-media-block .content-col .content-inner {
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .infinite-media-block .content-col .content-inner {
    padding: 0 6rem;
  }
}
.infinite-media-block .content-col .content-inner h2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .infinite-media-block .content-col .content-inner h2 {
    font-size: 3.5rem;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.infinite-media-block .content-col .content-inner p {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #191919;
}
@media (min-width: 768px) {
  .infinite-media-block .content-col .content-inner p {
    font-size: 1.375rem;
  }
}

.infinite-media-block2 {
  background-color: #ff8c22;
}
.infinite-media-block2 .row {
  margin: 0;
}
.infinite-media-block2 .media-col {
  padding: 0;
}
.infinite-media-block2 .media-col .media-bleed {
  height: 100%;
  overflow: hidden;
}
.infinite-media-block2 .media-col .media-bleed img.object-fit-cover {
  object-fit: cover;
  width: 100%;
  max-width: 950px;
}
.infinite-media-block2 .content-col {
  position: relative;
  color: #191919;
  display: flex;
  justify-content: center;
}
.infinite-media-block2 .content-col .content-inner {
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .infinite-media-block2 .content-col .content-inner {
    padding: 0 6rem;
  }
}
.infinite-media-block2 .content-col .content-inner h2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .infinite-media-block2 .content-col .content-inner h2 {
    font-size: 3.5rem;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.infinite-media-block2 .content-col .content-inner p {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #191919;
}
@media (min-width: 768px) {
  .infinite-media-block2 .content-col .content-inner p {
    font-size: 1.375rem;
  }
}

.infinite-media-block3 .row {
  margin: 0;
  background-color: #191919;
}
.infinite-media-block3 .media-col {
  padding: 0;
}
.infinite-media-block3 .media-col .media-bleed {
  margin-left: -22vw;
  height: 700px;
  overflow: hidden;
}
.infinite-media-block3 .media-col .media-bleed img.object-fit-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.infinite-media-block3 .content-col {
  position: relative;
  color: #ff8c22;
  display: flex;
  justify-content: center;
}
.infinite-media-block3 .content-col .content-inner {
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .infinite-media-block3 .content-col .content-inner {
    padding: 0 6rem;
  }
}
.infinite-media-block3 .content-col .content-inner h2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .infinite-media-block3 .content-col .content-inner h2 {
    font-size: 3.5rem;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.infinite-media-block3 .content-col .content-inner p {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ff8c22;
}
@media (min-width: 768px) {
  .infinite-media-block3 .content-col .content-inner p {
    font-size: 1.375rem;
  }
}

.about-us-section {
  background: #fff;
  color: #000;
  min-height: 600px;
  display: flex;
  align-items: center;
  margin-top: 5rem;
}
.about-us-section .logo-cta__logo {
  max-width: 240px;
  width: 100%;
  height: auto;
}
.about-us-section h1 {
  font-size: 3.5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.about-us-section .logo-cta__tagline {
  font-size: 1.2rem;
  color: #555;
}
.about-us-section .logo-cta__tagline_large {
  font-size: 1.2rem;
  color: #555;
}
.about-us-section .logo-cta__tagline_large .italic {
  font-weight: 600;
}
.about-us-section .logo-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  background: transparent;
  border: none;
  border-radius: 4px;
  transition: all 0.3s;
  color: black;
  border: 2px solid black;
  font-weight: 700;
}
.about-us-section .logo-cta__btn i {
  font-size: 1.25rem;
}
.about-us-section .logo-cta__btn:hover {
  background: #ff8c22;
  color: #fff;
  box-shadow: 0 0 5px black;
}

.cta-footer-block {
  background-color: #191919; /* fundo preto */
  color: #fff;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.cta-footer-block .row .col-12 {
  display: flex;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .cta-footer-block .row .col-12 {
    justify-content: center;
  }
}
.cta-footer-block .cta-footer-title {
  position: relative;
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  color: #fff;
  padding-left: 2rem;
  width: 50%;
}
.cta-footer-block .cta-footer-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #fff;
}
.cta-footer-block .cta-footer-title .title‐highlight {
  color: #ff8c22;
}
.cta-footer-block .info‐row {
  justify-content: center !important;
}
.cta-footer-block .info‐row .info-item {
  display: flex;
  align-items: center;
  justify-content: flex-start !important;
}
@media (min-width: 768px) {
  .cta-footer-block .info‐row .info-item {
    justify-content: center;
  }
}
.cta-footer-block .info‐row .info-item i[class*=fa-] {
  font-size: 1.5rem;
  color: #ff8c22;
}
.cta-footer-block .info‐row .info-item .info‐label {
  font-size: 0.875rem;
  color: #fff;
  font-weight: 500;
}
.cta-footer-block .info‐row .info-item .info‐link {
  font-size: 1.125rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.cta-footer-block .info‐row .info-item .info‐link:hover {
  color: #ff8c22;
  text-decoration: none;
}
.cta-footer-block .info‐row .vertical-divider {
  width: 1px;
  height: 2rem;
  background-color: #fff;
}
.cta-footer-block .social‐list {
  padding-left: 0;
  margin: 0;
  list-style: none;
  gap: 40px;
}
.cta-footer-block .social‐list li a.social‐link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.2s ease;
  overflow: hidden;
}
.cta-footer-block .social‐list li a.social‐link:hover {
  transform: scale(1.5);
}
.cta-footer-block .social‐list li a.social‐link img {
  width: 80%;
  height: 80%;
}

/* Media queries para garantir responsividade (opcional) */
@media (max-width: 767.98px) {
  .cta-footer-block .cta-footer-title {
    font-size: 2rem;
    padding-left: 1.5rem;
  }
  .cta-footer-block .info‐row {
    flex-direction: column;
  }
  .cta-footer-block .info‐row .vertical-divider {
    display: none;
  }
  .cta-footer-block .info‐row .info-item {
    justify-content: flex-start;
    margin-bottom: 1rem;
  }
  .cta-footer-block .social‐list {
    justify-content: center;
    margin-top: 1rem;
  }
}
/* --------------------------------------------------------
   2.1) ESTILIZAÇÕES GERAIS DO BLOCO
-------------------------------------------------------- */
.contact-section {
  background-color: #000; /* fundo preto */
  color: #fff; /* texto branco */
  overflow: hidden; /* garante que nada “vaze” */
  position: relative;
  word-break: break-word;
  /* --------------------------------------------------------
     2.2) ESTILO DO TÍTULO
  -------------------------------------------------------- */
  /* --------------------------------------------------------
     2.3) ESTILO DOS TEXTOS EXPLICATIVOS
  -------------------------------------------------------- */
  /* --------------------------------------------------------
     2.4) ESTILO DO FORMULÁRIO (Contact Form 7)
     – Ajustamos inputs, textarea e botão
  -------------------------------------------------------- */
  /* 2.4.1) Campos de input / textarea */
  /* 2.4.2) Botão de enviar */
  /* Se o seu tema CF7 gera <input type="submit"> sem a classe .wpcf7-submit, adapte:
  input[type="submit"] {
    [mesmos estilos acima]
  }
  */
  /* --------------------------------------------------------
     2.5) RESPONSIVIDADE ADICIONAL (poderá ajustar conforme necessidade)
  -------------------------------------------------------- */
}
.contact-section .display-fix {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-section .contact-title {
  position: relative;
  font-size: 2.75rem; /* ajuste conforme necessário */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #fff;
  padding-left: 1.5rem; /* espaço para a barra laranja */
}
.contact-section .contact-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #fff;
}
.contact-section .contact-lead {
  font-size: 1.125rem; /* “lead” um pouco maior */
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #ddd; /* cinza claro */
  font-style: italic; /* se desejar itálico como no exemplo */
}
.contact-section .contact-small-print {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #bbb; /* cinza médio */
}
.contact-section .wpcf7 form {
  width: 100%;
  /* Campos texto, email, tel */
  /* Remova margens extras padrão do CF7 em certos temas */
}
.contact-section .wpcf7 form input[type=text],
.contact-section .wpcf7 form input[type=email],
.contact-section .wpcf7 form input[type=tel],
.contact-section .wpcf7 form textarea {
  background-color: transparent;
  border: 1px solid #fff; /* borda branca */
  border-radius: 4px;
  color: #fff; /* texto branco */
  padding: 0.75rem 1rem;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}
.contact-section .wpcf7 form input[type=text]:focus,
.contact-section .wpcf7 form input[type=email]:focus,
.contact-section .wpcf7 form input[type=tel]:focus,
.contact-section .wpcf7 form textarea:focus {
  outline: none;
  border-color: #ff8c22; /* borda laranja no foco */
  background-color: rgba(255, 255, 255, 0.05);
}
.contact-section .wpcf7 form input[type=text]::placeholder,
.contact-section .wpcf7 form input[type=email]::placeholder,
.contact-section .wpcf7 form input[type=tel]::placeholder,
.contact-section .wpcf7 form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact-section .wpcf7 form .wpcf7-form-control-wrap {
  display: block;
}
.contact-section .wpcf7 form p {
  width: 100%;
}
.contact-section .wpcf7 form p label {
  width: 100%;
}
.contact-section .wpcf7-submit {
  background-color: #ff8c22;
  border: none;
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.contact-section .wpcf7-submit:hover {
  background-color: rgb(238, 114.1538461538, 0);
  color: #fff;
}
.contact-section .form-call {
  font-size: 1.5rem;
}
@media (max-width: 767.98px) {
  .contact-section .contact-section {
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .contact-section .contact-title {
    font-size: 2rem;
    padding-left: 1rem;
  }
  .contact-section .contact-title::before {
    left: 0.5rem;
  }
  .contact-section .wpcf7 form {
    margin: 0 auto;
    max-width: 100%;
  }
}

.social-stats-section {
  background-color: #ff8c22;
  color: #fff;
  padding: 3rem 0;
}
.social-stats-section .row {
  margin: 0;
}
.social-stats-section a {
  text-decoration: none;
  transition: color 0.2s ease;
}
.social-stats-section a:hover .stat-number, .social-stats-section a:hover .stat-label {
  color: #191919;
}
.social-stats-section .social-left-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (min-width: 767.98px) {
  .social-stats-section .social-left-wrapper {
    padding-left: 2rem;
    padding-right: 6em;
  }
}
.social-stats-section .left-bar {
  width: 6px;
  height: 6rem;
  background-color: #fff;
}
@media (min-width: 767.98px) {
  .social-stats-section .left-bar {
    font-size: 3.5rem;
    height: 8rem;
  }
}
.social-stats-section .left-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.social-stats-section .left-text .small-label {
  font-size: 1.375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
}
.social-stats-section .left-text .hashtag {
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin: 0;
  font-size: 2.5rem;
}
@media (min-width: 767.98px) {
  .social-stats-section .left-text .hashtag {
    font-size: 3.5rem;
  }
}
.social-stats-section .stat-number {
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  font-size: 2.5rem;
  transition: color 0.2s ease;
}
@media (min-width: 768px) {
  .social-stats-section .stat-number {
    font-size: 3.5rem;
  }
}
.social-stats-section .stat-label {
  font-size: 1.375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}
@media (max-width: 767.98px) {
  .social-stats-section .col-12.col-md-6:last-child {
    margin-top: 2rem;
  }
}
.social-stats-section .flex-numbers {
  display: flex;
  justify-content: space-evenly;
}
@media (min-width: 768px) {
  .social-stats-section .flex-numbers {
    justify-content: flex-start;
  }
}

.hero-aulas-futebol-americano {
  position: relative;
  width: 100%;
  height: 100vh; /* full-screen */
  overflow: hidden;
  margin-top: 30px;
  /* container das bolinhas */
  /* cada bolinha */
  /* bolinha ativa */
  /* hover em qualquer bolinha */
}
.hero-aulas-futebol-americano .hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-aulas-futebol-americano .hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.hero-aulas-futebol-americano .hero-slide.active {
  opacity: 1;
}
.hero-aulas-futebol-americano .hero-slide.active {
  opacity: 1;
}
.hero-aulas-futebol-americano .hero-content {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  color: #fff; /* branco por cima da imagem */
  max-width: 35%;
  opacity: 1;
  transition: opacity 1s ease-in-out 0.3s;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .hero-aulas-futebol-americano .hero-content {
    left: 16%;
  }
}
.hero-aulas-futebol-americano .hero-text-block {
  position: relative;
  padding-left: 1rem;
  color: #fff;
}
.hero-aulas-futebol-americano .hero-text-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #ff8c22;
}
.hero-aulas-futebol-americano .hero-text-block h1 {
  margin: 0 0 0.5em;
  line-height: 1.1;
  font-size: 1.5rem;
  border-radius: 26px;
  backdrop-filter: blur(1px);
}
@media (min-width: 768px) {
  .hero-aulas-futebol-americano .hero-text-block h1 {
    font-size: 3.5rem;
    backdrop-filter: blur(2px);
  }
}
.hero-aulas-futebol-americano .hero-text-block p {
  margin: 0;
  line-height: 1;
  font-size: 1rem;
  backdrop-filter: blur(1px);
  border-radius: 26px;
}
@media (min-width: 768px) {
  .hero-aulas-futebol-americano .hero-text-block p {
    font-size: 1.375rem;
    backdrop-filter: blur(2px);
  }
}
.hero-aulas-futebol-americano .hero-btn {
  align-self: flex-start;
  padding: 0.75em 1.5em;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 5px;
  transition: background 0.3s;
  margin: 1rem;
  position: relative;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
  transition: background 0.3s;
}
.hero-aulas-futebol-americano .hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: left 0.5s ease-in-out;
  pointer-events: none;
  z-index: -1;
}
.hero-aulas-futebol-americano .hero-btn:hover::before {
  left: 120%;
}
.hero-aulas-futebol-americano .hero-dots span.active,
.hero-aulas-futebol-americano .hero-dots span:hover {
  opacity: 1;
}
.hero-aulas-futebol-americano .hero-dots {
  position: absolute;
  top: 90%;
  right: 50%;
  transform: translateY(-50%) rotate(-90deg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero-aulas-futebol-americano .hero-dots {
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
  }
}
.hero-aulas-futebol-americano .hero-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: 1px solid #fff;
  background-color: transparent;
}
.hero-aulas-futebol-americano .hero-dots span.active {
  background: #fff;
  transform: scale(1.2);
}
.hero-aulas-futebol-americano .hero-dots span:hover {
  background: #fff;
  transform: scale(1.1);
}
.hero-aulas-futebol-americano .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-aulas-futebol-americano .hero-bg.desktop-bg {
  display: block;
}
.hero-aulas-futebol-americano .hero-bg.mobile-bg {
  display: none;
}
@media (max-width: 767.98px) {
  .hero-aulas-futebol-americano .hero-bg.desktop-bg {
    display: none;
  }
  .hero-aulas-futebol-americano .hero-bg.mobile-bg {
    display: block;
  }
}

/* =====================================================
   [BLOCO] Unidades & Horários (com ícones em PNG)
   ===================================================== */
.units-schedule-section {
  font-family: "Syne", sans-serif; /* se ainda não estiver no global */
  /* ===== UNIDADES (coluna esquerda) ===== */
  /* ===== HORÁRIOS (coluna direita) ===== */
  /* Accordion Bootstrap customizado */
  /* 2) Quando o botão estiver em foco (quando clicado ou tabulado),
        remover o contorno azul padrão e manter o fundo laranja */
  /* 3) Se quiser que, mesmo quando estiver “collapsed” (fechado), 
        ao fazer hover, o fundo fique laranja (opcional): */
  /* 4) Ajustar a barra lateral que aparece em .horario-entry (opcional) */
  /* Remover padding padrão do corpo do collapse */
  /* Cada entrada de horário */
  /* Em telas muito pequenas, reduz um pouco o tamanho das fontes */
}
.units-schedule-section .highlight {
  color: #ff8c22;
  font-weight: 700;
  font-size: 13px;
}
.units-schedule-section .niv-title {
  font-size: 1.125rem;
  text-transform: uppercase;
}
.units-schedule-section .niv-title .bar-left {
  width: 4px;
  height: 1.5rem;
  background: #ff8c22;
}
.units-schedule-section .niv-badge {
  cursor: pointer;
  --bs-bg-opacity: .85;
}
.units-schedule-section .niv-badge:hover, .units-schedule-section .niv-badge:focus {
  opacity: 1;
}
.units-schedule-section .unidades-col {
  padding: 2rem 1.5rem;
}
.units-schedule-section .unidades-header {
  display: flex;
  align-items: flex-start;
}
.units-schedule-section .bar-left {
  display: inline-block;
  width: 4px;
  background-color: #ff8c22; /* laranja Caniballs */
  margin-top: 0.25rem; /* posição vertical em relação ao texto */
  height: 7rem; /* altura da barrinha (ajuste se necessário) */
}
.units-schedule-section .unidades-titles .label-small {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
}
.units-schedule-section .unidades-titles .unidades-h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}
.units-schedule-section .unidade-item .unidade-regiao {
  font-size: 0.875rem;
}
.units-schedule-section .unidade-item .unidade-titulo {
  font-size: 1.875rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  color: #222;
}
.units-schedule-section .unidade-item .unidade-endereco {
  font-size: 1rem;
  color: #555;
}
.units-schedule-section .horarios-col {
  padding: 2rem 1.5rem;
}
.units-schedule-section .horarios-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
}
.units-schedule-section .accordion-button {
  font-size: 1.125rem;
  font-weight: 600;
  color: #222;
  padding: 1rem;
  background-color: #f3f3f3;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.units-schedule-section .accordion-button:not(.collapsed) {
  background-color: #ff8c22; /* fundo laranja */
  color: #ffffff; /* texto branco */
}
.units-schedule-section .accordion-button:not(.collapsed)::after {
  filter: invert(100%); /* inverte o ícone “-” / seta para ficar branco */
}
.units-schedule-section .accordion-button:focus {
  box-shadow: none !important; /* remove o “halo” azul padrão */
  background-color: #ff8c22; /* mantém o fundo laranja */
  color: #ffffff; /* mantém o texto branco */
}
.units-schedule-section .accordion-button.collapsed:hover,
.units-schedule-section .accordion-button.collapsed:focus {
  background-color: #ff8c22;
  color: #ffffff;
}
.units-schedule-section .accordion-button:not(.collapsed) + .accordion-collapse .horario-entry {
  border-left-color: #ff8c22; /* já está no exemplo anterior, só reforçando */
}
.units-schedule-section .accordion-item + .accordion-item {
  margin-top: 0.5rem;
}
.units-schedule-section .accordion-body {
  padding: 0;
}
.units-schedule-section .horario-entry {
  border-left: 4px solid transparent; /* antes de expandir, sem borda */
  transition: border-color 0.3s ease;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .units-schedule-section .horario-entry {
    flex-direction: column-reverse;
  }
}
.units-schedule-section .accordion-button:not(.collapsed) + .accordion-collapse .horario-entry {
  border-color: #ff8c22; /* quando o dia está aberto, destaca em laranja */
}
.units-schedule-section .horario-entry .icone img {
  display: block;
  width: 24px;
  height: 24px;
}
.units-schedule-section .horario-entry .info {
  flex-wrap: wrap;
}
.units-schedule-section .info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.units-schedule-section .horario-text {
  padding-right: 1rem;
  border-right: 1px solid black;
  width: 190px;
  margin-right: 1rem;
}
@media (max-width: 768px) {
  .units-schedule-section .horario-text {
    border: none;
    text-align: center;
    padding: 0;
    margin: 0;
  }
}
.units-schedule-section .horario-text small {
  font-size: 0.875rem;
  color: #333;
}
.units-schedule-section .horario-text p {
  margin: 0;
  font-size: 1rem;
  color: #222;
}
.units-schedule-section .atividade-text p {
  margin: 0;
  font-size: 0.9375rem;
  color: #555;
  max-width: 16.875rem;
}
@media (max-width: 575.98px) {
  .units-schedule-section .horarios-title {
    font-size: 2rem;
  }
  .units-schedule-section .accordion-button {
    font-size: 1rem;
  }
  .units-schedule-section .horario-text p {
    font-size: 0.9375rem;
  }
  .units-schedule-section .atividade-text p {
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .units-schedule-section .btn-orange_wrapper {
    width: 100%;
  }
}
.units-schedule-section .btn-orange {
  background: #ff8c22;
  color: #fff;
  border: none;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  width: 100%;
}
@media (max-width: 768px) {
  .units-schedule-section .btn-orange {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.units-schedule-section .btn-orange:hover, .units-schedule-section .btn-orange:focus {
  background: rgb(248.2, 119.0461538462, 0);
  color: #fff;
}

/* ======================================================================
   Multi‐Carousel Infinito + Drag (4 col. no desktop, 3 no sm, 2 no xs)
   ====================================================================== */
.multi-carousel-container {
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding: 0;
  /* Viewport: área visível; esconde as imagens “extras” */
  /* Track: conterá TODOS os itens (originais + clones) */
  /* Cada item: sem padding horizontal para não criar gaps extras */
  /* Imagens dentro dos itens */
  /* Zoom suave ao passar o mouse */
  /* As setas do Bootstrap, invertidas para branco */
  /* Botões Prev/Next */
  /* Posicionamento absoluto das setas */
  /* Desabilitando a seleção de texto e definindo cursor “grab” no track */
  /* Responsividade: já coberta pelas classes Bootstrap:
     - col-6 (2 colunas) em <576px
     - col-sm-4 (3 colunas) em ≥576px
     - col-md-3 (4 colunas) em ≥768px
     */
}
.multi-carousel-container .multi-carousel-viewport {
  overflow: hidden;
  width: 100%;
}
.multi-carousel-container .multi-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}
.multi-carousel-container .multi-carousel-item {
  padding: 0;
}
.multi-carousel-container .multi-carousel-item .carousel-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* cobre todo o container sem distorcer */
  transition: transform 0.3s ease;
  user-select: none; /* evita seleção de texto ao arrastar */
  pointer-events: none; /* para que o clique sempre caia no item pai */
}
.multi-carousel-container .multi-carousel-item:hover .carousel-img {
  transform: scale(1.05);
}
.multi-carousel-container .multi-carousel-container .carousel-control-prev-icon,
.multi-carousel-container .multi-carousel-container .carousel-control-next-icon {
  filter: invert(100%);
}
.multi-carousel-container .multi-carousel-prev,
.multi-carousel-container .multi-carousel-next {
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.multi-carousel-container .multi-carousel-prev:hover,
.multi-carousel-container .multi-carousel-next:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.multi-carousel-container .multi-carousel-prev {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.multi-carousel-container .multi-carousel-next {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.multi-carousel-container .multi-carousel-track {
  cursor: grab;
}
.multi-carousel-container .multi-carousel-track.dragging {
  cursor: grabbing;
}

/* ============================================================
   Bloc o “Nossa Tribo – Eu Sou a Coragem” (3 vídeos lado a lado)
   ============================================================ */
.tribo-videos {
  background: #fafafa; /* Cor de fundo do bloco; pode ser ajustada */
}

/* Wrapper do título */
.tribo-videos__title-wrapper {
  position: relative;
  padding-left: 1rem; /* Espaço para a barrinha */
  margin-bottom: 1rem;
}

/* Barrinha vertical à esquerda do título */
.tribo-videos__title-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 4px;
  height: calc(100% - 0.5em);
  background: #ff6600; /* laranja Caniballs */
}

/* Subtítulo pequeno acima do H2 */
.tribo-videos__subtitle {
  display: block;
  font-size: 1.5rem; /* 14px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #333;
  margin-bottom: 0.25rem;
}

/* Título principal */
.tribo-videos__title {
  font-size: 3.5rem; /* 40px */
  line-height: 1.1;
  font-weight: 700;
  color: #222;
  margin: 0;
}

/* Destaque em laranja dentro do título */
.tribo-videos__title .highlight {
  color: #ff6600;
}

/* Espaçamento entre título e vídeos */
.tribo-videos .row + .row {
  margin-top: 1.5rem;
}

/* Wrapper de cada vídeo */
.tribo-videos__video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #000; /* fundo escuro antes do poster carregar */
}

/* Estilização do <video> HTML5 */
.tribo-videos__video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Zoom leve ao passar o mouse */
.tribo-videos__video-wrapper:hover .tribo-videos__video {
  transform: scale(1.05);
}

/* Se quiser forçar altura fixa (todos os vídeos iguais), 
   descomente este bloco e ajuste a altura desejada (ex.: 300px) */
.tribo-videos__video-wrapper {
  height: 600px;
}
.tribo-videos__video-wrapper .ratio {
  height: 100%;
}

/*
.tribo-videos__video {
    height: 100%;
}
*/
/* Ajustes de responsividade adicionais (caso queira) */
@media (max-width: 575.98px) {
  .tribo-videos__title {
    font-size: 2rem;
  }
}
.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  width: 100%;
  background: #000;
  padding: 10px 0 20px;
  transition: top 0.3s ease;
}
.site-header.header-hidden {
  transform: translateY(-100%);
}
.site-header.header-visible {
  transform: translateY(0);
}
.site-header .navbar-brand {
  color: #ff8c22;
  transition: transform 0.5s;
}
.site-header .navbar-brand:hover {
  transform: scale(1.1);
}
.site-header .navbar-nav > .nav-item > .nav-link {
  color: #fff !important;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 1550px) {
  .site-header .navbar-nav > .nav-item > .nav-link {
    font-size: 14px;
  }
}
@media (max-width: 1450px) {
  .site-header .navbar-nav > .nav-item > .nav-link {
    font-size: 12px;
  }
}
@media (max-width: 1310px) {
  .site-header .navbar-nav > .nav-item > .nav-link {
    font-size: 10px;
  }
}
.site-header .navbar-nav > .nav-item > .nav-link.active, .site-header .navbar-nav > .nav-item > .nav-link:hover {
  color: #ff8c22 !important;
}
.site-header .navbar-nav > .nav-item > .nav-link.active::after, .site-header .navbar-nav > .nav-item > .nav-link:hover::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ff8c22;
}
.site-header .dropdown-menu {
  background: #000;
  border: 0;
}
.site-header .dropdown-menu .dropdown-item {
  color: #fff !important;
  font-weight: 700;
}
.site-header .dropdown-menu .dropdown-item:hover {
  background: #ff8c22;
  color: #000 !important;
}
.site-header .dropdown-menu .dropdown-item.active {
  background: #ff8c22;
  color: #000 !important;
}
.site-header .navbar-toggler-icon {
  filter: invert(63%) sepia(83%) saturate(620%) hue-rotate(350deg);
}
@media (max-width: 991.98px) {
  .site-header .navbar-collapse .dropdown-menu {
    position: static;
  }
}
@media (min-width: 992px) {
  .site-header .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
  }
  .site-header .navbar-nav {
    gap: 1rem;
  }
}
.site-header .margin-header {
  margin: 0 1rem;
}
@media (min-width: 768px) {
  .site-header .margin-header {
    margin: 0 15%;
  }
}

.site-footer {
  background: #000;
  color: #fff;
  font-size: 0.875rem;
}
.site-footer__top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .site-footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 4rem 2rem;
  }
}
.site-footer .footer-logo img {
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .site-footer .footer-logo img {
    margin: 0;
  }
}
.site-footer .footer-nav,
.site-footer .footer-contact {
  flex: 1;
}
.site-footer .footer-nav h4,
.site-footer .footer-contact h4 {
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.site-footer .footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-nav ul li {
  margin-bottom: 0.5rem;
}
.site-footer .footer-nav ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer .footer-nav ul li a:hover {
  color: #ff8c22;
}
.site-footer .footer-contact .contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.site-footer .footer-contact .contact-list li {
  margin-bottom: 0.5rem;
}
.site-footer .footer-contact .contact-list a {
  text-decoration: none;
  font-weight: 600;
  color: white;
  transition: all 0.2s ease;
}
.site-footer .footer-contact .contact-list a:hover {
  color: #ff8c22;
}
.site-footer .footer-contact .social-icons {
  display: flex;
  gap: 1rem;
}
.site-footer .footer-contact .social-icons a {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}
.site-footer .footer-contact .social-icons a:hover {
  color: #ff8c22;
}
.site-footer .footer-contact .social-icons a i {
  display: block;
}
.site-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 2rem;
  }
}
.site-footer__bottom .privacy-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer__bottom .privacy-link:hover {
  color: rgb(255, 255, 255);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.whatsapp-float img {
  width: 32px;
  height: 32px;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
  }
  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}

/*# sourceMappingURL=style.css.map */
