/* ===== VARIÁVEIS ===== */
:root {
  --primary-color: #5a0e99;
  --primary-dark: #3a0a5f;
  --secondary-color: #FFD700;
  --secondary-dark: #e6c300;
  --dark-bg: #000d1a;
  --light-bg: #f8f9fa;
  --text-light: #ffffff;
  --text-dark: #333333;
  --text-gray: #cccccc;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --border-radius: 8px;
}

/* ===== RESET E BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Anton', 'Open Sans', sans-serif;
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Anton', sans-serif;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

p {
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HEADER ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--primary-color);
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

header.scrolled {
  padding: 0.5rem 2rem;
  background-color: rgba(90, 14, 153, 0.95);
  backdrop-filter: blur(5px);
}

.logo {
  height: 60px;
  transition: var(--transition);
}

header.scrolled .logo {
  height: 50px;
}

.menu-toggle {
  background: none;
  border: none;
  color: var(--secondary-color);
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  padding: 0.5rem;
  z-index: 1001;
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: var(--secondary-color);
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.08em;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition);
}

nav a:hover {
  color: var(--text-light);
}

nav a:hover::after {
  width: 100%;
}

/* Menu Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--primary-dark);
    flex-direction: column;
    padding: 5rem 2rem;
    transition: var(--transition);
    z-index: 1000;
  }
  
  nav.show {
    right: 0;
  }
  
  nav a {
    font-size: 1.2rem;
    padding: 1rem 0;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./alphaETN.jpeg') no-repeat center center/cover;
  height: 100vh;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-light);
  padding-top: 80px;
  margin-top: 80px;
}

.hero-content {
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.1em;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .hero p {
    font-size: 1.5rem;
  }
}

/* ===== SECTIONS ===== */
section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 5rem 0;
  }
}

.section-with-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.section-with-bg h2 {
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.05em;
}

.section-with-bg p,
.section-with-bg li {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.03em;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h2 {
  font-size: 2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
}

@media (min-width: 768px) {
  .section-title h2 {
    font-size: 2.5rem;
  }
  
  .section-title {
    margin-bottom: 3rem;
  }
}

/* ===== CURSOS ===== */
.cursos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 480px) {
  .cursos-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
}

.curso-card {
  background: var(--text-light);
  color: var(--text-dark);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.curso-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.curso-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .curso-card {
    padding: 2rem;
  }
  
  .curso-card i {
    font-size: 2.5rem;
  }
}

/* ===== GALERIA ===== */
/* ===== GALERIA ===== */
.gallery-section {
  padding: 4rem 1rem;
  background-color: #f8f9fa;
}

.gallery-section .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-section h2 {
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.05em;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.section-subtitle {
  color: #4a5568;
  font-size: 1.1rem;
}

/* Grid da Galeria */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay p {
  margin: 0;
  font-size: 0.9rem;
}

/* Filtros */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border: none;
  background: #e2e8f0;
  color: #4a5568;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.filter-btn.active, .filter-btn:hover {
  background:var(--primary-color);
  color: white;
}

/* Lightbox Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  overflow: auto;
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #f1f1f1;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover {
  color: #bbb;
}

.modal-caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  padding: 10px;
  background: rgba(0,0,0,0.5);
}

.modal-prev, .modal-next {
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  user-select: none;
}

.modal-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.modal-prev {
  left: 0;
  border-radius: 0 3px 3px 0;
}

.modal-prev:hover, .modal-next:hover {
  background-color: rgba(255,255,255,0.2);
}

/* Responsividade */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .gallery-filters {
    gap: 0.5rem;
  }
  
  .filter-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}

/* ===== SEÇÃO YOUTUBE ===== */
  .youtube-section {
    padding: 4rem 1rem;
    background-color:var(--primary-color);
    text-align: center;
  }
  
  /* Cabeçalho da Seção */
  .youtube-section .section-header {
    margin-bottom: 2.5rem;
  }
  
  .youtube-section h2 {
    color:  #FF0000;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.05em;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  .titulo-youtube-video{
    color: var(--secondary-color);
  }
  
  .youtube-section .section-subtitle {
    color:  var(--secondary-color);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Carrossel de Vídeos */
  .video-carousel-container {
    max-width: 900px;
    margin: 0 auto 2rem;
    position: relative;
  }
  
  .video-carousel {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    aspect-ratio: 16/9;
  }
  
  .video-item {
    min-width: 100%;
    transition: transform 0.5s ease;
  }
  
  .video-item iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  /* Navegação do Carrossel */
  .carousel-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  
  .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .carousel-dot.active {
    background: #FF0000;
    transform: scale(1.2);
  }
  
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #FF0000;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .carousel-arrow:hover {
    background: #cc0000;
    transform: translateY(-50%) scale(1.1);
  }
  
  .carousel-arrow.prev {
    left: 1rem;
  }
  
  .carousel-arrow.next {
    right: 1rem;
  }
  
  /* Call to Action */
  .youtube-cta {
    margin-top: 2rem;
  }
  
  .youtube-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FF0000;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.05em;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .youtube-button:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
  }
  
  .subscriber-count {
    display: block;
    color: #777;
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .youtube-section {
      padding: 2.5rem 1rem;
    }
    
    .carousel-arrow {
      width: 35px;
      height: 35px;
    }
    
    .video-carousel {
      border-radius: 8px;
    }
  }
  
  @media (max-width: 480px) {
    .carousel-arrow {
      display: none;
    }
    
    .youtube-button {
      padding: 0.6rem 1.2rem;
      font-size: 0.9rem;
    }
  }

