/* Estilos para a Landing Page da Lucas ADS */

/* Reset e estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Anisette Std Petite Light';
  src: url('../fonts/AnisetteStdPetite-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Anisette Std Petite Regular';
  src: url('../fonts/AnisetteStdPetite-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Anisette Std Petite Bold';
  src: url('../fonts/AnisetteStdPetite-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

:root {
  --primary-color: #002BFF;
  --secondary-color: #00FFFF;
  --tertiary-color: #00A5FF;
  --dark-bg: #181818;
  --light-bg: #BEDDEE;
  --dark-text: #25555;
  --light-text: #FFFFFF;
  --gradient-blue: linear-gradient(to bottom, #00FFFF, #002BFF);
}

body {
  font-family: 'Anisette Std Petite Light', sans-serif;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--light-bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Anisette Std Petite Bold', sans-serif;
  margin-bottom: 1rem;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--tertiary-color);
}

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--light-text);
  border: none;
  border-radius: 50px;
  font-family: 'Anisette Std Petite Bold', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  background-color: var(--tertiary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 43, 255, 0.2);
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.2rem;
}

.section {
  padding: 80px 0;
}

.section-dark {
  background-color: var(--dark-bg);
  color: var(--light-text);
}

.section-light {
  background-color: var(--light-bg);
  color: var(--dark-text);
}

.section-gradient {
  background: var(--gradient-blue);
  color: var(--light-text);
}

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

/* Header */
.header {
  background-color: var(--dark-bg);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  height: 50px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 30px;
}

.nav-link {
  color: var(--light-text);
  font-family: 'Anisette Std Petite Regular', sans-serif;
}

.nav-link:hover {
  color: var(--secondary-color);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--light-text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background-color: var(--dark-bg);
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  color: var(--light-text);
  padding: 150px 0 100px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 24, 24, 0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--light-text);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-family: 'Anisette Std Petite Regular', sans-serif;
}

.hero-cta {
  margin-top: 2rem;
}

/* Social Proof Section */
.social-proof {
  text-align: center;
  padding: 60px 0;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 40px 0;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  margin: 20px;
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-family: 'Anisette Std Petite Bold', sans-serif;
}

.stat-text {
  font-size: 1.2rem;
  font-family: 'Anisette Std Petite Regular', sans-serif;
}

.clients-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}

.client-logo {
  margin: 15px 30px;
  max-width: 150px;
  height: auto;
  transition: all 0.3s ease;
}

.client-logo:hover {
  transform: scale(1.1);
}

/* Problems Section */
.problems {
  background-color: var(--dark-bg);
  color: var(--light-text);
  padding: 80px 0;
}

.problems-title {
  text-align: center;
  margin-bottom: 50px;
}

.problems-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.problem-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.problem-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.problem-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Method Section */
.method {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.method-title {
  text-align: center;
  margin-bottom: 50px;
}

.method-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.method-step {
  flex: 1;
  min-width: 300px;
  text-align: center;
  padding: 30px;
  background-color: var(--light-text);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.method-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.method-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--light-text);
  border-radius: 50%;
  font-size: 2rem;
}

.method-step-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.method-description {
  color: var(--dark-text);
}

/* Success Cases Section */
.success-cases {
  background-color: var(--dark-bg);
  color: var(--light-text);
  padding: 80px 0;
}

.success-title {
  text-align: center;
  margin-bottom: 50px;
}

.cases-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.case-card {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.case-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.case-content {
  padding: 20px;
}

.case-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.case-result {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: bold;
}

/* Target Audience Section */
.target {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.target-title {
  text-align: center;
  margin-bottom: 30px;
}

.target-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
}

.benefits-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.benefit-icon {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-right: 15px;
}

.benefit-text {
  font-size: 1.1rem;
}

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

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background-color: var(--dark-bg);
  color: var(--light-text);
  padding: 60px 0 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 15px;
}

.footer-contact {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-icon {
  margin-right: 10px;
  color: var(--secondary-color);
}

.footer-social {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
}

.social-title {
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

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

/* Responsividade */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .method-step, .case-card {
    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 20px;
  }
  
  .nav-menu {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-item {
    margin: 10px 0;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .stat-item {
    min-width: 150px;
  }
  
  .method-step, .case-card, .problem-card {
    min-width: 100%;
  }
  
  .footer-container {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 120px 0 80px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .btn-large {
    padding: 12px 30px;
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-subtitle {
    font-size: 1.1rem;
  }
}
