/* Supago Theme - Main Styles */

/* CSS Variables */
:root {
  --primary-color: #FF4081;
  --primary-dark: #E91E63;
  --bg-dark: #0A0A0A;
  --bg-dark-secondary: #1A1A1A;
  --bg-card: #2A2A2A;
  --text-primary: #FFFFFF;
  --text-secondary: #B0B0B0;
  --text-muted: #808080;
  --border-color: #333333;
  --shadow-color: rgba(255, 64, 129, 0.1);
  --gradient-primary: linear-gradient(135deg, #FF4081 0%, #E91E63 100%);
  --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.main-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  color: var(--primary-color);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-login {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.btn-login:hover {
  color: var(--primary-color);
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--shadow-color);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.network-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Partners Section */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 767px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(255, 64, 129, 0.1);
}

.partner-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(255, 64, 129, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Quote Section */
.quote-section {
  background: linear-gradient(135deg, #2A1B3D 0%, #1A1A2E 100%);
  padding: 3rem 2rem;
  margin: 3rem 0;
  border-radius: 12px;
  text-align: center;
}

.quote-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-primary);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  word-spacing: 0.1em;
  hyphens: auto;
  text-align: center;
}

/* Fraud Detection Section */
.fraud-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 5rem 0;
}

.fraud-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.fraud-content p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.fraud-icon {
  text-align: center;
}

.fraud-icon svg {
  width: 200px;
  height: 200px;
  fill: var(--primary-color);
}

/* Testimonials Section */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.star {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.testimonial-role {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Help Center Section */
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.help-category {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.help-category:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.help-category-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.help-category h3 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.help-links {
  list-style: none;
}

.help-links li {
  margin-bottom: 0.75rem;
}

.help-links a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 6px;
  border: 1px solid transparent;
  display: block;
  transition: all 0.3s ease;
}

.help-links a:hover {
  color: var(--text-primary);
  background: rgba(255, 64, 129, 0.1);
  border-color: var(--primary-color);
}

/* Footer */
.site-footer {
  background: var(--bg-dark-secondary);
  border-top: 1px solid var(--border-color);
  padding: 2rem 0;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }
  
  .main-nav ul {
    gap: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .fraud-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .section-container {
    padding: 0 1rem;
  }
  
  .partners-grid,
  .services-grid,
  .help-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}


/* Newsletter Section Styles */
.newsletter-section {
  background: linear-gradient(135deg, #2A1B3D 0%, #1A1A2E 100%);
  padding: 4rem 0;
  text-align: center;
}

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

.newsletter-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.newsletter-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.newsletter-input {
  flex: 1;
  max-width: 350px;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
  backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
}

.newsletter-button {
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-button:hover {
  background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
  transform: translateY(-1px);
}

/* Updated Footer Styles */
.site-footer {
  background: var(--bg-dark-secondary);
  border-top: 1px solid var(--border-color);
  padding: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
  padding: 3rem 2rem;
  border-bottom: 1px solid var(--border-color);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  /* Remove todas as limitações */
}

.footer-brand {
  /* Remove limitações */
}

.footer-column-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer-menu li {
  margin-bottom: 0.5rem;
}

.footer-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.85rem;
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 0.75rem;
}

.footer-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-menu a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  padding: 1.5rem 2rem;
  background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(233, 30, 99, 0.1);
  border: 1px solid rgba(233, 30, 99, 0.3);
  border-radius: 50%;
  color: var(--primary-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Footer Styles */
@media (max-width: 768px) {
  .newsletter-title {
    font-size: 2rem;
  }
  
  .newsletter-input-group {
    flex-direction: column;
    gap: 1rem;
  }
  
  .newsletter-input {
    max-width: 100%;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom-content {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .newsletter-container {
    padding: 0 1rem;
  }
  
  .newsletter-title {
    font-size: 1.75rem;
  }
  
  .newsletter-subtitle {
    font-size: 1rem;
  }
  
  .footer-content {
    padding: 2rem 1rem;
  }
  
  .footer-bottom {
    padding: 1rem;
  }
}


/* Services Section Styles */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid;
  border-image: linear-gradient(135deg, #E91E63, #FF4081, transparent) 1;
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(135deg, #E91E63, #FF4081, transparent);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

.service-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(233, 30, 99, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.service-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.service-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 4rem 0 1rem 0;
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Quote Section */
.quote-section {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.3), rgba(75, 0, 130, 0.3));
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 4rem;
}

.quote-text {
  color: var(--text-primary);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
  max-width: 100%;
  word-spacing: 0.1em;
  hyphens: auto;
}

/* Fraud Detection Section */
.fraud-detection-section {
  margin-top: 4rem;
  padding: 4rem 0;
}

.fraud-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fraud-text {
  order: 1;
}

.fraud-icon {
  order: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fraud-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.fraud-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.fraud-icon-img {
  width: 300px;
  height: 300px;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .service-icon {
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
  }
  
  .service-icon-img {
    width: 20px;
    height: 20px;
  }
  
  .service-card h3 {
    margin: 3rem 0 1rem 0;
    font-size: 1.25rem;
  }
  
  .fraud-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .fraud-text {
    order: 2;
  }
  
  .fraud-icon {
    order: 1;
  }
  
  .fraud-title {
    font-size: 2rem;
  }
  
  .fraud-icon-img {
    width: 200px;
    height: 200px;
  }
}


/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-content {
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .footer-brand {
    flex-basis: 100%;
  }
  
  .footer-column:not(.footer-brand) {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-brand {
    text-align: center;
  }
}


.footer-logo {
  margin-bottom: 0.5rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.4;
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