/* ===== SERVIÇOS ===== */
.servicos-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.servico-categoria {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  transition: var(--transition);
}

.servico-categoria:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--secondary-color);
}

.servico-categoria h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  letter-spacing: 0.08em;
  -webkit-text-stroke-width: 0.06px;
  -webkit-text-stroke-color: black;
}

.servico-categoria h3 i {
  font-size: 1.5rem;
}

.servicos-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.servicos-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(255, 215, 0, 0.2);
  font-size: 0.95rem;
}

.servicos-list li:last-child {
  border-bottom: none;
}

.servicos-list i {
  color: var(--secondary-color);
  font-size: 1rem;
  min-width: 1.5rem;
  letter-spacing: 0.08rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

@media (min-width: 768px) {
  .servicos-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .servico-categoria {
    padding: 2rem;
  }
  
  .servico-categoria h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .servico-categoria h3 i {
    font-size: 1.8rem;
  }
  
  .servicos-list {
    gap: 1rem;
  }
  
  .servicos-list li {
    font-size: 1rem;
  }
  
  .servicos-list i {
    font-size: 1.1rem;
  }
}

/* ===== SIMULADOS ===== */
#simulados {
  background-color: var(--primary-dark);
  padding: 3rem 0;
}

.topicos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.topico-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--secondary-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  color: var(--text-light);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  letter-spacing: 0.08rem;
}

.topico-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 215, 0, 0.1);
  box-shadow: var(--shadow);
}

.topico-card i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.topico-card h3 {
  color: var(--secondary-color);
  margin-bottom: 0.7rem;
  letter-spacing: 0.08em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-size: 1.2rem;
}

.topico-card.destaque {
  border: 2px solid var(--secondary-color);
  background-color: rgba(90, 14, 153, 0.5);
}

.topico-card.destaque i {
  color: #fff;
  letter-spacing: 0.08rem;
}

.topico-simulado {
  color: var(--secondary-color);
  letter-spacing: 0.08em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.p-topico {
  color: var(--secondary-color);
  letter-spacing: 0.08em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.titulo-tabela{
  color:var(--secondary-color);
  letter-spacing: 0.08rem;
}
@media (min-width: 480px) {
  .topicos-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .topico-card h3 {
    font-size: 1.3rem;
  }
}

@media (min-width: 768px) {
  #simulados {
    padding: 5rem 0;
  }
  
  .topicos-grid {
    margin-top: 2rem;
  }
  
  .topico-card i {
    font-size: 2.5rem;
  }
}

/* ===== CALENDÁRIO ===== */
.tabela-container {
  overflow-x: auto;
  margin-top: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
}

.tabela-provas {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--text-light);
  color: var(--text-dark);
  min-width: 600px;
}

.tabela-provas th,
.tabela-provas td {
  padding: 0.8rem;
  text-align: left;
  border-bottom: 1px solid var(--text-gray);
  letter-spacing: 0.02em;
}

.tabela-provas th {
  background-color: var(--primary-color);
  color: var(--text-light);
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.tabela-provas tr:nth-child(even) {
  background-color: rgba(90, 14, 153, 0.05);
}

.tabela-provas tr:hover {
  background-color: rgba(90, 14, 153, 0.1);
}

@media (min-width: 768px) {
  .tabela-container {
    margin-top: 2rem;
  }
  
  .tabela-provas th,
  .tabela-provas td {
    padding: 1rem;
  }
}

/* ===== CONTATO ===== */
.contato-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contato-info p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  letter-spacing: 0.02em;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  font-size: 0.95rem;
}

.contato-info i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  width: 1.5rem;
  text-align: center;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25D366;
  color: var(--text-light);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 1rem;
  transition: var(--transition);
  letter-spacing: 0.03em;
  font-size: 0.95rem;
}

