/* Cor personalizada para o Navbar */
.navbar-nav .nav-link {
  color: var(--senac-bg-light);
}

@media (min-width: 1400px) {
  .navbar-nav .nav-link {
    color: var(--senac-bg-light);
  }
}

/* Cor personalizada para o Breadcrumb */

.breadcrumb-senac .breadcrumb-item a {
  color: var(--senac-bg-light) !important;
}

.breadcrumb-senac .breadcrumb-item a:hover {
  color: var(--senac-bg-light) !important;
}

.breadcrumb-senac .breadcrumb-item.active {
  color: var(--senac-bg-light) !important;
  font-weight: 700;
}

.breadcrumb-senac .breadcrumb-item + .breadcrumb-item::before {
  color: var(--senac-bg-light) !important;
}

/* Cor Personalizada botão search */

.search-icon {
  border: 1px solid var(--senac-bg-light);
  color: var(--senac-bg-light);
}

.search-icon:hover {
  background-color: var(--senac-black-90);
  color: var(--senac-accent-orange-title);
  border: 1px solid var(--senac-accent-orange-title);
}

/* Customs */

hr.custom-hr {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

/* --- Estilos da Seção "INSPIRA+ EM NÚMEROS" --- */
#inspira-numeros {
  padding: 2rem 0;
}

.inspira-stat-card {
  background-color: var(--senac-accent-orange-title);
  color: #fff;
  padding: 1.5rem 1.5rem;
  border-radius: 15px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.inspira-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(242, 146, 34, 0.3);
}

.inspira-stat-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  color: #fff;
  text-transform: uppercase;
}

.inspira-stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center !important;
}

