/* Fonts */
:root {
  --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

:root {
  --background-color: #53956f;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #2ecc71;
  --surface-color: #2c6a3fa4;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #ffffff;
  --nav-hover-color: #2ecc71;
  --nav-mobile-background-color: #1a472a;
  --nav-dropdown-background-color: #2c6a3f;
  --nav-dropdown-color: #ffffff;
  --nav-dropdown-hover-color: #2ecc71;
}



.light-background {
  --background-color: #2c6a3f;
  --surface-color: #1a472a;
}

.dark-background {
  --background-color: #0f2b19;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1a472a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}



/*--------------------------------------------------------------
# Photo Gallery Section
--------------------------------------------------------------*/


/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Estilo base para itens do calendário */
.calendar-list li {
  position: relative;
  padding: 8px 10px;
  margin-bottom: 6px;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap; /* Nunca quebra linha */
  overflow: hidden; /* Esconde conteúdo que ultrapassar */
}

/* Estilo para a próxima gira */
.calendar-list li.next-gira {
  background-color: rgba(255, 215, 0, 0.15);
  border-left: 3px solid #ffc107;
  font-weight: 500;
  padding-left: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.calendar-list li.next-gira:hover {
  background-color: rgba(255, 215, 0, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* Animação de pulso para o indicador */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* Estilo para o próximo dia sem gira */
.calendar-list li.next-no-gira {
  background-color: rgba(255, 200, 200, 0.15);
  border-left: 3px solid #dc3545;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  font-weight: 500;
  padding-left: 15px;
}

.calendar-list li.next-no-gira:hover {
  background-color: rgba(255, 200, 200, 0.25);
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}


/* Estilo para o indicador de cancelamento */
.no-gira-indicator {
  display: inline-block;
  color: #ffffff;
  font-size: 0.55em;
  background-color: #f50c1f;
  padding: 2px 4px;
  border-radius: 3px;
  margin-left: 5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  animation: pulse 1s infinite ease-in-out;
  flex-shrink: 0; /* Impede que o indicador encolha */
  
  /* Animação de aparecimento com atraso */
  opacity: 0;
  animation: pulse 1s infinite ease-in-out, fadeIn 0.5s forwards 1.2s;
}

.no-gira-indicator::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 1px solid #dc3545;
  border-radius: 5px;
  animation: rotate-border 2s linear infinite;
}

@keyframes rotate-border {
  0% {
    clip-path: inset(0 0 98% 0);
  }
  25% {
    clip-path: inset(0 0 0 98%);
  }
  50% {
    clip-path: inset(98% 0 0 0);
  }
  75% {
    clip-path: inset(0 98% 0 0);
  }
  100% {
    clip-path: inset(0 0 98% 0);
  }
}

/* Para telas pequenas */
@media (max-width: 576px) {
  .no-gira-indicator, .next-gira-indicator {
    font-size: 0.45em !important;
    padding: 2px 3px;
    min-width: 40px;
    text-align: center;
  }
}

/* Estilo para o dia em dias sem gira */
.no-gira .gira-day {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  background-color: #dc3545; /* Vermelho para dias sem gira */
}

/* Estilo para o dia no próximo dia sem gira */
.next-no-gira .gira-day {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  background-color: #dc3545; /* Vermelho para o próximo dia sem gira */
}
  /* Estilo para o indicador da próxima gira */
  .next-gira-indicator {
    display: inline-block;
    color: #000000;
    font-size: 0.55em;
    background-color: #2bff00;
    padding: 2px 4px;
    border-radius: 3px;
    margin-left: 5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    animation: pulse 1s infinite ease-in-out, fadeIn 0.5s forwards 0.8s, glow 1.5s infinite alternate;
    flex-shrink: 0; /* Impede que o indicador encolha */
    opacity: 0; /* Começa invisível para a animação */
    box-shadow: 0 0 10px rgba(1, 26, 7, 0.7), 0 0 20px rgba(3, 36, 11, 0.5), 0 0 30px rgba(2, 48, 13, 0.3);
  }

  .next-gira-indicator::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 1px solid #003304;
    border-radius: 5px;
    animation: rotate-border 2s linear infinite;
  }

  @keyframes rotate-border {
    0% {
      clip-path: inset(0 0 98% 0);
    }
    25% {
      clip-path: inset(0 0 0 98%);
    }
    50% {
      clip-path: inset(98% 0 0 0);
    }
    75% {
      clip-path: inset(0 98% 0 0);
    }
    100% {
      clip-path: inset(0 0 98% 0);
    }
  }

 
/* Layout para o conteúdo da gira */
.gira-text {
  flex-grow: 1;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  min-width: 0; /* Importante para permitir que o texto seja truncado */
  overflow: hidden;
}

/* Estilo para o dia da gira */
.gira-day {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  display: inline-block;
  min-width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  background-color: var(--accent-color);
  color: rgb(255, 255, 255);
  border-radius: 50%;
  margin-right: 10px;
  font-weight: bold;
  font-size: 1rem;
  flex-shrink: 0; /* Impede que o dia encolha */
}

.next-gira .gira-day {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  background-color: var(--accent-color);
}

/* Estilo para o nome da gira */
.gira-name {
  font-weight: 500;
  margin-right: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0; /* Permite truncamento */
}

/* Estilo para informação de Amalá */
.gira-amala {
  display: inline-flex;
  align-items: center;
  font-size: 0.65em;
  color: #e3ebf1;
  background-color: rgba(108, 117, 125, 0.1);
  padding: 1px 6px;
  border-radius: 3px;
  font-style: italic;
  margin-right: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1; /* Permite que encolha se necessário */
}

/* Regras para telas médias e pequenas */
@media (max-width: 768px) {
  .gira-name {
    max-width: 120px; /* Limita o tamanho do nome em telas médias */
  }
  
  .gira-amala {
    max-width: 100px; /* Limita o tamanho do Amalá em telas médias */
  }
}

/* Para telas pequenas */
@media (max-width: 576px) {
  .calendar-list li {
    padding-right: 4px; /* Reduz o padding para economizar espaço */
    flex-wrap: nowrap; /* Mantém tudo em uma linha */
    overflow-x: auto; /* Permite rolagem horizontal se necessário */
    -webkit-overflow-scrolling: touch; /* Rolagem suave em dispositivos iOS */
    scrollbar-width: none; /* Esconde a barra de rolagem no Firefox */
  }
  
  .calendar-list li::-webkit-scrollbar {
    display: none; /* Esconde a barra de rolagem no Chrome/Safari */
  }
  
  .gira-text {
    flex-wrap: nowrap; /* Mantém o conteúdo em uma linha */
    overflow-x: visible; /* Permite que o conteúdo seja visível além do container */
    min-width: auto; /* Permite que cresça conforme necessário */
  }
  
  .gira-day {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    min-width: 25px; /* Dia ligeiramente menor */
    height: 25px;
    line-height: 25px;
    font-size: 1rem;
    margin-right: 6px;
  }
  
  .gira-name {
    max-width: none; /* Remove a limitação de largura */
    white-space: nowrap; /* Impede quebra de linha */
    overflow: visible; /* Permite que o texto seja visível além do container */
    text-overflow: clip; /* Não trunca o texto */
    font-size: 0.9em;
  }
  
  .gira-amala {
    max-width: none; /* Remove a limitação de largura */
    white-space: nowrap; /* Impede quebra de linha */
    overflow: visible; /* Permite que o texto seja visível além do container */
    font-size: 0.60em;
    padding: 1px 4px;
  }
  
  .next-gira-indicator {
    font-size: 0.5em;
    padding: 2px 3px;
    min-width: 40px;
    text-align: center;
    flex-shrink: 0; /* Impede que o indicador encolha */
  }
}
/* Estilo para o dia de hoje com gira */
.calendar-list li.today-gira {
  background-color: rgba(200, 255, 200, 0.15);
  border-left: 3px solid #28a745;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  font-weight: 500;
  padding-left: 15px;
}

.calendar-list li.today-gira:hover {
  background-color: rgba(200, 255, 200, 0.25);
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* Estilo para o dia de hoje sem gira */
.calendar-list li.today-no-gira {
  background-color: rgba(255, 200, 200, 0.15);
  border-left: 3px solid #dc3545;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  font-weight: 500;
  padding-left: 15px;
}

.calendar-list li.today-no-gira:hover {
  background-color: rgba(255, 200, 200, 0.25);
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* Estilo para o indicador "É HOJE!" */
.today-gira-indicator {
  display: inline-block;
  color: #0d180d;
  font-size: 0.55em;
  background-color: #04ff3e;
  padding: 2px 4px;
  border-radius: 3px;
  margin-left: 5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid #015c01;
  text-transform: uppercase;
  white-space: nowrap;
  animation: pulse 1s infinite ease-in-out, fadeIn 0.5s forwards 0.8s, glow 1.5s infinite alternate;
  flex-shrink: 0; /* Impede que o indicador encolha */
  opacity: 0; /* Começa invisível para a animação */
  box-shadow: 0 0 10px rgba(4, 255, 62, 0.7), 0 0 20px rgba(4, 255, 62, 0.5), 0 0 30px rgba(4, 255, 62, 0.3);
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(4, 255, 62, 0.7), 0 0 20px rgba(4, 255, 62, 0.5), 0 0 30px rgba(4, 255, 62, 0.3);
  }
  to {
    box-shadow: 0 0 15px rgba(4, 255, 62, 0.9), 0 0 25px rgba(4, 255, 62, 0.7), 0 0 35px rgba(4, 255, 62, 0.5);
  }
}

/* Estilo para o indicador "HOJE CANCELADA" */
.today-no-gira-indicator {
  display: inline-block;
  color: #0d180d;
  font-size: 0.55em;
  background-color: #dc3545;
  padding: 2px 4px;
  border-radius: 3px;
  margin-left: 5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid #585758;
  animation: pulse 1s infinite ease-in-out, fadeIn 0.5s forwards 0.8s, glow-red 1.5s infinite alternate;
  flex-shrink: 0; /* Impede que o indicador encolha */
  opacity: 0; /* Começa invisível para a animação */
  box-shadow: 0 0 10px rgba(220, 53, 69, 0.7), 0 0 20px rgba(220, 53, 69, 0.5), 0 0 30px rgba(220, 53, 69, 0.3);
}

@keyframes glow-red {
  from {
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.7), 0 0 20px rgba(220, 53, 69, 0.5), 0 0 30px rgba(220, 53, 69, 0.3);
  }
  to {
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.9), 0 0 25px rgba(220, 53, 69, 0.7), 0 0 35px rgba(220, 53, 69, 0.5);
  }
}
/* Estilo para o dia no dia de hoje com gira */
.today-gira .gira-day {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  background-color: #28a745; /* Verde para o dia de hoje com gira */
  animation: pulse 1s infinite ease-in-out;
}

/* Estilo para o dia no dia de hoje sem gira */
.today-no-gira .gira-day {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  background-color: #dc3545; /* Vermelho para o dia de hoje sem gira */
  animation: pulse 1s infinite ease-in-out;
}

/* Animação de pulsação */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.09);
  }
  100% {
    transform: scale(1);
  }
}