.whatsapp-link:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .contato-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .contato-info p {
    font-size: 1rem;
  }
  
  .whatsapp-link {
    font-size: 1rem;
  }
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 3rem 0 0;
  letter-spacing: 0.02em;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-links h3,
.footer-social h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.social-icons {
  display: flex;
  gap: 0.8rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
}

.admin-link {
  color: var(--secondary-color);
  font-weight: 600;
}

.admin-link:hover {
  text-decoration: underline;
}

@media (min-width: 480px) {
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (min-width: 768px) {
  footer {
    padding: 4rem 0 0;
  }
  
  .footer-content {
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .footer-logo img {
    height: 60px;
  }
  
  .footer-links h3,
  .footer-social h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-links ul {
    gap: 0.8rem;
  }
  
  .social-icons {
    gap: 1rem;
  }
  
  .social-icons a {
    width: 40px;
    height: 40px;
  }
  
  .footer-bottom {
    font-size: 1rem;
  }
}

/* ===== ELEMENTOS FLUTUANTES ===== */
.btn-topo {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 45px;
  height: 45px;
  background-color: var(--secondary-color);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.btn-topo.visible {
  opacity: 1;
  visibility: visible;
}

.btn-topo:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-5px);
}

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background-color: #25D366;
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128C7E;
}

