/* Main CSS Styles */
:root {
  --primary-color: #FF41B4;
  --primary-light: #FF7AC9;
  --primary-dark: #CC2090;
  --secondary-color: #111111;
  --secondary-light: #333333;
  --secondary-dark: #000000;
  --accent-color: #7C3AED;
  --text-light: #FFFFFF;
  --text-dark: #111111;
  --text-gray: #777777;
  --background-light: #FFFFFF;
  --background-dark: #111111;
  --background-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 15px 35px rgba(0, 0, 0, 0.2);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  box-shadow: 0 4px 10px rgba(255, 65, 180, 0.3);
}

.btn:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 65, 180, 0.4);
}

.btn-large {
  padding: 15px 32px;
  font-size: 18px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  background-color: var(--secondary-light);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #341933;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}
  #mobile-nav{
  display: none;
  }
  #mobile-nav img{
      z-index: 999;
      cursor: pointer;
  }
  #mobile-nav ul{
      width: 100%;
      background-color: rgba(180, 0, 165, 0.95);
      position: absolute;
      top:-150px;
      left:0;
      text-align: center;
      transition: .5s;
    }
    #mobile-nav ul.aberto{
      top:0px !important;
    } 
  #mobile-nav ul li{
    width: 100%;
    padding: 10px;
  }
@media screen and (max-width:700px){
  #mobile-nav{
    display: flex !important;
  }
  .cta-button{
    display: none;
  }
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0;
}

nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
}

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

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 150px 0 100px;
  background: linear-gradient(135deg, #111111 0%, #333333 100%);
  color: var(--text-light);
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
  background: linear-gradient(to right, #FF41B4, #FF7AC9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.hero-cta {
  display: flex;
  gap: 20px;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: var(--shadow-strong);
  transform: perspective(1000px) rotateY(-15deg);
  transition: transform 0.5s ease;
}

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

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: var(--background-light);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--text-dark);
}

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

.feature-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 65, 180, 0.1);
  border-radius: 50%;
}

.feature-svg {
  width: 35px;
  height: 35px;
  color: var(--primary-color);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-gray);
  margin-bottom: 0;
}

/* Showcase Section */
.showcase {
  padding: 100px 0;
  background-color: #f9f9f9;
}

.showcase .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.showcase-image {
  flex: 1;
}

.showcase-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.showcase-content {
  flex: 1;
}

.showcase-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.showcase-content p {
  color: var(--text-gray);
  margin-bottom: 30px;
}

.feature-list {
  margin-bottom: 30px;
}

.feature-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.feature-check {
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: var(--background-light);
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-gray);
  margin-bottom: 15px;
}

.testimonial-content h4 {
  color: var(--text-dark);
  margin-bottom: 5px;
}

.testimonial-role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 0;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.testimonial-control {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid var(--primary-light);
  color: var(--primary-color);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-control:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Call to Action Section */
.cta {
  padding: 100px 0;
  background: var(--background-gradient);
  color: var(--text-light);
  text-align: center;
}

.cta h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Footer */
#footer {
  padding: 80px 0 30px;
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-about {
  grid-column: span 2;
}

.footer-about .logo {
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

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

.social-link:hover {
  background-color: var(--primary-color);
}

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

.footer-links h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--text-light);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary-color);
}

.newsletter-form {
  display: flex;
  margin-top: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 50px 0 0 50px;
  font-family: inherit;
}

.newsletter-form button {
  border-radius: 0 50px 50px 0;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}