/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: #8a2be2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    color: white;
}
.logo-icon img{
    width: 46px;
    margin-top: 9px;
    border-radius: 11px;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    margin: 0;
}

.tagline {
    font-size: 0.875rem;
    color: #d1d5db;
    margin: 0;
}

.desktop-nav {
    display: none;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #8a2be2;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    display: none;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 12px;
    margin-top: 1rem;
    padding: 1rem;
}

.mobile-nav.show {
    display: block;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin: 0.75rem 0;
}

.mobile-nav .nav-link {
    display: block;
    padding: 0.5rem 0;
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(0, 0, 0, 1) 100%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-icon {
    width: 96px;
    height: 96px;
    /*background: #8a2be2;*/
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: bold;
    font-size: 3rem;
    color: white;
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.6s ease 0.2s forwards;
}
.hero-logo-icon img{
    width:130% ;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #8a2be2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 4vw, 2rem);
    color: #d1d5db;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.125rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.hero-btn {
    background: #8a2be2;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.hero-btn:hover {
    background: #7c26cb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.3);
}

/* Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-dark {
    background: #000000;
}

.section-purple {
    background: #8a2be2;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
}

.section-title.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.text-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #d1d5db;
    opacity: 0;
    transform: translateY(20px);
}

.text-content p.animate {
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

/* Essence Grid */
.essence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.essence-card {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.essence-card.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.essence-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.essence-card p {
    color: #f3f4f6;
    line-height: 1.7;
}

.essence-card ul {
    list-style: none;
    color: #f3f4f6;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
}

.service-icon {
    color: #8a2be2;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.service-icon i {
    width: 48px;
    height: 48px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: white;
}

.service-card p {
    color: #d1d5db;
    line-height: 1.6;
}

/* Differentials Grid */
.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.differential-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.differential-card.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.differential-card:hover {
    background: rgba(255, 255, 255, 0.2);
}

.differential-bullet {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
}

.differential-card p {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0;
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.audience-card {
    background: rgba(138, 43, 226, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.audience-card.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.audience-card:hover {
    background: rgba(138, 43, 226, 0.3);
    transform: translateY(-3px) scale(1.02);
}

.audience-icon {
    color: #8a2be2;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.audience-icon i {
    width: 32px;
    height: 32px;
}

.audience-card h3 {
    color: white;
    font-weight: 600;
    margin: 0;
}

/* Contact Section */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(20px);
}

.contact-item.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.contact-item i {
    color: #ffffff;
    width: 24px;
    height: 24px;
}

.contact-item span {
    font-size: 1.125rem;
    color: white;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #d1d5db;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid rgba(138, 43, 226, 0.3);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    color: #9ca3af;
    margin: 0;
}

.modal.hidden {
    display: none;
  }
  
  .modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
  }
  
  .modal-content {
    position: relative;
    background: #fff;
    color: #000;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    z-index: 10;
  }
  
  .modal-content h2 {
    margin-bottom: 1rem;
  }
  
  .modal-content label {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
  }
  
  .modal-content input,
  .modal-content textarea {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.25rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .modal-content button[type="submit"] {
    margin-top: 1.5rem;
    padding: 0.75rem;
    background-color: #8a2be2;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  .footer-btn{
    background: #ffffff;
    color: rgb(114, 114, 114);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(0);
  }
  
  .close-btn {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
  }

  .redes-sociais{
    align-items: center;
  }

  .social{
    background-color: #8a2be2;
    font-family: 'Inter', sans-serif;
    color: #bdc0c5;
    font-weight: 300;
    text-align: -webkit-center;
    height: 140px;
  }

  .social p{
    padding: 15px;
  }

  #social-icons{
    display: inline-flex;
    padding: 10px;
    gap: 20px;
  }

  #social-icons a{
    text-decoration: none;

  }

  .social img  {
    width: 30px;    
  }

  #line-social{
    border:solid #9ca3af 1px;
    width: 50%;
  }
  

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .tagline {
        display: block;
    }
    
    .essence-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .audience-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .tagline {
        display: none;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
}

/* ✅ Responsividade */
@media (max-width: 480px) {
    .modal-content {
      padding: 1.2rem;
      width: 95%;
      max-width: none;
      font-size: 0.95rem;
    }
  
    .modal-content h2 {
      font-size: 1.2rem;
      text-align: center;
    }
  
    .modal-content button[type="submit"] {
      font-size: 0.95rem;
      padding: 0.6rem;
    }
  
    .close-btn {
      top: 0.25rem;
      right: 0.5rem;
      font-size: 1.25rem;
    }
}