:root {
  --primary: #6e45e2;
  --secondary: #88d3ce;
  --accent: #ff5e7d;
  --dark: #0a0a0f;
  --darker: #050509;
  --light: #ffffff;
  --gray: #f1f1f1;
  --dark-gray: #1a1a2e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: var(--darker);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
  font-weight: 300;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER E NAVEGAÇÃO ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  background: rgba(5, 5, 9, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  font-size: 1.2rem;
  z-index: 1001;
}

.logo-img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(110, 69, 226, 0.5));
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo span {
  background: linear-gradient(90deg, var(--light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 1.3rem;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-menu {
  display: flex;
}

.menu {
  display: flex;
  list-style: none;
  gap: 25px;
}

.menu a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.menu a:hover {
  color: var(--primary);
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

/* ===== DROPDOWN DE PROJETOS ===== */
.projetos-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(5, 5, 9, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(110, 69, 226, 0.3);
  border-radius: 10px;
  padding: 15px 0;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 20px;
  width: 10px;
  height: 10px;
  background: var(--primary);
  transform: rotate(45deg);
}

.projetos-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--light);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: rgba(110, 69, 226, 0.2);
  color: var(--secondary);
  padding-left: 25px;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-icon {
  font-size: 1rem;
  width: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.dropdown-menu a:hover .dropdown-icon {
  transform: scale(1.2);
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 180px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 25px;
  background: linear-gradient(90deg, var(--light), var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* ===== CANVAS 3D ===== */
#canvas-3d {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
}

/* ===== CONTADORES ===== */
.contadores {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.contador-box {
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  min-width: 220px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contador-box::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary), transparent, var(--secondary));
  z-index: -1;
  border-radius: 20px;
  animation: borderAnimation 3s linear infinite;
}

.contador-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contador {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 10px;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contador-box p {
  font-size: 1.1rem;
  opacity: 0.8;
  font-weight: 500;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.depoimentos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(110, 69, 226, 0.1), transparent 70%);
  z-index: -1;
}

.depoimentos h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  font-weight: 600;
}

.depoimentos h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.depoimento {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: none;
  animation: fadeIn 1s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.depoimento::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(110, 69, 226, 0.05), transparent);
  z-index: -1;
}

.depoimento.ativo {
  display: block;
}

.depoimento p {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.depoimento span {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.1rem;
}

/* ===== NOTÍCIAS ===== */
.noticias {
  padding: 100px 0;
  position: relative;
}

.noticias::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.1;
  filter: blur(40px);
  z-index: -1;
}

.noticias h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 600;
}

.noticias h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary), transparent, var(--secondary));
  z-index: -1;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card:hover::before {
  opacity: 1;
  animation: borderAnimation 3s linear infinite;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--secondary);
  font-weight: 600;
}

.card p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.card-image {
  width: 100%;
  height: 300px;
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
}

.card-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.evento-detalhes {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.evento-detalhes p {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.evento-detalhes strong {
  color: var(--secondary);
  margin-right: 8px;
  min-width: 100px;
}

.evento-titulo {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 15px;
  text-align: center;
}

.evento-subtitulo {
  font-style: italic;
  text-align: center;
  margin-bottom: 25px;
  color: var(--secondary);
  font-size: 1.2rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark-gray);
  padding: 80px 0 40px;
  text-align: center;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(136, 211, 206, 0.1), transparent 70%);
  z-index: 0;
}

footer .container {
  position: relative;
  z-index: 1;
}

footer p {
  margin-bottom: 15px;
  opacity: 0.8;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: transform 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

/* ===== CHATBOT ===== */
.chatbot-container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 350px;
  height: 500px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: none;
  flex-direction: column;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.chatbot-container.open {
  display: flex;
}

.chat-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 15px;
  border-radius: 15px 15px 0 0;
  position: relative;
}

.chat-header h2 {
  margin: 0;
  font-size: 1.2rem;
}

.chat-header p {
  margin: 5px 0 0 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.close-chat {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.close-chat:hover {
  background: rgba(255, 255, 255, 0.2);
}

.chat-body {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.8);
}

.chat-footer {
  padding: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: white;
  border-radius: 0 0 15px 15px;
  display: flex;
  gap: 10px;
}

.chat-footer input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 20px;
  outline: none;
  font-size: 0.9rem;
}

.chat-footer button {
  padding: 10px 20px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.chat-footer button:hover {
  background: var(--secondary);
}

.chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(110, 69, 226, 0.5);
  z-index: 999;
  transition: transform 0.3s ease;
  animation: pulse 2s infinite;
}

.chat-toggle:hover {
  transform: scale(1.1);
}

.user-msg, .bot-msg {
  margin: 10px 0;
  padding: 10px 15px;
  border-radius: 18px;
  max-width: 80%;
  word-wrap: break-word;
  position: relative;
}

.user-msg {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  margin-left: auto;
  border-bottom-right-radius: 5px;
}

.bot-msg {
  background: rgba(0, 0, 0, 0.05);
  color: #333;
  border-bottom-left-radius: 5px;
}

.user-msg time, .bot-msg time {
  display: block;
  font-size: 0.7rem;
  opacity: 0.7;
  margin-top: 5px;
}

.chat-body::-webkit-scrollbar {
  width: 6px;
}

.chat-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.chat-body::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes borderAnimation {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== RESPONSIVIDADE COMPLETA ===== */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 15px !important;
  }
  
  .menu {
    gap: 15px !important;
  }
  
  .menu a {
    font-size: 0.85rem !important;
    padding: 8px 12px !important;
  }
  
  .logo span {
    font-size: 1.2rem !important;
  }
}