/* Animação de aparecimento */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Para telas pequenas */
@media (max-width: 576px) {
  .today-gira-indicator, .today-no-gira-indicator {
    font-size: 0.45em !important;
    padding: 2px 3px;
    min-width: 40px;
    text-align: center;
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;

}

.header .logo img {
  box-shadow: -1px 1px 10px 3px rgba(245, 245, 245, 0.774);
  max-height: 70px;
  border-radius: 50%;
}


.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);

}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;

  }

  .navmenu li {

    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 14px 20px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;

  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.4s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {

    color: #126b00;
    text-shadow: #FFF 1px 0 10px;
    transform: scale(1.1);
    /* Aumenta o tamanho em 10% */
    transition: transform 0.3s ease;
  }


  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 40%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown .span {
    font-size: 20px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #126b00;
    text-shadow: #FFF 1px 0 10px;

  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 30px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 2px 2px 80px 40px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    text-align: center;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 20px 20px;
    font-family: var(--nav-font);
    font-size: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: 0.3s;
    text-align: center;
  }

  .navmenu .dropdown span {
    font-size: 25px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--background-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--background-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #126b00;
    text-shadow: #FFF 1px 0 10px;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--background-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 60px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(245, 245, 245, 0.336);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Container dos ícones de redes sociais */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  /* Espaço entre os ícones */
}

/* Estilo base para os links */
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: transparent;
  color: var(--default-color);
  font-size: 2.8rem;
  border: 2px solid var(--default-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Efeito de hover genérico */
.social-links a:hover {
  transform: translateY(-5px);
  /* Levantar o ícone */
  box-shadow: -1px 1px 10px 3px rgba(245, 245, 245, 0.774);
}

/* Cores e efeitos personalizados para cada rede social */

/* Facebook */
.social-links a.facebook:hover {
  background-color: #1877f2;
  color: #fff;
  border-color: #1877f2;
}

/* Instagram */
.social-links a.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  color: #fff;
  border-color: #e4405f;
}

/* YouTube */
.social-links a.youtube:hover {
  background-color: #ff0000;
  color: #fff;
  border-color: #ff0000;
}

/* TikTok */
.social-links a.tiktok:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

/* Css para o footer das páginas segundarias */


/* Ícones de redes sociais no footer */
.footer-social-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  /* Espaço entre os ícones */
  margin-top: 20px;
  /* Espaço acima dos ícones */
  margin-right: 20px;
  /* Espaço da direita */
}