@media (min-width: 768px) {
  .btn-topo {
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .whatsapp-float {
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
}

/* ===== BOTÕES E CTAs ===== */
.cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.cta-button:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

/* ===== MELHORIAS DE LEGIBILIDADE ===== */
.section-with-bg p,
.section-with-bg li,
.section-with-bg td,
.section-with-bg th,
.section-with-bg a {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.section-with-bg h2,
.section-with-bg h3 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* ===== AJUSTES GERAIS PARA MOBILE ===== */
@media (max-width: 767px) {
  /* Ajuste no padding do container para melhor uso do espaço */
  .container {
    padding: 0 1rem;
  }
  
  /* Ajuste no header para mobile */
  header {
    padding: 0.8rem 1rem;
  }
  
  .logo {
    height: 50px;
  }
  
  /* Ajuste no hero para mobile */
  .hero {
    min-height: 400px;
    padding-top: 70px;
    margin-top: 70px;
  }
  
  .hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* Ajuste nas seções para mobile */
  section {
    padding: 2rem 0;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  /* Ajuste no footer para mobile */
  .footer-bottom {
    font-size: 0.8rem;
  }
}

/* Ajuste para tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero p {
    font-size: 1.3rem;
  }
  
  
}
/* ==============================================
   MELHORIAS ESPECÍFICAS PARA MOBILE (até 767px)
   ============================================== */
@media (max-width: 767px) {
  /* Ajustes gerais de layout */
  body {
    font-size: 15px; /* Tamanho de fonte ligeiramente menor para mobile */
  }
  
  .container {
    padding: 0 1rem;
  }
  
  /* Header mobile otimizado */
  header {
    padding: 0.8rem 1rem;
    height: 70px; /* Altura fixa para header */
  }
  
  .logo {
    height: 50px;
    max-width: 150px; /* Garante que não ultrapasse a largura */
  }
  
  /* Menu mobile mais acessível */
  nav {
    padding-top: 80px; /* Espaço para o header */
  }
  
  nav a {
    font-size: 1.1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  }
  
  /* Hero section mais compacta */
  .hero {
    min-height: 70vh; /* Altura relativa à viewport */
    padding-top: 70px;
    margin-top: 70px;
    background-attachment: scroll; /* Remove parallax em mobile */
  }
  
  .hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.1;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* Seções mais compactas */
  section {
    padding: 1.5rem 0;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  /* Grids ajustados */
  .cursos-grid, 
  .topicos-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Galeria mobile */
  .gallery-grid {
    grid-template-columns: 1fr 1fr; /* 2 colunas em mobile */
    gap: 0.5rem;
  }
  
  .gallery-item {
    aspect-ratio: 1/1; /* Quadrados em mobile */
  }
  
  /* Tabelas com scroll mais suave */
  .tabela-container {
    margin-left: -1rem;
    margin-right: -1rem;
    width: calc(100% + 2rem);
  }
  
  .tabela-provas {
    min-width: 100%;
  }
  
  /* Formulários e inputs mobile */
  input, textarea, select {
    font-size: 16px; /* Evita zoom em iOS */
  }
  
  /* Botões mais acessíveis */
  .btn, .cta-button, .whatsapp-link {
    padding: 0.8rem 1.2rem;
    min-width: 120px; /* Tamanho mínimo para toque */
  }
  
  /* Elementos flutuantes reposicionados */
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .btn-topo {
    bottom: 5rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }
  
  /* Espaçamento entre seções reduzido */
  .section-with-bg {
    padding: 1.5rem 0;
  }
  
  /* Ajuste específico para a seção de vídeos */
  .video-carousel {
    border-radius: 0;
    margin: 0 -1rem; /* Espaço total na largura */
    width: calc(100% + 2rem);
  }
  
  /* Melhorias de toque para links */
  a, button {
    min-height: 44px; /* Tamanho mínimo recomendado para toque */
    min-width: 44px;
  }
  
  /* Ajuste de texto em cards */
  .curso-card, .topico-card {
    padding: 1.2rem;
  }
  
  /* Footer mobile simplificado */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
}

/* ==============================================
   AJUSTES PARA TELAS MUITO PEQUENAS (até 360px)
   ============================================== */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr; /* 1 coluna em telas muito pequenas */
  }
  
  .menu-toggle {
    padding: 0.3rem;
  }
  
  nav {
    width: 85%;
  }
}

/* ==============================================
   ORIENTAÇÃO LANDSCAPE EM MOBILE
   ============================================== */
@media (max-width: 767px) and (orientation: landscape) {
  .hero {
    min-height: 100vh; /* Aproveita melhor a altura */
    padding-top: 60px;
  }
  
  header {
    height: 60px;
  }
  
  nav {
    padding-top: 60px;
  }
  
  .hero-content {
    padding-bottom: 2rem; /* Evita que o conteúdo fique muito alto */
  }

}
/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./alphaETN.jpeg') no-repeat center center/cover;
  height: 100vh;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-light);
  padding-top: 80px;
  margin-top: 80px;
}

/* Versão Mobile - Substitui pela logo */
@media (max-width: 767px) {
  .hero {
    background: linear-gradient(rgba(90, 14, 153, 0.2), rgba(90, 14, 153, 0.2)), url('./logo-alpha-etn-novo.jpeg') no-repeat center center;
    background-size: contain;
    background-color: var(--primary-color); /* Fundo sólido como fallback */
  }

  /* Ajusta o posicionamento do conteúdo para não sobrepor o logo */
  .hero-content {
    margin-top: 40%; /* Empurra o conteúdo para baixo do logo */
  }

  /* Ajustes para telas muito pequenas */
  @media (max-width: 360px) {
    .hero {
      background-size: 80%;
    }
  }

  /* Ajuste para orientação paisagem */
  @media (orientation: landscape) {
    .hero {
      background-size: 40%;
      background-position: center 30%;
    }
    .hero-content {
      margin-top: 20%;
    }
  }
}
/* ===== HEADER PREMIUM ===== */
.glass-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(90, 14, 153, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 50px;
  transition: all 0.3s ease;
}

.logo-text {
  color: var(--secondary-color);
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link i {
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), transparent);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.nav-link:hover {
  color: var(--secondary-color);
}

.nav-link:hover::before {
  transform: translateY(0);
}

.nav-link:hover i {
  transform: scale(1.2);
}

.cta-link {
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid var(--secondary-color);
  margin-left: 0.5rem;
}

.cta-link:hover {
  background: var(--secondary-color);
  color: var(--primary-dark);
}

/* Menu Hamburguer Moderno */
.hamburger {
  display: none;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.bar:nth-child(1) {
  top: 0;
}

.bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.bar:nth-child(3) {
  bottom: 0;
}

/* Menu Mobile */
@media (max-width: 1024px) {
  .hamburger {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--primary-dark);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }
  
  nav.show .nav-links {
    right: 0;
  }
  
  .nav-link {
    width: 100%;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    justify-content: flex-start;
  }
  
  .cta-link {
    margin: 1rem 0 0;
    width: calc(100% - 3rem);
    text-align: center;
    justify-content: center;
  }
  
  /* Animação do hamburguer para X */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

/* Efeito de scroll */
.glass-header.scrolled {
  padding: 0.3rem 0;
  background: rgba(90, 14, 153, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.glass-header.scrolled .logo {
  height: 45px;
}

/* Responsividade */
@media (max-width: 768px) {
  .header-container {
    padding: 0.8rem 1.5rem;
  }
  
  .logo-text {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0.8rem 1rem;
  }
  
  .logo {
    height: 45px;
  }
}
/* ===== SOBRE PREMIUM ===== */
.about-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: var(--text-light);
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('wave-pattern.png') repeat;
  opacity: 0.03;
  z-index: 0;
}

.about-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  display: block;
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.highlight {
  color: var(--secondary-color);
}

.divider {
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
  margin: 1rem auto;
  position: relative;
}

.divider::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background: rgba(255, 215, 0, 0.5);
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1.5rem;
}

.about-text p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  height: 3px;
  width: 10px;
  background: var(--secondary-color);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.feature-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: var(--secondary-color);
}

.feature-text p {
  font-size: 0.95rem;
  opacity: 0.9;
  padding-left: 0;
}

.feature-text p::before {
  display: none;
}

.about-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-frame {
  position: relative;
  padding-top: 70%; /* Proporção 4:3 */
  overflow: hidden;
  border-radius: 15px;
}

.image-frame img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(90, 14, 153, 0.4) 0%, transparent 100%);
}