/* Mobile (até 768px) */
@media (max-width: 768px) {
  .header-container {
    padding: 0 15px !important;
  }
  
  .logo {
    gap: 10px !important;
  }
  
  .logo-img {
    height: 40px !important;
  }
  
  .logo span {
    font-size: 1.1rem !important;
    max-width: 180px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  
  .menu-toggle {
    display: block !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: none !important;
    color: white !important;
    font-size: 1.8rem !important;
    cursor: pointer !important;
    padding: 8px 12px !important;
    border-radius: 5px !important;
    z-index: 1001 !important;
    transition: background 0.3s ease !important;
  }
  
  .menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2) !important;
  }
  
  .nav-menu {
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100vh !important;
    background: rgba(5, 5, 9, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding-top: 80px !important;
    transition: left 0.3s ease !important;
    z-index: 999 !important;
    overflow-y: auto !important;
  }
  
  .nav-menu.open {
    left: 0 !important;
  }
  
  .menu {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }
  
  .menu li {
    width: 100% !important;
    text-align: left !important;
    list-style: none !important;
  }
  
  .menu a {
    display: flex !important;
    align-items: center !important;
    padding: 18px 25px !important;
    font-size: 1.1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: 100% !important;
    color: white !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
  }
  
  .menu a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--secondary) !important;
  }
  
  .menu a::after {
    display: none !important;
  }
  
  .nav-menu::before {
    content: '' !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    z-index: -1 !important;
  }
  
  .nav-menu.open::before {
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .projetos-dropdown {
    width: 100% !important;
  }
  
  .projetos-dropdown > a {
    position: relative !important;
  }
  
  .projetos-dropdown > a::after {
    content: ' ▼' !important;
    font-size: 0.8em !important;
    margin-left: 8px !important;
    transition: transform 0.3s ease !important;
  }
  
  .projetos-dropdown.active > a::after {
    content: ' ▲' !important;
  }
  
  .dropdown-menu {
    position: static !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: none !important;
    width: 100% !important;
  }
  
  .dropdown-menu::before {
    display: none !important;
  }
  
  .projetos-dropdown.active .dropdown-menu {
    display: block !important;
  }
  
  .dropdown-menu a {
    padding: 15px 25px 15px 40px !important;
    font-size: 1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    background: rgba(255, 255, 255, 0.03) !important;
  }
  
  .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    padding-left: 45px !important;
  }
  
  .contadores {
    flex-direction: column;
    align-items: center;
  }
  
  .contador-box {
    width: 100%;
    max-width: 300px;
  }
  
  .cards-container {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding: 150px 0 60px;
  }
  
  .card-image {
    height: 250px;
  }
  
  .evento-detalhes p {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .evento-detalhes strong {
    margin-bottom: 5px;
    min-width: auto;
  }
  
  #canvas-3d {
    opacity: 0.3;
  }
  
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-float img {
    width: 30px;
    height: 30px;
  }
  
  .chat-toggle {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  
  .chatbot-container {
    width: calc(100% - 40px);
    height: 60vh;
    right: 20px;
    left: 20px;
    bottom: 80px;
  }
}

/* Celulares pequenos (até 480px) */
@media (max-width: 480px) {
  .header-container {
    padding: 0 10px !important;
  }
  
  .logo span {
    font-size: 1rem !important;
    max-width: 140px !important;
  }
  
  .logo-img {
    height: 35px !important;
  }
  
  .menu a {
    padding: 16px 20px !important;
    font-size: 1rem !important;
  }
  
  .dropdown-menu a {
    padding: 14px 20px 14px 35px !important;
  }
  
  .whatsapp-float {
    bottom: 80px;
    left: 20px;
  }
  
  .chat-toggle {
    bottom: 20px;
    right: 20px;
  }
}

/* ===== MODAL AVALIAÇÃO ===== */
.avaliacao-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 9, 0.95);
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.avaliacao-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(110, 69, 226, 0.3);
  max-width: 500px;
  width: 90%;
  text-align: center;
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.avaliacao-content h3 {
  color: var(--secondary);
  margin-bottom: 15px;
  font-size: 1.5rem;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.avaliacao-content p {
  margin-bottom: 25px;
  opacity: 0.9;
  line-height: 1.6;
}

.notas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.nota-btn {
  width: 45px;
  height: 45px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--light);
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.nota-btn:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.nota-btn.selecionada {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--dark);
}

.sugestao-container {
  margin: 25px 0;
  text-align: left;
}

.sugestao-container label {
  display: block;
  margin-bottom: 10px;
  color: var(--secondary);
  font-weight: 600;
}

.sugestao-container textarea {
  width: 100%;
  height: 100px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--light);
  resize: vertical;
  font-family: 'Poppins', sans-serif;
}

.sugestao-container textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.avaliacao-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.avaliacao-actions button {
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

#enviar-avaliacao {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

#enviar-avaliacao:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(110, 69, 226, 0.4);
}

#enviar-avaliacao:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

#pular-avaliacao {
  background: transparent;
  color: var(--light);
  border: 1px solid var(--primary);
}

#pular-avaliacao:hover {
  background: var(--primary);
}

.close-avaliacao {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.close-avaliacao:hover {
  background: rgba(255, 255, 255, 0.1);
}

.media-avaliacoes {
  text-align: center;
  padding: 40px 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  margin: 40px 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.nota-media {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.total-avaliacoes {
  opacity: 0.8;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .avaliacao-content {
    padding: 30px 20px;
  }
  
  .nota-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  
  .avaliacao-actions {
    flex-direction: column;
  }
  
  .avaliacao-actions button {
    width: 100%;
  }
}