/* Responsividade */
@media (max-width: 991px) {
  .inspira-stat-number {
    font-size: 2.8rem;
  }

  .inspira-stat-card {
    min-height: 160px;
    padding: 1.5rem 1rem;
  }

  .inspira-stat-label {
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .inspira-stat-number {
    font-size: 2.5rem;
  }

  .inspira-stat-card {
    min-height: 160px;
    margin-bottom: 1rem;
  }

  .inspira-stat-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .inspira-stat-number {
    font-size: 2.2rem;
  }

  .inspira-stat-label {
    font-size: 0.95rem;
  }
}

/* --- Estilos para Ícones ODS --- */
.inspira-ods-icons img {
  max-width: 90px;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.inspira-ods-icons img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .inspira-ods-icons img {
    max-width: 70px;
  }
}

@media (max-width: 576px) {
  .inspira-ods-icons img {
    max-width: 60px;
  }
}

/* --- Estilos para Formulário de Contato Inspira+ --- */
.inspira-contact-section {
  background-color: #f8f9fa;
  padding: 3rem 0;
}

.inspira-contact-section h2 {
  color: var(--senac-dark-blue);
  font-weight: 700;
  margin-bottom: 1rem;
}

.inspira-contact-section p {
  color: #6c757d;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.inspira-contact-section .form-control {
  border-radius: 8px;
  border: 1px solid #ced4da;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.inspira-contact-section .form-control:focus {
  border-color: var(--senac-orange);
  box-shadow: 0 0 0 0.2rem rgba(242, 146, 34, 0.25);
}

.inspira-contact-section .form-control::placeholder {
  color: #adb5bd;
}

.inspira-contact-section .btn-submit {
  background-color: var(--senac-orange);
  color: white;
  font-weight: 600;
  padding: 0.75rem 3rem;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.inspira-contact-section .btn-submit:hover {
  background-color: #d97e1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 146, 34, 0.3);
}

.inspira-contact-section .invalid-feedback {
  font-size: 0.875rem;
  color: #dc3545;
}

.inspira-contact-section .form-control.is-invalid {
  border-color: #dc3545;
}

.inspira-contact-section .form-control.is-valid {
  border-color: #28a745;
}

/* --- Estilos para Botões de Ação (Calendário e Reserva) --- */
.inspira-action-buttons {
  margin-top: 2rem;
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-calendario {
  background-color: #6c757d;
  color: white;
  font-weight: 600;
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  border: 2px solid #6c757d;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-calendario:hover {
  background-color: #5a6268;
  border-color: #5a6268;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(108, 117, 125, 0.4);
}

.btn-reserva {
  background-color: var(--senac-primary-blue);
  color: white;
  font-weight: 600;
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  border: 2px solid var(--senac-primary-blue);
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-reserva:hover {
  background-color: #0041c2;
  border-color: #0041c2;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 82, 241, 0.4);
}

/* Responsividade dos botões */
@media (max-width: 768px) {
  .inspira-action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-calendario,
  .btn-reserva {
    padding: 0.65rem 2rem;
    font-size: 0.95rem;
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0;
  }
}

/* --- Estilos para Botões das Cidades (Salas Inspira) --- */
.cidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.btn-cidade {
  background-color: var(--senac-accent-orange-title);
  color: white;
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 2px solid var(--senac-accent-orange-title);
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  box-shadow: 0 2px 8px rgba(241, 90, 36, 0.2);
}

.btn-cidade:hover {
  background-color: #d14d1e;
  border-color: #d14d1e;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(241, 90, 36, 0.4);
}

/* Responsividade do grid de cidades */
@media (max-width: 992px) {
  .cidades-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .cidades-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .btn-cidade {
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    min-height: 55px;
  }
}

@media (max-width: 576px) {
  .cidades-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .btn-cidade {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    min-height: 50px;
  }
}

/* Controle de ícones ODS - espaçamento customizado */
.inspira-ods-icons {
  padding-right: 6px !important;
  padding-left: 6px !important;
  margin-bottom: 12px !important; /* Espaçamento vertical para múltiplas linhas */
}

.inspira-ods-icons img {
  max-width: 80px;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.inspira-ods-icons img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .inspira-ods-icons img {
    max-width: 60px;
  }

  .inspira-ods-icons {
    margin-bottom: 10px !important;
  }
}

@media (max-width: 576px) {
  .inspira-ods-icons {
    margin-bottom: 8px !important;
  }
}
/* Banner */

.banner-hero {
  background-color: #513391;
  color: #fff;
  position: relative;
  width: 100%;
  /* O "padding-top" define a proporção. 31.25% = altura de 600px */
  padding-top: 31.25%;
  overflow: hidden;
}

.banner-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Preenche o espaço mantendo a proporção */
  object-position: center; /* Centraliza a imagem */
}

.banner-inspira-nossos-espacos {
  background-color: #000000;
}

/* Seção Acesso Rápido */
.acesso-rapido {
  background-color: #513391;
  padding: 60px 0 120px 0;
  position: relative;
  overflow: visible;
  border-bottom-left-radius: 100px;
}

.acesso-rapido::before {
  display: none;
}

.acesso-rapido-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: start;
  margin-bottom: 50px;
  position: relative;
}

/* .acesso-rapido-title::after {
  content: '';
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  bottom: -15px;
  left: 0;
} */

/* Container dos cards posicionado absolutamente */
.acesso-rapido .row {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px; /* Ajuste conforme o breakpoint desejado */
  z-index: 10;
  margin: 0 auto;
  padding: 0 15px;
}

/* Responsividade */
@media (max-width: 1200px) {
  .acesso-rapido .row {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .acesso-rapido .row {
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  .acesso-rapido .row {
    max-width: 540px;
    bottom: -60px;
  }
}

@media (max-width: 576px) {
  .acesso-rapido .row {
    max-width: 100%;
    padding: 0 30px;
  }
}

.acesso-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  display: block;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  width: 210px;
  height: 160px;
  margin: 0 auto 10px;
}

.acesso-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.acesso-card:hover::before {
  left: 100%;
}

.acesso-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: #fff;
}

.acesso-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  background-color: #f8f9fa;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.acesso-card:hover .acesso-card-icon {
  transform: rotate(10deg) scale(1.1);
}

.acesso-card-icon svg {
  width: 35px;
  height: 35px;
  fill: #fff;
}

.acesso-card-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  color: #fff;
  transition: color 0.3s ease;
}

/* Cores específicas dos cards */
.acesso-card.eventos {
  background-color: #f05a36;
}

.acesso-card.eventos .acesso-card-icon {
  background-color: #f05a36;
}

.acesso-card.equipe {
  background-color: #35a5d8;
}

.acesso-card.equipe .acesso-card-icon {
  background-color: #35a5d8;
}

.acesso-card.espacos {
  background-color: #0052f1;
}

.acesso-card.espacos .acesso-card-icon {
  background-color: #0052f1;
}

.acesso-card.projetos {
  background-color: #f29222;
}

.acesso-card.projetos .acesso-card-icon {
  background-color: #f29222;
}