.stats-container {
  margin-top: 4rem;
  position: relative;
}

.stats-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(255, 215, 0, 0.3) 50%, transparent 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-family: 'Anton', sans-serif;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
  letter-spacing: 0.05em;
}

/* Animação dos números */
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.stat-number.animated {
  animation: countUp 1s ease-out forwards;
}

/* Responsividade */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .feature-item {
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .about-section {
    padding: 8rem 0;
  }
  
  .about-features {
    grid-template-columns: 1fr 1fr;
  }
  
  .section-title {
    font-size: 3.5rem;
  }
}
/* ===== SEÇÃO DE CURSOS PREMIUM ===== */
.premium-courses-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
}

.premium-courses-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('wave-pattern-light.png') repeat;
  opacity: 0.03;
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  display: block;
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  color: var(--primary-dark);
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-dark);
  opacity: 0.9;
}

.courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.course-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(90, 14, 153, 0.05) 0%, transparent 100%);
  z-index: -1;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.course-card.featured {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.course-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--secondary-color);
  color: var(--primary-dark);
  padding: 0.3rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
  width: 120px;
  text-align: center;
}

.course-icon {
  width: 70px;
  height: 70px;
  background: rgba(90, 14, 153, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-size: 1.8rem;
  border: 1px solid rgba(90, 14, 153, 0.2);
}

.course-title {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.course-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
}

.course-description {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.7;
}

.course-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed rgba(90, 14, 153, 0.2);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--primary-dark);
}

.detail-item i {
  color: var(--secondary-color);
  width: 20px;
  text-align: center;
}

.course-price {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.course-button {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: var(--primary-color);
  color: white;
  padding: 0.8rem;
  border-radius: 50px;
  font-weight: 300;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.course-button:hover {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.course-benefits {
  background: white;
  border-radius: 15px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefits-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 2rem;
  position: relative;
}

.benefits-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.benefit-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(90, 14, 153, 0.1);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: var(--secondary-color);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: rgba(90, 14, 153, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary-color);
  font-size: 1.5rem;
  border: 1px solid rgba(90, 14, 153, 0.2);
}

.benefit-item h4 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.benefit-item p {
  font-size: 0.95rem;
  color: var(--text-dark);
  opacity: 0.9;
  margin-bottom: 0;
}

/* Responsividade */
@media (min-width: 768px) {
  .courses-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .premium-courses-section {
    padding: 8rem 0;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .course-card.featured {
    transform: scale(1.05);
  }
  
  .course-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
  }
}
/* ===== SEÇÃO DE SIMULADOS PREMIUM ===== */
.premium-simulados-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.premium-simulados-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('wave-pattern.png') repeat;
  opacity: 0.03;
  z-index: 0;
 
}

.simulados-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.simulado-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: var(--text-dark);
}

.simulado-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
  z-index: -1;
}

.simulado-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.simulado-card.featured {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.simulado-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--secondary-color);
  color: var(--primary-dark);
  padding: 0.3rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
  width: 120px;
  text-align: center;
}

.simulado-icon {
  width: 70px;
  height: 70px;
  background: rgba(90, 14, 153, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
  font-size: 1.8rem;
  border: 1px solid rgba(90, 14, 153, 0.2);
}

.simulado-title {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.8rem;
}

.simulado-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
}

.simulado-description {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: center;
  opacity: 0.9;
  line-height: 1.6;
}
.section-description{
  color: #fff;
}
.simulado-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed rgba(90, 14, 153, 0.2);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--primary-dark);
  justify-content: center;
}

.stat-item i {
  color: var(--secondary-color);
  width: 20px;
  text-align: center;
}

.progress-container {
  margin-bottom: 1.5rem;
}

.progress-bar {
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  position: relative;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--secondary-color);
  border-radius: 4px;
  transition: width 1.5s ease-out;
}

.progress-text {
  display: block;
  font-size: 0.8rem;
  color: var(--text-dark);
  opacity: 0.8;
  text-align: center;
}

.simulado-button {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: var(--primary-color);
  color: white;
  padding: 0.8rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  letter-spacing: 2px;
  justify-content: center;
  gap: 0.5rem;
}