.footer-social-links h3 {
  margin-top: 10px;
  margin-right: 20px;
  text-align: right;
  color: var(--default-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Estilo base para os links no footer */
.footer-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  color: var(--default-color);
  font-size: 2rem;
  border: 2px solid var(--default-color);
  transition: all 0.3s ease;
  text-decoration: none;
  /* Remove o sublinhado */
}

/* Efeito de hover genérico */
.footer-social-links a:hover {
  transform: translateY(-5px);
  /* Levantar o ícone */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  /* Sombra suave */
}

/* Cores e efeitos personalizados para cada rede social no footer */

/* Facebook */
.footer-social-links a.facebook:hover {
  background-color: #1877f2;
  color: #fff;
  /* Texto branco ao passar o mouse */
  border-color: #1877f2;
}

/* Instagram */
.footer-social-links a.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  color: #fff;
  /* Texto branco ao passar o mouse */
  border-color: #e4405f;
}

/* YouTube */
.footer-social-links a.youtube:hover {
  background-color: #ff0000;
  color: #fff;
  /* Texto branco ao passar o mouse */
  border-color: #ff0000;
}

/* TikTok */
.footer-social-links a.tiktok:hover {
  background-color: #000;
  color: #fff;
  /* Texto branco ao passar o mouse */
  border-color: #000;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* Footer */
.footer {
  color: var(--default-color);
  background-color: var(--nav-dropdown-background-color);
  font-size: 14px;
  padding: 20px 0;
  width: 100%;
}

.footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.footer .footer-left {
  text-align: left;
  margin-left: 20px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.footer .footer-left .logo-footer img {
  margin-top: 1rem;
  margin-left: 1rem;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  box-shadow: -1px 1px 10px 3px rgba(245, 245, 245, 0.774);
}

.footer .footer-contact {
  margin-left: 20px;
  margin-top: 1rem;
}

.footer .footer-contact p {
  font-size: 14px;
  font-family: var(--heading-font);
  margin: 0;
}

.footer .footer-contact a.email-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .footer-contact a.email-link:hover {
  color: var(--accent-color);
}

/* Rodapé Inferior (Copyright e Créditos) */
.footer .footer-references {
  margin-top: 1rem;
  font-size: 18px;
  color: var(--default-color);
  text-align: center;
  flex: 1;
}
.footer .footer-references p {
  margin: 0;
  font-size: 14px;
  font-family: var(--heading-font);
  opacity: 0.9;
}

.footer .footer-references div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer .footer-references div span {
  font-family: var(--heading-font);
  font-size: 14px;
  opacity: 0.9;
}



.footer .footer-references div a.developer-link {
  color: var(--default-color);
  font: 1em sans-serif;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
  
  display: inline-block;
}

.footer .footer-references div a.developer-link:hover {
  color: var(--accent-color);
}.footer .footer-references div i.bi-code-slash {
  font-size: 15px;
  color: var(--default-color);
}
/* gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-links {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-links {
  opacity: 1;
}

.gallery-links a {
  color: #fff;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.gallery-links a:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

/*--------------------------------------------------------------# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --default-color: var(--contrast-color);
  --background-color: var(--accent-color);
  --heading-color: var(--contrast-color);
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--accent-color) 90%, black 5%);
  padding: 20px 0;
}

.page-title nav a {
  color: var(--default-color);
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------itle
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 900px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: var(--nav-font);
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.welcome-title {
  color: var(--default-color);
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: center;
}

.welcome-subtitle {
  color: var(--default-color);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: center;
}


.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: 0.4s;
  margin-top: 30px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.About-Image{
  width: 500px;
  height: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 10px 4px 4px 3px rgba(0, 0, 0, 0.158);}
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 24px 12px 24px;
  border-radius: 50px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Counts Section
--------------------------------------------------------------*/
.counts {
  padding: 25px 0;
}

.counts .stats-item {
  padding: 30px;
  width: 100%;
}

.counts .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--accent-color);
  font-weight: 700;
}