.acesso-card.contato {
  background-color: #034b88;
}

.acesso-card.contato .acesso-card-icon {
  background-color: #034b88;
}

/* Responsividade */
@media (max-width: 1200px) {
  .acesso-rapido {
    padding: 40px 0 70px 0; /* Mais espaço para os cards */
  }

  .acesso-rapido .row {
    position: static; /* Remove posicionamento absoluto */
    transform: none; /* Remove transform */
    max-width: 100%;
    bottom: auto;
    left: auto;
    margin-top: 40px; /* Adiciona margem superior */
    padding: 0 15px;
  }

  .acesso-rapido-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 992px) {
  .acesso-rapido {
    padding: 40px 0 70px 0; /* Mantém o mesmo comportamento */
  }

  .acesso-rapido .row {
    position: static;
    transform: none;
    max-width: 100%;
    bottom: auto;
    left: auto;
    margin-top: 40px;
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .acesso-rapido {
    padding: 40px 0 70px 0; /* Mais espaço para os cards */
  }

  .acesso-rapido .row {
    position: static; /* Remove posicionamento absoluto */
    transform: none; /* Remove transform */
    max-width: 100%;
    bottom: auto;
    left: auto;
    margin-top: 40px; /* Adiciona margem superior */
    padding: 0 15px;
  }

  .acesso-rapido-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .acesso-rapido {
    padding: 30px 0 80px 0; /* Ajusta padding */
    border-bottom-left-radius: 50px; /* Radius menor */
  }

  .acesso-rapido .row {
    position: static; /* Garante posicionamento normal */
    transform: none;
    max-width: 100%;
    padding: 0 20px;
    margin-top: 30px;
  }

  .acesso-card {
    width: 100%; /* Cards ocupam largura total da coluna */
    max-width: 280px; /* Largura máxima */
    height: 140px; /* Altura menor */
    margin: 0 auto 15px;
  }
}

/* Ajusta o espaçamento da próxima seção baseado no breakpoint */
@media (max-width: 1200px) {
  .acesso-rapido + section,
  .acesso-rapido + main > section:first-of-type {
    margin-top: 60px; /* Menos margem em telas menores */
  }
}

@media (max-width: 576px) {
  .acesso-rapido + section,
  .acesso-rapido + main > section:first-of-type {
    margin-top: 40px; /* Ainda menos em mobile pequeno */
  }
}

/* O que é Inspira */

.inspira-intro {
  margin-top: 50px;
  margin-bottom: 50px;
}

.inspira-intro h2 {
  color: var(--senac-dark-blue);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.inspira-intro h3 {
  color: var(--senac-dark-blue);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.banner-intro-img {
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  position: relative;
  display: block;
}

.banner-intro-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
  z-index: 1;
}

.banner-intro-img:hover::before {
  left: 100%;
}

.banner-intro-img:hover {
  transform: translateY(-10px) scale(1.02);
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); */
}

/* Container para posicionar o ::before corretamente */
.banner-intro-container {
  position: relative;
  display: inline-block;
  width: 480px;
  overflow: hidden;
  border-radius: 20px;
}

.banner-intro-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
  z-index: 2; /* Fica acima da imagem */
  pointer-events: none; /* Não interfere no hover */
}

.banner-intro-container:hover::before {
  left: 100%;
}

.banner-intro-container:hover .banner-intro-img {
  transform: translateY(-10px) scale(1.02);
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); */
}

/* Template Básico para as páginas do Inspira */

.inspira-template p {
  text-align: justify;
}

/* Estilos para as fotos da seção Quem Somos */
.inspira-template .row {
  margin-top: 40px;
}

/* Container das imagens para o efeito de brilho */
.inspira-template .col-lg-8,
.inspira-template .col-lg-4 {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}

.inspira-template img {
  border-radius: 25px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 350px; /* Altura fixa para manter o padrão */
  object-fit: cover; /* Mantém proporção e preenche o espaço */
  object-position: center; /* Centraliza a imagem */
  display: block;
}

/* Efeito de brilho */
.inspira-template .col-lg-8::before,
.inspira-template .col-lg-4::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
  z-index: 2;
  pointer-events: none;
  border-radius: 25px;
}

.inspira-template .col-lg-8:hover::before,
.inspira-template .col-lg-4:hover::before {
  left: 100%;
}