.simulado-button:hover {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.simulado-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.info-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 215, 0, 0.05);
}

.info-card i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.info-card h4 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Responsividade */
@media (min-width: 768px) {
  .simulados-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .simulado-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .premium-simulados-section {
    padding: 8rem 0;
  }
  
  .simulado-info {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .simulado-card.featured {
    transform: scale(1.05);
  }
  
  .simulado-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
  }
}

/* Animação da barra de progresso */
@keyframes progressAnimation {
  from { width: 0; }
  to { width: attr(data-percentage); }
}

.progress-bar.animated::after {
  animation: progressAnimation 1.5s ease-out forwards;
}
/* ===== GALERIA PREMIUM ===== */
.premium-gallery-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
}

.premium-gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('wave-pattern-light.png') repeat;
  opacity: 0.03;
  z-index: 0;
}

.premium-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(90, 14, 153, 0.8), transparent);
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.overlay-content {
  transform: translateY(20px);
  transition: transform 0.4s ease;
  width: 100%;
}

.gallery-item:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h3 {
  color: var(--secondary-color);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.overlay-content p {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.view-button {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-button:hover {
  background: var(--secondary-color);
  color: var(--primary-dark);
  transform: scale(1.1);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.7rem 1.5rem;
  border: none;
  background: rgba(90, 14, 153, 0.1);
  color: white  ;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--secondary-color);
  color: white;
}

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
}

.gallery-cta p {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

/* Lightbox Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  overflow: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-content img {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 2001;
}

.close-modal:hover {
  color: var(--secondary-color);
}

.modal-caption {
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 1.1rem;
  max-width: 800px;
}

.modal-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 2rem;
  pointer-events: none;
}

.modal-prev, .modal-next {
  background: rgba(90, 14, 153, 0.5);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.modal-prev:hover, .modal-next:hover {
  background: var(--secondary-color);
  color: var(--primary-dark);
}

/* Responsividade */
@media (max-width: 1024px) {
  .premium-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .premium-gallery-section {
    padding: 4rem 0;
  }
  
  .premium-gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .modal-nav {
    padding: 0 1rem;
  }
  
  .modal-prev, .modal-next {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .premium-gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .gallery-cta p {
    font-size: 1rem;
  }
}/* Lightbox Modal */
#gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  overflow: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#gallery-modal.show {
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#gallery-modal .modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#gallery-modal .modal-content img {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: 10px;
}

#gallery-modal .close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 2001;
}

#gallery-modal .close-modal:hover {
  color: var(--secondary-color);
}

#gallery-modal .modal-caption {
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 1.1rem;
  max-width: 800px;
}

#gallery-modal .modal-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 2rem;
  pointer-events: none;
}

#gallery-modal .modal-prev, 
#gallery-modal .modal-next {
  background: rgba(90, 14, 153, 0.5);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

#gallery-modal .modal-prev:hover, 
#gallery-modal .modal-next:hover {
  background: var(--secondary-color);
  color: var(--primary-dark);
}
/* ===== SEÇÃO YOUTUBE PREMIUM ===== */
.premium-youtube-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.premium-youtube-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('wave-pattern.png') repeat;
  opacity: 0.03;
  z-index: 0;
}

.youtube-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

.video-featured {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 2rem;
  background: white;
  color: var(--text-dark);
}

.video-title {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.video-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
}

.video-description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.video-stats {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: #666;
}

.video-stats i {
  margin-right: 0.3rem;
  color: var(--secondary-color);
}

.playlist-title {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.playlist-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
}

.playlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.playlist-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.playlist-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.playlist-thumbnail {
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
}

.playlist-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.playlist-card:hover .playlist-thumbnail img {
  transform: scale(1.1);
}

.playlist-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(90, 14, 153, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.playlist-card:hover .playlist-overlay {
  opacity: 1;
}

.playlist-overlay i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.playlist-card h4 {
  padding: 1.2rem;
  font-size: 1.1rem;
  text-align: center;
}

.youtube-cta {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.cta-content h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.cta-content p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
}

.youtube-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #FF0000;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.youtube-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.youtube-button:hover::before {
  left: 100%;
}

