/* CSS/SejaPrestador.css */

/* Variáveis de cores - mantendo a identidade visual */
:root {
  --primary: #1e90ff;
  --accent: #4dd0ff;
  --bg: #0a0f1a;
  --dark-bg: #0f1724;
  --card-bg: #12203b;
  --text: #ffffff;
  --text-light: #d5dfe8;
  --success: #4ade80;
  --warning: #facc15;
  --error: #f87171;
}

/* Reset e estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Partículas de fundo */
.floating-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.particle-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(77, 208, 255, 0.1);
  animation: float 15s infinite ease-in-out;
}

.circle-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.circle-2 {
  width: 100px;
  height: 100px;
  top: 70%;
  left: 10%;
  animation-delay: -2s;
}

.circle-3 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 5%;
  animation-delay: -5s;
}

.circle-4 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 10%;
  animation-delay: -7s;
}

.circle-5 {
  width: 80px;
  height: 80px;
  top: 40%;
  left: 20%;
  animation-delay: -10s;
}

.circle-6 {
  width: 180px;
  height: 180px;
  top: 50%;
  right: 20%;
  animation-delay: -12s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.8;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5%;
  height: 72px;
  background: rgba(10, 15, 26, 0.9);
  backdrop-filter: saturate(120%) blur(6px);
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-image {
  height: 160px;
  width: auto;
  margin-top: 10px;
  transition: all 0.4s ease;
}

.nav {
  display: flex;
  align-items: center;
  margin-right: 47px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-link-item {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-link-item:hover::after,
.nav-link-item.active::after {
  width: 100%;
}

.nav-link-item:hover,
.nav-link-item.active {
  color: var(--accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--dark-bg);
  z-index: 1001;
  padding: 80px 20px 20px;
  transition: right 0.3s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.sidebar.active {
  right: 0;
}

.sidebar-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-link {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 12px 0;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
}

.sidebar-link:hover,
.sidebar-link.active {
  color: var(--accent);
}

/* Hero Section */
.prestador-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin: 40px 0;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  display: inline-block;
}

.stat-symbol {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-block;
  margin-left: 2px;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 5px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  max-width: 500px;
  height: 400px;
}

.floating-cards {
  position: relative;
  width: 100%;
  height: 100%;
}

.professional-card {
  position: absolute;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: float-card 15s infinite ease-in-out;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.professional-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.professional-card:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.professional-card:nth-child(2) {
  top: 50%;
  right: 5%;
  animation-delay: -5s;
  z-index: 2;
}

.professional-card:nth-child(3) {
  bottom: 15%;
  left: 20%;
  animation-delay: -10s;
}

@keyframes float-card {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.card-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
}

.card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text);
}

.card-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--warning);
  font-size: 0.9rem;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid var(--accent);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  background: #0d7bd4;
}

.btn-secondary:hover {
  background: rgba(77, 208, 255, 0.1);
}

.shine-effect::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.01) 50%,
    rgba(255, 255, 255, 0.2)
  );
  transform: rotate(30deg);
  animation: shine 5s infinite;
}

@keyframes shine {
  0% {
    top: -50%;
    left: -50%;
  }
  20% {
    top: 100%;
    left: 100%;
  }
  100% {
    top: 100%;
    left: 100%;
  }
}

.btn-icon {
  margin-right: 8px;
}

/* Section Styles */
.advantages-section,
.eligibility-section,
.process-section,
.categories-section {
  padding: 100px 5%;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Advantages Grid */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.advantage-item {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: var(--accent);
}

.advantage-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(77, 208, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.advantage-item:hover .advantage-icon {
  background: var(--accent);
  color: var(--bg);
  transform: scale(1.1);
}

.advantage-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text);
}

.advantage-content p {
  color: var(--text-light);
}

/* Eligibility Section */
.eligibility-section {
  background: var(--dark-bg);
}

.eligibility-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.eligibility-criteria {
  flex: 1;
}

.criteria-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.criteria-item:hover {
  background: rgba(77, 208, 255, 0.1);
  transform: translateX(10px);
}

.criteria-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(77, 208, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.criteria-item:hover .criteria-icon {
  background: var(--accent);
  color: var(--bg);
  transform: scale(1.1);
}

.criteria-details h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text);
}

.criteria-details p {
  color: var(--text-light);
}

.eligibility-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.visual-container {
  position: relative;
  width: 300px;
  height: 300px;
}

.floating-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  animation: pulse 2s infinite;
  z-index: 2;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(30, 144, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(30, 144, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(30, 144, 255, 0);
  }
}

.visual-card {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 280px;
}

.visual-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text);
}

.visual-card p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.visual-card .btn {
  width: 100%;
}

/* Process Section */
.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 60px 0;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  z-index: 1;
}

.process-item {
  position: relative;
  width: 23%;
  text-align: center;
  z-index: 2;
}

.process-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 20px;
  position: relative;
  animation: pulse 2s infinite;
}

.process-content {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 30px 20px;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-item:hover .process-content {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: var(--accent);
}

.process-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text);
}

.process-content p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.category-item {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: var(--accent);
}

.category-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(77, 208, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--accent);
  transition: all 0.4s ease;
}

.category-item:hover .category-icon {
  background: var(--accent);
  color: var(--bg);
  transform: scale(1.1) rotate(10deg);
}

.category-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text);
}

.category-item p {
  color: var(--text-light);
}

/* Final CTA Section */
.final-cta-section {
  padding: 100px 5%;
  background: linear-gradient(135deg, var(--primary) 0%, #0066cc 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 100% 100%;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.cta-visual {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px 20px;
  width: 200px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.cta-card i {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 15px;
  display: block;
}

.cta-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: white;
}

.cta-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* Footer */
.footer {
  background: var(--dark-bg);
  padding: 60px 0 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about p {
  color: var(--text-light);
  margin: 15px 0;
  line-height: 1.6;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--text);
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--text-light);
}

.footer-contact i {
  color: var(--accent);
  width: 20px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-visual {
    width: 45%;
  }
  
  .process-steps {
    flex-direction: column;
    gap: 40px;
  }
  
  .process-steps::before {
    display: none;
  }
  
  .process-item {
    width: 100%;
  }
  
  .eligibility-content {
    flex-direction: column;
  }
  
  .eligibility-visual {
    margin-top: 40px;
  }
  
  .visual-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .floating-badge {
    position: relative;
    margin-bottom: 20px;
  }
  
  .visual-card {
    position: relative;
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .prestador-hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }
  
  .hero-content {
    max-width: 100%;
    margin-bottom: 60px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    margin: 0 auto 40px;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-visual {
    position: relative;
    width: 100%;
    height: 400px;
    right: auto;
    top: auto;
    transform: none;
  }
  
  .professional-card {
    position: relative;
    margin: 0 auto 20px;
    animation: none;
  }
  
  .floating-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .advantage-item {
    flex-direction: column;
    text-align: center;
  }
  
  .criteria-item {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-visual {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-card {
    width: 100%;
    max-width: 300px;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .criteria-item {
    padding: 15px;
  }
}