.inspira-template img:hover {
  transform: translateY(-5px); /* Leve elevação sem scale */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Responsividade para as imagens */
@media (max-width: 992px) {
  .inspira-template img {
    height: 250px; /* Altura menor em tablets */
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .inspira-template img {
    height: 200px; /* Altura menor em mobile */
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .inspira-template img {
    height: 180px; /* Altura ainda menor em mobile pequeno */
  }
}

/* Ajuste de mídia para preservar qualidade sem distorção */
.inspira-media-fit img {
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  background-color: transparent;
  padding: 0;
}

.inspira-media-fit img:hover {
  transform: translateY(-3px);
}

/* Muito mais do que um espaço */
.inspira-espacos {
  margin-top: 20px;
}

.inspira-espacos-title {
  color: var(--senac-dark-blue);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Layout escalonado */
.espacos-row-top {
  margin-bottom: 30px;
}

.espacos-row-bottom {
  margin-bottom: 0;
}

.espaco-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  width: 250px;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border: 2px solid transparent;
}

.espaco-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
  z-index: 1;
}

.espaco-card:hover::before {
  left: 100%;
}

.espaco-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.espaco-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  background-color: #f8f9fa;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.espaco-card:hover .espaco-card-icon {
  transform: rotate(10deg) scale(1.1);
}

.espaco-card-icon svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

.espaco-card-text {
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
  color: #fff;
  font-weight: 500;
  text-align: center;
  z-index: 2;
  position: relative;
}

/* Cores específicas dos cards */
.espaco-card.card-1 {
  background-color: #f05a36;
}

.espaco-card.card-1 .espaco-card-icon {
  background-color: #f05a36;
}

.espaco-card.card-2 {
  background-color: #35a5d8;
}

.espaco-card.card-2 .espaco-card-icon {
  background-color: #35a5d8;
}

.espaco-card.card-3 {
  background-color: #0052f1;
}

.espaco-card.card-3 .espaco-card-icon {
  background-color: #0052f1;
}

.espaco-card.card-4 {
  background-color: #f29222;
}

.espaco-card.card-4 .espaco-card-icon {
  background-color: #f29222;
}

.espaco-card.card-5 {
  background-color: #034b88;
}

.espaco-card.card-5 .espaco-card-icon {
  background-color: #034b88;
}

.espaco-card.card-6 {
  background-color: #513391;
}

.espaco-card.card-6 .espaco-card-icon {
  background-color: #513391;
}

.espaco-card.card-7 {
  background-color: #f05a36;
}

.espaco-card.card-7 .espaco-card-icon {
  background-color: #f05a36;
}

.espaco-card.card-8 {
  background-color: #35a5d8;
}

.espaco-card.card-8 .espaco-card-icon {
  background-color: #35a5d8;
}

.espaco-card.card-9 {
  background-color: #3b3e45;
}

.espaco-card.card-9 .espaco-card-icon {
  background-color: #3b3e45;
}

/* Responsividade */
@media (max-width: 992px) {
  .inspira-espacos-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 50px;
  }

  .espacos-row-bottom .offset-md-1 {
    margin-left: 0 !important;
  }

  .espaco-card {
    height: 180px;
    padding: 25px 15px;
  }

  .espaco-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .espaco-card-icon svg {
    width: 25px;
    height: 25px;
  }

  .espaco-card-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .inspira-espacos {
    padding: 60px 0;
  }

  .inspira-espacos-title {
    font-size: 1.3rem;
    margin-bottom: 40px;
  }

  .espaco-card {
    height: 160px;
    margin-bottom: 15px;
  }

  .espaco-card-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .inspira-espacos {
    padding: 50px 0;
  }

  .inspira-espacos-title {
    font-size: 1.2rem;
  }

  .espaco-card {
    height: 140px;
    padding: 20px 10px;
  }

  .espaco-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .espaco-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .espaco-card-text {
    font-size: 0.8rem;
    line-height: 1.3;
  }
}

/* Inspira+ em Números */
.inspira-numeros {
  background-color: #034b88;
  padding: 80px 0;
  margin-top: 50px;
  margin-bottom: 50px;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
  position: relative;
}

.inspira-numeros-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
}

.inspira-numeros-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 60px;
  font-style: italic;
}

.numero-card {
  background-color: #fff;
  border-radius: 25px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 280px;
}

.numero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
  z-index: 1;
}

.numero-card:hover::before {
  left: 100%;
}

.numero-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.numero-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.2);
}