.youtube-button:hover {
  background: #cc0000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

.subscriber-count {
  display: block;
  font-size: 0.8rem;
  font-weight: normal;
  margin-top: 0.3rem;
  opacity: 0.8;
}

/* Responsividade */
@media (max-width: 1024px) {
  .premium-youtube-section {
    padding: 5rem 0;
  }
  
  .playlist-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .premium-youtube-section {
    padding: 4rem 0;
  }
  
  .video-info {
    padding: 1.5rem;
  }
  
  .video-title {
    font-size: 1.3rem;
  }
  
  .playlist-title {
    font-size: 1.5rem;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .youtube-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .video-stats {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .playlist-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== SEÇÃO DE SERVIÇOS PREMIUM ===== */
.premium-services-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
}

.premium-services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('wave-pattern-light.png') repeat;
  opacity: 0.03;
  z-index: 0;
   
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(90, 14, 153, 0.05) 0%, transparent 100%);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.service-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--secondary-color);
  color: var(--primary-dark);
  padding: 0.3rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
  width: 120px;
  text-align: center;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(90, 14, 153, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
  font-size: 1.8rem;
  border: 1px solid rgba(90, 14, 153, 0.2);
}

.service-title {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.8rem;
}

.service-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(90, 14, 153, 0.05);
}

.feature-check {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.service-footer {
  margin-top: auto;
}

.service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  text-align: center;
  background: var(--primary-color);
  color: white;
  padding: 0.8rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.service-item{
  color: var(--primary-color);
}
.service-button:hover {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.service-benefits {
  background: white;
  border-radius: 15px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefits-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 2rem;
  position: relative;
}

.benefits-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.benefit-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(90, 14, 153, 0.1);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: var(--secondary-color);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: rgba(90, 14, 153, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary-color);
  font-size: 1.5rem;
  border: 1px solid rgba(90, 14, 153, 0.2);
}

.benefit-item h4 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.benefit-item p {
  font-size: 0.95rem;
  color: var(--text-dark);
  opacity: 0.9;
  margin-bottom: 0;
}

/* Responsividade */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .premium-services-section {
    padding: 8rem 0;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .service-card.featured {
    transform: scale(1.05);
  }
  
  .service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
  }
}
/* ===== SEÇÃO CALENDÁRIO PREMIUM ===== */
.premium-calendar-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.premium-calendar-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('wave-pattern.png') repeat;
  opacity: 0.03;
  z-index: 0;
}

.calendar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.calendar-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.tab-button {
  padding: 0.7rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.tab-button.active, .tab-button:hover {
  background: var(--secondary-color);
  color: var(--primary-dark);
}

.calendar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.event-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.3);
}

