
:root {
  --primary-color:        #FF9800;
  --white-color:          #ffffff;
  --dark-color:           #0C54C9;

  --clear-color:          #0088e2;
  --about-bg-color:       #f2f2f2;

  --gray-color:           #909090;
  --link-color:           #404040;
  --p-color:              #666262;

  --base-font-family:     'Plain', sans-serif;
  --font-weight-bold:     bold;
  --font-weight-normal:   normal;
  --font-weight-light:    300;
  --font-weight-thin:     100;

  --h1-font-size:         48px;
  --h2-font-size:         36px;
  --h3-font-size:         28px;
  --h4-font-size:         24px;
  --h5-font-size:         22px;
  --h6-font-size:         22px;
  --p-font-size:          18px;
  --base-font-size:       16px;
  --menu-font-size:       14px;
  --border-radius-large:  100%;
  --border-radius-small:  2px;
}

/* Estilo da camada de fundo */
.bg-overlay {
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Cores de gradiente melhoradas */
.banner-01,
.banner-02,
.banner-03 {
  background: linear-gradient(90deg, #00319b 0%, #0088e2 50%, #00368d 100%);
  background-size: 250% 250%;
  animation: gradientMove 8s infinite ease-in-out, pulseOpacity 6s infinite ease-in-out;
  will-change: background-position, opacity;
  transition: all 0.5s ease-in-out;
}

/* Efeito de hover */
.banner-01:hover,
.banner-02:hover,
.banner-03:hover {
  background-size: 200% 200%;
  animation: glowEffect 1.5s infinite alternate ease-in-out;
}

.carousel-inner {
  width: 100vw;
}

.carousel-item {
  display: flex !important;
  align-items: center !important; 
  justify-content: flex-start !important; 
  text-align: left !important;
}


/*
---------------------------------------
MODAL              
---------------------------------------
*/

.modal-content {
  padding: 2rem 3rem;
}

.modal-header,
.modal-body,
.modal-footer {
  border: 0;
  padding: 0;
}

.membership-form a {
  color: var(--primary-color);
}

/*---------------------------------------
FEATURE          
-----------------------------------------*/

.feature {
  background: var(--dark-color);
  padding: 5rem 0;
}

.feature p {
  color: var(--about-bg-color);
}

.feature a:hover {
  transition: 0.2s ease-in;
}

.feature a:hover {
  color: var(--about-bg-color);
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/*
---------------------------------------
 HERO (Carousel)              
-----------------------------------------
*/

.hero {
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: relative;
}

.btn-carousel span {
  opacity: 0;
  color: #fff !important;
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

/* Botão personalizado */
.custom-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.custom-btn:hover {
  background-color: darken(var(--primary-color), 10%);
}

.carousel-indicators {
  height: 12%;
}

/* Estilo do ícone de baixar página */
.baixarPagina {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 20px;
}

.baixarPagina a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white-color);
  outline: none;
  animation: pulse 1.5s infinite;
  transition: color 0.3s ease;
}

.baixarPagina a:hover {
  color: var(--primary-color);
}

.baixarPagina a::before {
  content: "▼";
  display: block;
  font-size: 2rem;
}

/* Animação de pulsar */
@keyframes pulse {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.7; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Efeito de fade para títulos */
.fade-h1 {
  opacity: 0;
  text-transform: capitalize;
  position: absolute;
  transition: opacity 2s ease-in-out;
}

.fade-h1.active {
  opacity: 1;
  position: relative;
}

.carousel-item {
  height: 90vh; 
}

/* Ajustes para os controles do carrossel */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  color: white;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/*
---------------------------------------
Class               
-----------------------------------------
*/

/* Estilos do Card */
.class-thumb {
  border-radius: 0 0 2px 2px;
  padding: 1rem 2rem;
  position: relative;
  display: block;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.class-thumb img {
  width: 23%;
  margin-bottom: 10px;
}

.class-info {
  background: var(--white-color);
  text-align: justify;
}

.class-info h3 {
  font-size: 20px;
  font-weight: normal;
  text-align: justify;
}

/* Elemento de Preço (opcional) */
.class-price {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  display: block;
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  text-align: center;
}

/*
---------------------------------------
Produtos            
-----------------------------------------
*/

.services-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.service-icon img {
  width: 30%;
  margin-bottom: 20px;
  border-radius: 10%;
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.service-content .badge {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 5px 10px;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 1rem;
  color: #666;
}

.btn-outline-primary {
  margin-top: 15px;
}

/*---------------------------------------
 SCHEDULE             
-----------------------------------------*/

.schedule {
  background: var(--dark-color);
}

.schedule-table {
  display: table;
  border: 0;
  text-align: center;
}

.schedule-table strong,
.schedule-table span {
  display: block;
  text-align: center;
}

.schedule-table strong {
  color: var(--white-color);
}

.schedule-table span {
  color: var(--gray-color);
}

.schedule-table span,
.schedule-table small {
  font-size: var(--menu-font-size);
  text-transform: uppercase;
}

.schedule-table small {
  position: relative;
  top: 10px;
}

.table .thead-light th,
.schedule-table tr td:first-child {
  background: var(--primary-color);
  border: 1px solid #212122;
  color: var(--white-color);
}

.schedule-table .thead-light th {
  border-bottom: 0;
  text-transform: uppercase;
}

.table-bordered td, 
.table-bordered th {
  border: 1px solid #212122;
}

.table-bordered td {
  padding-bottom: 22px;
}

.table td, .table th {
  padding: 1rem;
}


/*---------------------------------------
  ABOUT & TEAM            
-----------------------------------------*/

.about {
  background: var(--about-bg-color);
}

.about-working-hours {
  border-left: 2px solid;
  padding-left: 3.5rem;
}

.about-working-hours strong {
  color: var(--white-color);
  opacity: 0.85;
}

.team-thumb {
  position: relative;
  border-radius: 20px;
}

.team-info {
  background: var(--white-color);
  border-radius: 0 0 2px 2px;
  box-shadow: 6px 0 38px rgba(20,20,20,0.10);
  padding: 20px;
  position: relative;
  text-align: justify;
}

.team-info span {
  font-weight: var(--font-weight-light);
  opacity: 0.85;
}

.team-info .social-icon {
  position: absolute;
  top: 10px;
  right: 20px;
}

.team-info .social-icon li {
  display: block;
}