.numero-card:hover .numero-card-icon {
  transform: rotate(10deg) scale(1.1);
}

.numero-card-icon svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

.numero-card-number {
  font-size: 3rem;
  font-weight: 900;
  margin: 0 0 10px 0;
  color: #fff;
  line-height: 1;
  z-index: 2;
  position: relative;
}

.numero-card-label {
  font-size: 1.1rem;
  line-height: 1.2;
  margin: 0;
  color: #fff;
  font-weight: 600;
  text-align: center;
  z-index: 2;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Cores específicas dos cards */
.numero-card.card-1 {
  background-color: #f29222;
}

.numero-card.card-1 .numero-card-icon {
  background: #f29222;
}

.numero-card.card-2 {
  background-color: #0052f1;
}

.numero-card.card-2 .numero-card-icon {
  background: #0052f1;
}

.numero-card.card-3 {
  background-color: #f05a36;
}

.numero-card.card-3 .numero-card-icon {
  background: #f05a36;
}

.numero-card.card-4 {
  background-color: #513391;
}

.numero-card.card-4 .numero-card-icon {
  background: #513391;
}

/* Responsividade */
@media (max-width: 1200px) {
  .inspira-numeros {
    border-top-right-radius: 80px;
    border-bottom-left-radius: 80px;
  }
}

@media (max-width: 992px) {
  .inspira-numeros {
    padding: 60px 0;
    border-top-right-radius: 60px;
    border-bottom-left-radius: 60px;
  }

  .inspira-numeros-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .inspira-numeros-subtitle {
    margin-bottom: 50px;
  }

  .numero-card {
    height: 180px;
    padding: 30px 15px;
    max-width: 100%;
  }

  .numero-card-number {
    font-size: 2.5rem;
  }

  .numero-card-label {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .inspira-numeros {
    padding: 50px 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
  }

  .inspira-numeros-title {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }

  .inspira-numeros-subtitle {
    margin-bottom: 40px;
    font-size: 0.85rem;
  }

  .numero-card {
    height: 160px;
    margin-bottom: 20px;
  }

  .numero-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .numero-card-icon svg {
    width: 25px;
    height: 25px;
  }

  .numero-card-number {
    font-size: 2.2rem;
  }

  .numero-card-label {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .inspira-numeros {
    padding: 40px 0;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }

  .inspira-numeros-title {
    font-size: 1.2rem;
  }

  .numero-card {
    height: 140px;
    padding: 25px 10px;
    max-width: 320px;
  }

  .numero-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .numero-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .numero-card-number {
    font-size: 2rem;
    margin-bottom: 8px;
  }

  .numero-card-label {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }
}
/* Seção Nossos Espaços - Recursos Tecnológicos */

.inspira-tech h5 {
  color: var(--senac-dark-blue);
  font-weight: 700;
}

/* Define um tamanho fixo para os ícones, para manter a consistência */
.inspira-tech .tech-icon {
  width: 80px; /* Ajuste o valor conforme necessário */
  height: auto; /* Mantém a proporção da imagem */
  border-radius: 0px;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.inspira-tech .tech-icon:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Inspira Tech */

.bg-inspira-tech {
  background-color: #232629;
}

.mini-icon {
  width: 40px !important;
  cursor: default !important;
}

.mini-icon:hover {
  transform: none !important;
}

/* Inspira e Respira */

.bg-inspira-respira {
  background-color: #232629;
}

/* Inspira Conexão */

.bg-inspira-conexao {
  background-color: #232629;
}

.espaco-card-icon-small img {
  width: 50px;
  height: auto;
}

/* Projeto Integrador */

.bg-projeto-integrador {
  background-color: #232629;
}

.banner-integrador:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* Embaixadores */

.bg-projeto-embaixadores-roxo {
  background-color: #513391;
  padding: 60px 0 60px 0;
  margin-bottom: 0px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  position: relative;
}

.position-relative {
  position: relative;
}

.imagem-sobreposta {
  position: absolute;
  width: 350px !important;
  height: 350px;
  object-fit: contain;
  top: -93px;
  right: -15px;
}

.bg-projeto-embaixadores-azul {
  background-color: #003969;
  color: #fff;
  padding: 60px 0 60px 0;
  margin-top: 0px;
  margin-bottom: 0px;
}

.bg-projeto-embaixadores-azul h3 {
  color: #fff;
  margin-bottom: 25px;
}