.event-date {
  min-width: 80px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.8rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.event-day {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.event-month {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  opacity: 0.9;
}

.event-details {
  flex-grow: 1;
}

.event-title {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 0.8rem;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.meta-item i {
  color: var(--secondary-color);
  width: 16px;
  text-align: center;
}

.event-button {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: var(--secondary-color);
  color: var(--primary-dark);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.event-button:hover {
  background: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
}
.section-title{
  color: var(--secondary-color);
}
.calendar-cta {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.cta-content h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.cta-content p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Responsividade */
@media (min-width: 768px) {
  .calendar-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .event-card {
    padding: 2rem;
  }
  
  .cta-content h3 {
    font-size: 1.8rem;
  }
}

@media (min-width: 1024px) {
  .premium-calendar-section {
    padding: 8rem 0;
  }
  
  .calendar-grid {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  }
  
  .event-title {
    font-size: 1.5rem;
  }
}
/* ===== FOOTER PREMIUM ===== */
.premium-footer {
  background: var(--primary-dark);
  color: var(--text-light);
  position: relative;
  padding-top: 6rem;
  margin-top: 6rem;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  transform: translateY(-99%);
}

.footer-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  height: 100px;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.footer-brand h3 {
  color: var(--secondary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.footer-brand p {
  max-width: 500px;
  margin: 0 auto;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.links-column {
  text-align: center;
}

.links-column h4 {
  color: var(--secondary-color);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.links-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
}

.links-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.links-column a {
  color: var(--text-light);
  transition: var(--transition);
  opacity: 0.9;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.links-column a:hover {
  color: var(--secondary-color);
  opacity: 1;
  transform: translateX(5px);
}

.footer-newsletter {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-title {
  color: var(--secondary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.newsletter-input {
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--secondary-color);
}

.newsletter-button {
  background: var(--secondary-color);
  color: var(--primary-dark);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.newsletter-button:hover {
  background: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.2rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(5px);
}

.social-icon:hover {
  background: var(--secondary-color);
  color: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.copyright {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.copyright p {
  margin-bottom: 1rem;
  opacity: 0.8;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.legal-links a {
  color: var(--text-light);
  opacity: 0.8;
  transition: var(--transition);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.legal-links a:hover {
  color: var(--secondary-color);
  opacity: 1;
}

/* Responsividade */
@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr 2fr;
  }
  
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .links-column {
    text-align: left;
  }
  
  .links-column h4::after {
    left: 0;
    transform: none;
  }
  
  .footer-brand {
    text-align: left;
  }
  
  .footer-logo {
    margin-left: 0;
  }
  
  .footer-newsletter {
    margin: 0;
    text-align: left;
  }
  
  .newsletter-form {
    flex-direction: row;
  }
  
  .newsletter-input {
    flex-grow: 1;
  }
  
  .footer-social {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 2fr 1fr;
  }
  
  .footer-wave {
    height: 200px;
  }
}
/* ===== SEÇÃO NAVSEG PREMIUM ===== */
.premium-navseg-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.premium-navseg-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('wave-pattern-light.png') repeat;
  opacity: 0.03;
  z-index: 0;
}

.navseg-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

.navseg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.navseg-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.navseg-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.navseg-icon {
  width: 70px;
  height: 70px;
  background: rgba(90, 14, 153, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
  font-size: 1.8rem;
  border: 1px solid rgba(90, 14, 153, 0.2);
}

.navseg-title {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.8rem;
}

.navseg-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
}

.navseg-description {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: center;
  opacity: 0.9;
  line-height: 1.6;
}

.navseg-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navseg-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.navseg-features i {
  color: var(--secondary-color);
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: var(--primary-color);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.download-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.navseg-image {
  position: relative;
  margin-top: 2rem;
  text-align: center;
}

.navseg-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.navseg-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--secondary-color);
  color: var(--primary-dark);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.features-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 2rem;
  position: relative;
}

.features-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(90, 14, 153, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary-color);
  font-size: 1.5rem;
  border: 1px solid rgba(90, 14, 153, 0.2);
}

.feature-card h4 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-dark);
  opacity: 0.9;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .navseg-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .navseg-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .navseg-image {
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .premium-navseg-section {
    padding: 8rem 0;
  }
  
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .navseg-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ===== SEÇÃO NAVSEG PREMIUM - ATUALIZADA ===== */
.premium-navseg-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
  background:var(--primary-color);
}


.premium-navseg-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('wave-pattern-light.png') repeat;
  opacity: 0.03;
  z-index: 0;
}

.navseg-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 4rem 0;
}

.navseg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.navseg-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.navseg-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.navseg-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--secondary-color);
  transition: all 0.3s ease;
}

.navseg-card:hover::before {
  height: 10px;
}

.navseg-icon {
  width: 80px;
  height: 80px;
  background: rgba(90, 14, 153, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--primary-color);
  font-size: 2rem;
  border: 2px solid rgba(90, 14, 153, 0.2);
  transition: all 0.3s ease;
}

.navseg-card:hover .navseg-icon {
  background: var(--secondary-color);
  color: white;
  transform: scale(1.1);
}

.navseg-title {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.navseg-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--secondary-color);
}

.navseg-description {
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.7;
  flex-grow: 1;
}

.navseg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.navseg-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.navseg-features i {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.download-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: auto;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  min-width: 180px;
  box-shadow: 0 5px 15px rgba(90, 14, 153, 0.2);
}

.download-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(90, 14, 153, 0.3);
}

.download-btn i {
  font-size: 1.3rem;
}

.navseg-image {
  position: relative;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navseg-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-10deg);
  transition: all 0.5s ease;
  border: 15px solid white;
}

.navseg-image:hover img {
  transform: perspective(1000px) rotateY(0deg);
}

.navseg-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--secondary-color);
  color: var(--primary-dark);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 2;
  font-size: 1.1rem;
}

.navseg-badge i {
  font-size: 1.3rem;
}

.features-container {
  background: white;
  border-radius: 20px;
  padding: 4rem 3rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  margin-top: 4rem;
}

.features-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--primary-dark);
  margin-bottom: 3rem;
  position: relative;
}

.features-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--secondary-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(90, 14, 153, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary-color);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(90, 14, 153, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
  font-size: 1.8rem;
  border: 1px solid rgba(90, 14, 153, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--secondary-color);
  color: white;
}

.feature-card h4 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 0;
}
.tittle-navseg2{
  color:  var(--secondary-color);
}

/* Responsividade */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .navseg-card {
    min-height: 360px;
  }
}

@media (max-width: 992px) {
  .navseg-content {
    grid-template-columns: 1fr;
  }
  
  .navseg-image {
    margin-top: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .download-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .download-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .premium-navseg-section {
    padding: 6rem 0;
  }
  
  .navseg-grid {
    grid-template-columns: 1fr;
  }
  
  .navseg-card {
    min-height: auto;
    padding: 2rem;
  }
  
  .features-container {
    padding: 3rem 1.5rem;
  }
  
  .features-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .navseg-card {
    padding: 1.5rem;
  }
  
  .navseg-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .navseg-title {
    font-size: 1.3rem;
  }
  
  .feature-card {
    padding: 1.5rem 1rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .feature-card h4 {
    font-size: 1.1rem;
  }
}