.counts .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
}

.why-us .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}

.why-us .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .icon-box i {
  color: var(--accent-color);
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.why-us .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .icon-box:hover i {
  color: var(--contrast-color);
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding: 10px 0;
}

.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

.accordion {
  padding: 1rem;
  background-color: var(--background-color);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.accordion-button {
  font-size: 1.1rem;
  padding: 15px 20px;
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid var(--accent-color);
  border-radius: 5px;
  width: 100%;
  text-align: left;
  transition: background-color 0.3s ease;
}

.accordion-button:hover {
  background-color: var(--background-color);
  color: var(--accent-color);
}

.accordion-button.collapsed {
  background-color: var(--surface-color);
  color: #fff;
}

.accordion-button.collapsed:hover {
  background-color: var(--accent-color);
  color: #ffffff;
}

.accordion-body {
  font-size: 1.1rem;
  color: #ffffff;
  padding: 20px;
  background-color: var(--background-color);
  border-top: 1px solid var(--accent-color);
}

.accordion-item {
  margin-bottom: 15px;
}

.accordion-collapse {
  border-top: 1px solid var(--accent-color);
}

/* Accordion Item for active state */
.accordion-button:not(.collapsed) {
  background-color: var(--accent-color);
  color: var(--background-color);
}

.accordion-button:not(.collapsed):hover {
  background-color: var(--accent-color);
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Courses Section
--------------------------------------------------------------*/
.courses .course-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 5px;
  box-shadow: -1px 1px 3px 3px rgba(245, 245, 245, 0.774);
}

.courses .course-content {
  padding: 15px;
}

.courses .course-content h3 {
  font-weight: 700;
  font-size: 20px;
}

.courses .course-content h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.courses .course-content h3 a:hover {
  color: var(--accent-color);
}

.courses .course-content .category {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0;
  border-radius: 5px;
}

.courses .course-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .course-content .description {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .trainer {
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.courses .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}

.courses .trainer .trainer-profile .trainer-link {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.courses .trainer .trainer-profile .trainer-link:hover {
  color: var(--accent-color);
}

.courses .trainer .trainer-rank {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.courses .trainer .trainer-rank .user-icon {
  font-size: 22px;
}

/*--------------------------------------------------------------
# Trainers Index Section
--------------------------------------------------------------*/
.trainers-index .member {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  margin-bottom: 20px;
}

.trainers-index .member img {
  margin: -1px -1px 30px -1px;
}

.trainers-index .member .member-content {
  padding: 0 20px 30px 20px;
}

.trainers-index .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.trainers-index .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.trainers-index .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.trainers-index .member .social {
  margin-top: 15px;
}

.trainers-index .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
}

.trainers-index .member .social a:hover {
  color: var(--accent-color);
}

.trainers-index .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-us .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about-us .content ul {
  list-style: none;
  padding: 0;
}

.about-us .content ul li {
  padding-bottom: 10px;
}

.about-us .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about-us .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials span {
  font-size: 1.3rem;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

#adress {
  margin-top: 100px;
}

#adress a {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: center;
}

#adress a:hover {
  color: var(--accent-color);
  transition: 0.3s;
}

#about .about-text {
  margin-top: 2rem;
  font-size: 1.3rem;
  font-weight: 300;
  text-align: center;
}

.courses-course-details {
  padding-bottom: 20px;
}

.courses-course-details h3 {
  font-size: 24px;
  margin: 30px 0 15px 0;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.courses-course-details h3:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  bottom: 0;
  left: 0;
}

.courses-course-details h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.courses-course-details .course-info {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 10px 15px;
  margin-bottom: 15px;
}

.courses-course-details .course-info h5 {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  font-family: var(--nav-font);
}

.courses-course-details .course-info p {
  margin: 0;
  font-weight: 600;
}

.box-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.btn-three {
  width: 200px;
  color: #FFF;
  transition: all 0.5s;
  position: relative;

}

.btn-three::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.btn-three:hover::before {
  opacity: 0;
  transform: scale(0.5, 0.5);
}

.btn-three::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform: scale(1.2, 1.2);
}

.btn-three:hover::after {
  opacity: 1;
  transform: scale(1, 1);
}

.btn-three span {
  font-size: 20px;
}

.courses-course-details .course-info a {
  color: var(--accent-color);
}

@keyframes pulseYoutube {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.btn-youtube {
  background: #fff4f4;
  border: 1px solid #FF0000;
  width: 190px;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  animation: pulseYoutube 2s infinite;
}

.btn-youtube:hover {
  background: #FF0000;
  animation: none;
}

.btn-youtube:hover span {
  color: #fff;
}

.btn-youtube:hover i {
  color: #fff !important;
}

.btn-youtube span {
  color: #FF0000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  gap: 10px;
}

.heading-music {
  margin-top: 2.5rem;
}

.card {
  box-shadow: -1px 1px 3px 3px rgba(245, 245, 245, 0.774);
  color: #fff;
  background-color: var(--surface-color);
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs {
  padding-top: 30;
}

.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  background-color: var(--background-color);
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.tabs .nav-link:hover {
  color: var(--accent-color);
}

.tabs .nav-link.active {
  background-color: var(--surface-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.tabs .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.tabs .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tabs .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs .details p:last-child {
  margin-bottom: 0;
}

/* Container principal */
.container-conhecimentos {
  margin-top: 3rem;
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Card de entidade */
.entity-card {
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 1.5rem;
  background: var(--surface-color);
  overflow: hidden;
}

.entity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Imagem customizada */
.custom-img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backface-visibility: hidden;
}

.custom-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Imagem do card */
.card-img-top {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}

/* Corpo do card */
.card-body {
  border-radius: 15px;
  padding: 1.5rem;
  background: var(--surface-color);
}

/* Título do card */
.card-title {
  color: var(--font-geral);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

/* Texto do card */
.card-text {
  color: var(--font-geral);
  line-height: 1.6;
  font-size: 1rem;
  opacity: 0.9;
}


@media (max-width: 992px) {
  .tabs .nav-link {
    border: 0;
    padding: 15px;
  }

  .tabs .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Trainers Section
--------------------------------------------------------------*/
.trainers .member {
  position: relative;
}

.trainers .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .trainers .member .member-img {
    margin: 0 60px;
  }
}

.trainers .member .member-img img {
  position: relative;
  z-index: 1;
}

.trainers .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.trainers .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.trainers .member .member-img .social a:hover {
  color: var(--accent-color);
}

.trainers .member .member-info {
  margin-top: 30px;
}

.trainers .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.trainers .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.trainers .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.trainers .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .card {
  background-color: var(--background-color);
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
}

.events .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.events .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.events .card-body {
  z-index: 10;
  background: var(--surface-color);
  border-top: 4px solid var(--surface-color);
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.events .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.events .card-title a {
  color: var(--default-color);
  transition: 0.3s;
}

.events .card-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events .card:hover img {
  transform: scale(1.1);
}

.events .card:hover .card-body {
  border-color: var(--accent-color);
}

.events .card:hover .card-body .card-title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 8px;
  padding-bottom: 40px;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px 12px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}


#carousel {
  width: 900px;
  height: 600px;
  margin: 0 auto;
  position: relative;
  border-radius: 10px;
  box-shadow: -1px 1px 10px 3px rgba(245, 245, 245, 0.774);
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
}

.carousel-item {
  height: 100%;
  width: 100%;
  position: relative;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-color: var(--accent-color);
  border-radius: 20% 45%;
  padding: 5px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev {
  left: -150px;
}

.carousel-control-next {
  right: -150px;
}

.carousel-control-prev-icon {
  border-radius: 45% 20%;
}

.carousel-control-next-icon {
  border-radius: 20% 45%;
}


/*--------------------------------------------------------------
# Linhas Page Styles
--------------------------------------------------------------*/
.linhas-section {
  padding: 60px 0;
}

.linhas-section .linha-card {
  background-color: var(--surface-color);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.linhas-section .linha-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.linhas-section .linha-title {
  color: var(--heading-color);
  font-size: 24px;
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Orixas Page Styles  
--------------------------------------------------------------*/
.orixas-section {
  padding: 60px 0;
}

.orixas-section .orixa-card {
  background-color: var(--surface-color);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
}

.orixas-section .orixa-image {
  width: 100%;
  height: 250px;
  border-radius: 15px;
  margin: 0 auto 10px;
  overflow: hidden;
}

.orixas-section .orixa-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Container para garantir que o acordeão tenha um escopo único */
.accordion-component .accordion-menu {
  display: inline-block;
  position: relative;
  left: 50%;
  margin: 10px 0;
  transform: translate(-50%, 0);
  width: 100%;
  padding: 10px 20px 20px;
  border-radius: 5px;
}

.accordion-component h2 {
  font-size: 25px;
  line-height: 34px;
  font-weight: 500;
  letter-spacing: 1px;
  display: block;
  margin: 0;
  cursor: pointer;
  color: var(--default-color);
}

.accordion-component p {
  color: var(--default-color);
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  max-height: 800px;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 14px;
  z-index: 2;
  transition: all 0.5s ease;
}

.accordion-component ul {
  list-style: none;
  perspective: 900;
  padding: 0 20px 10px;
  margin: 0;
  background-color: var(--surface-color);
  border-radius: 5px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2),
    0 2px 2px 0 rgba(255, 255, 255, 0.19);
}

.accordion-component ul li {
  position: relative;
  padding: 0;
  margin: 0;
  padding-bottom: 4px;
  padding-top: 18px;
  border-top: 1px dotted #dce7eb;
}

.accordion-component ul li:nth-child(1) {
  border: none;
}

.accordion-component ul li:nth-of-type(1) {
  animation-delay: 0.5s;
}

.accordion-component ul li:nth-of-type(2) {
  animation-delay: 0.75s;
}

.accordion-component ul li:nth-of-type(3) {
  animation-delay: 1.0s;
}

.accordion-component ul li:last-of-type {
  padding-bottom: 0;
}

.accordion-component ul li .arrow {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 16px;
  right: 0;
}

.accordion-component ul li .fas {
  color: var(--accent-color);
  font-size: 15px;
  margin-right: 10px;
}

.accordion-component ul li .arrow:before,
.accordion-component ul li .arrow:after {
  content: "";
  position: absolute;
  background-color: var(--accent-color);
  width: 4px;
  height: 10px;
}

.accordion-component ul li .arrow:before {
  transform: translate(-2px, 0) rotate(45deg);
}

.accordion-component ul li .arrow:after {
  transform: translate(2px, 0) rotate(-45deg);
}

.accordion-component ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}

.accordion-component ul li input[type=checkbox]:checked~p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
  transition: all 0.5s ease;
}

.accordion-component ul li input[type=checkbox]:checked~.arrow:before {
  transform: translate(2px, 0) rotate(45deg);
  transition: all 0.5s ease;
}

.accordion-component ul li input[type=checkbox]:checked~.arrow:after {
  transform: translate(-2px, 0) rotate(-45deg);
  transition: all 0.5s ease;
}

.transition,
.accordion-component p,
.accordion-component ul li .arrow:before,
.accordion-component ul li .arrow:after {
  transition: all 0.5s ease;
}

.flipIn,
h1,
.accordion-component ul li {
  animation: flipdown 0.8s ease both;
}

.no-select,
.accordion-component h2 {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}

.second-accordion {
  display: none;
}

@keyframes flipdown {
  0% {
    opacity: 0;
    transform-origin: top center;
    transform: rotateX(-90deg);
  }

  5% {
    opacity: 1;
  }

  80% {
    transform: rotateX(8deg);
  }

  83% {
    transform: rotateX(6deg);
  }

  92% {
    transform: rotateX(-3deg);
  }

  100% {
    transform-origin: top center;
    transform: rotateX(0deg);
  }
}

/*--------------------------------------------------------------
# Umbanda Page Styles
--------------------------------------------------------------*/
.umbanda-section {
  padding: 60px 0;
}

.umbanda-section .content {
  background-color: var(--surface-color);
  border-radius: 8px;
  padding: 40px;
}

.umbanda-section .section-title {
  margin-bottom: 30px;
}

.umbanda-section .highlight-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 6px;
  margin: 20px 0;
}

.course-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eef0ef;
  margin-bottom: 30px;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.course-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.course-content {
  padding: 20px;
  min-height: 280px;
}

.course-content h3 {
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #5fcf80;
}

.calendar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.calendar-list li {
  padding: 8px 5px;
  border-bottom: 1px solid #eef0ef;
  color: #ffffff;
  font-size: 17px;
}

.calendar-list li:last-child {
  border-bottom: none;
}

.page-title {
  background: var(--surface-color);
  padding: 60px 0;
  margin-bottom: 40px;
}

.page-title h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-title p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}



@media (max-width: 991px) {
  #carousel {
    width: 100%;
    height: 500px;
  }

  .carousel-item {
    height: 500px;
  }
}

@media (max-width: 768px) {
  #carousel {
    height: 400px;
    touch-action: pan-y pinch-zoom;
  }

  .course-content {
    min-height: auto;
  }

  .carousel-item {
    height: 400px;
    
  }
  @media (max-width: 576px) {
    #carousel {
   
      margin-bottom: 1rem;
      height: 250px;
    }

    .carousel-item img {
     
      width: 100%;
      height: 65%;
      object-fit: cover;
      object-position: center center;
      image-rendering: -webkit-optimize-contrast;
    }
  }
    .carousel-control-next-icon,
    .carousel-control-prev-icon {
      width: 40px;
      height: 40px;
      font-size: 14px;
    }

    .welcome-title {
      font-size: 1.4rem;
    }

    .welcome-subtitle {
      font-size: 1.1rem;
    }

    #about .section-title h2 {
      font-size: 1.1rem;
    }

    #about .section-title p {
      font-size: 1.6rem;
    }

    #about .about-text {
      font-size: 1.1rem;
    }

    #adress .section-title h2 {
      font-size: 1.1rem;
    }

    #adress .section-title p {
      font-size: 1.6rem;
    }

    #social .section-title h2 {
      font-size: 1.1rem;
    }

    #social .section-title p {
      font-size: 1.6rem;
    }

    #about-us h3 {
      text-align: center;
      font-size: 1.3rem;
    }

    .fst-italic {
      text-align: center;
    }

    #about-us .span {
      font-size: 1.1rem;
      text-align: center;
    }

    .carousel-control-prev {
      left: 1px;
    }

    .carousel-control-next {
      right: 1px;
    }

    .logo-footer {
      display: none;
    }

    .footer-contact {
      display: none;
    }

    .footer-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      margin-bottom: 10px;
    }

    .footer-references {
     
      padding-top: 1.6rem;
    }

    .footer-references p,
    span {
      font-size: 0.9rem;
    }

    .developer-link {
      font-size: 0.9rem;
    }

    .footer-social-links h3 {
      display: none;
    }

    .social-links a {
      height: 40px;
      width: 40px;
      font-size: 1.5rem;
      margin: 0 10px;
    }

    .accordion-img {
      object-fit: cover;
      width: 100px !important;
      height: 100px !important;
    }

    .accordion-content p {
      font-size: 12px;
    }

    .accordion-content h3 {
      font-size: 14px;
    }

    .title-cordion {
      font-size: 17px !important;
    }

    .scroll-top {
      display: none !important;
    }
    .About-Image{
      margin-top: 1rem;
      width: 100%;
      height: 100%;
    }
   
}
