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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
}

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

.logo-img {
  height: 40px;
  filter: invert(1);
}

.header-cta .cta-button {
  padding: 12px 24px;
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 70px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.badge-icon {
  font-size: 1.1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 25px;
  line-height: 1.1;
}

.hero-title .highlight {
  color: #4caf50;
  text-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
}

.hero-title .price {
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 500;
  opacity: 0.95;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 50px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
  text-align: left;
}

.feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #4caf50;
}

.feature p {
  opacity: 0.9;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-trust {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-text {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.cta-button.large {
  padding: 22px 50px;
  font-size: 1.2rem;
}

.cta-button.primary {
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: white;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.cta-button.primary:hover {
  background: linear-gradient(135deg, #45a049, #3d8b40);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: #4caf50;
  border: 2px solid #4caf50;
}

.cta-button.secondary:hover {
  background: #4caf50;
  color: white;
}

.cta-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
  transform: translateX(5px);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 50px;
}

/* Social Proof Section */
.social-proof {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 80px 0;
}

.proof-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: center;
}

.proof-item {
  background: white;
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.proof-item:hover {
  transform: translateY(-10px);
}

.proof-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.proof-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #4caf50;
  margin-bottom: 10px;
}

.proof-label {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Target Audience Section */
.target-audience {
  padding: 100px 0;
}

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

.audience-item {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.audience-item:hover {
  border-color: #4caf50;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.1);
}

.audience-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.audience-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #1a1a1a;
}

/* Process Steps Section */
.process-steps {
  background: #1a1a1a;
  color: white;
  padding: 100px 0;
}

.process-steps .section-header h2 {
  color: white;
}

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

.step {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 25px;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #4caf50;
}

/* Business Models Section */
.business-models {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.models-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.model-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.model-card:hover {
  transform: translateY(-10px);
}

.model-card.featured {
  border: 3px solid #4caf50;
  box-shadow: 0 15px 40px rgba(76, 175, 80, 0.2);
}

.model-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

.model-image {
  height: 220px;
  overflow: hidden;
}

.model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.model-card:hover .model-image img {
  transform: scale(1.05);
}

.model-content {
  padding: 30px;
}

.model-content h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.model-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #4caf50;
  margin-bottom: 10px;
}

.model-description {
  color: #666;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.model-features {
  list-style: none;
  padding: 0;
}

.model-features li {
  padding: 8px 0;
  color: #333;
  font-weight: 500;
}

.models-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 50px;
}

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

.models-table {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.table-header {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1.5fr;
  background: #1a1a1a;
  color: white;
  font-weight: 600;
  padding: 25px 20px;
  font-size: 16px;
}

.table-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1.5fr;
  padding: 20px;
  border-bottom: 1px solid #eee;
  align-items: center;
  transition: background 0.3s ease;
  font-size: 15px;
}

.table-row:nth-child(even) {
  background: #f8f9fa;
}

.table-row:hover {
  background: #e8f5e8;
}

/* Esconde os labels no desktop */
.table-row div::before {
  display: none;
}

/* Layout mobile com labels ao lado */
@media (max-width: 768px) {
  .table-header {
    display: none; /* Esconde o header original */
  }

  .table-row {
    display: block;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white !important;
  }

  .table-row:hover {
    background: #f8f9fa !important;
  }

  .table-row div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
  }

  .table-row div:last-child {
    border-bottom: none;
  }

  /* Mostra os labels usando data-label */
  .table-row div::before {
    content: attr(data-label) ":";
    font-weight: 600;
    color: #333;
    display: inline-block;
    min-width: 100px;
  }

  /* Estilo especial para o modelo (primeiro item) */
  .table-row div:first-child {
    background: #f8f9fa;
    margin: -20px -20px 10px -20px;
    padding: 15px 20px;
    border-bottom: 2px solid #1a1a1a;
    border-radius: 8px 8px 0 0;
  }

  .table-row div:first-child::before {
    color: #1a1a1a;
    font-weight: 700;
  }
}

/* Para telas muito pequenas */
@media (max-width: 480px) {
  .container {
    padding: 10px;
  }

  .table-row {
    padding: 15px;
    margin-bottom: 10px;
  }

  .table-row div {
    font-size: 13px;
    padding: 6px 0;
  }

  .table-row div::before {
    min-width: 80px;
    font-size: 12px;
  }

  .table-row div:first-child {
    margin: -15px -15px 8px -15px;
    padding: 12px 15px;
  }
}

/* Store Gallery Section */
.store-gallery {
  padding: 100px 0;
  background: #000;
  color: white;
}

.store-gallery .section-header h2 {
  color: white;
}

.gallery-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

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

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: white;
  padding: 40px 25px 25px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #4caf50;
}

/* Founder Story Section */
.founder-story {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 100px 0;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-images {
  position: relative;
}

.main-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.secondary-image {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  border: 5px solid white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.founder-intro {
  margin-bottom: 30px;
}

.founder-intro h3 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.founder-title {
  color: #4caf50;
  font-weight: 600;
  font-size: 1.1rem;
}

.story-text p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.8;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #4caf50;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.founder-quote {
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: white;
  padding: 30px;
  border-radius: 15px;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 30px;
  position: relative;
}

.founder-quote::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -10px;
  left: 20px;
  opacity: 0.3;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: #1a1a1a;
  color: white;
}

.testimonials .section-header h2 {
  color: white;
}

.testimonials .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial.featured {
  border: 2px solid #4caf50;
}

.testimonial-video,
.testimonial-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(76, 175, 80, 0.9);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
}

.testimonial-content {
  padding: 30px;
}

.stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-content p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author strong {
  color: #4caf50;
  display: block;
  margin-bottom: 5px;
}

.testimonial-author span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Lead Form Section */
.lead-form {
  background: #1a1a1a;
  color: white;
  padding: 100px 0;
}

.form-header {
  text-align: center;
  margin-bottom: 60px;
}

.form-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.form-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.franchise-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-section {
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-section h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: #4caf50;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row input,
.form-row select,
textarea {
  padding: 18px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.form-row input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-row input:focus,
.form-row select:focus,
textarea:focus {
  outline: none;
  border-color: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.radio-group label,
.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 1rem;
  padding: 15px;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.radio-group label:hover,
.checkbox-group label:hover {
  background: rgba(255, 255, 255, 0.05);
}

.radio-group input,
.checkbox-group input {
  margin-top: 2px;
  transform: scale(1.2);
}

textarea {
  width: 100%;
  resize: vertical;
  min-height: 120px;
}

/* Final CTA Section */
.final-cta {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 100px 0;
}

.cta-content {
  text-align: center;
  margin-bottom: 60px;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.cta-content p {
  font-size: 1.2rem;
  color: #666;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.cta-item {
  background: white;
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.cta-item:hover {
  transform: translateY(-5px);
}

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

.cta-item h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #4caf50;
}

/* Thank You Page */
.thank-you {
  background: #1a1a1a;
  color: white;
  padding: 100px 0;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  font-size: 5rem;
  margin-bottom: 30px;
}

.thank-you-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #4caf50;
}

.next-steps,
.immediate-contact {
  margin: 50px 0;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.next-steps h3,
.immediate-contact h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #4caf50;
}

.whatsapp-button-thank-you {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 20px 40px;
  text-decoration: none;
  border-radius: 15px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
  background: linear-gradient(135deg, #128c7e, #0d7377);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 15px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 10px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .table-header,
  .table-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
  }

  .models-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .audience-grid,
  .steps-grid,
  .testimonials-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .form-section {
    padding: 25px;
  }

  .story-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .secondary-image {
    position: static;
    width: 100%;
    height: 200px;
    margin-top: 20px;
  }

  .hero-features {
    gap: 20px;
  }

  .feature {
    padding: 25px;
  }

  .cta-button.large {
    padding: 18px 30px;
    font-size: 1rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content>* {
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  animation-delay: 0.1s;
}

.hero-title {
  animation-delay: 0.2s;
}

.hero-subtitle {
  animation-delay: 0.3s;
}

.hero-description {
  animation-delay: 0.4s;
}

.hero-features {
  animation-delay: 0.5s;
}

.hero-cta-group {
  animation-delay: 0.6s;
}

/* Scroll animations */
.section-header,
.proof-item,
.audience-item,
.step,
.model-card,
.testimonial {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.section-header.animate,
.proof-item.animate,
.audience-item.animate,
.step.animate,
.model-card.animate,
.testimonial.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Loading states */
.form-section input:invalid {
  border-color: rgba(255, 68, 68, 0.5);
}

.form-section input:valid {
  border-color: rgba(76, 175, 80, 0.5);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #4caf50;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #45a049;
}

/* Seção do WhatsApp */
.whatsapp-section {
  position: relative;
  z-index: 1000;
}

/* Seção do WhatsApp */
.whatsapp-section {
  position: relative;
  z-index: 1000;
}

/* Botão Flutuante do WhatsApp - Desktop */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1001;
  animation: slideInUp 0.8s ease-out 1s both;
}

.whatsapp-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}

.whatsapp-button:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-button:hover .whatsapp-icon {
  animation: wiggle 0.5s ease-in-out;
}

.whatsapp-button:active {
  transform: scale(0.95);
}

/* Ícone do WhatsApp */
.whatsapp-icon {
  width: 32px;
  height: 32px;
  z-index: 2;
  position: absolute;
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e1e5e9;
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid white;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(-8px);
}

.tooltip-text {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
}

.tooltip-subtext {
  font-size: 12px;
  color: #666;
}

/* Efeito de pulso */
.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 3px solid #25D366;
  border-radius: 50%;
  opacity: 0.7;
  animation: pulse 2s infinite ease-out;
  pointer-events: none;
}

/* Indicador de notificação */
.notification-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  background-color: #ff4444;
  border-radius: 50%;
  border: 2px solid white;
  animation: bounce 1.5s infinite;
  pointer-events: none;
}

.notification-badge::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
}

/* Versão Mobile */
.whatsapp-mobile {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 1001;
  display: none;
  animation: slideInUp 0.8s ease-out 1.5s both;
}

.whatsapp-button-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background-color: #25D366;
  color: white;
  padding: 16px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-button-mobile:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-button-mobile:active {
  transform: translateY(0);
}

.whatsapp-icon-mobile {
  width: 24px;
  height: 24px;
}

/* Animações */
@keyframes slideInUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.3;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.2);
  }

  60% {
    transform: scale(1.1);
  }
}

@keyframes wiggle {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-10deg);
  }

  75% {
    transform: rotate(10deg);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .whatsapp-float {
    display: none;
  }

  .whatsapp-mobile {
    display: block;
  }
}

@media (max-width: 480px) {
  .whatsapp-mobile {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-button-mobile {
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {

  .whatsapp-button,
  .whatsapp-button-mobile,
  .pulse-ring,
  .notification-badge {
    animation: none;
  }

  .whatsapp-float,
  .whatsapp-mobile {
    animation: none;
  }
}

/* Estados de foco para acessibilidade */
.whatsapp-button:focus,
.whatsapp-button-mobile:focus {
  outline: 3px solid #4A90E2;
  outline-offset: 2px;
}

/* Evitar conflitos com outros estilos */
.whatsapp-section * {
  box-sizing: border-box;
}

.whatsapp-section a {
  text-decoration: none;
}

/* Founder Videos Section */
.founder-videos {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 2px solid #e9ecef;
}

.founder-videos-header {
  text-align: center;
  margin-bottom: 50px;
}

.founder-videos-header h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.founder-videos-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

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

.founder-video-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.founder-video-item:hover {
  transform: translateY(-5px);
  border-color: #4caf50;
  box-shadow: 0 15px 40px rgba(76, 175, 80, 0.15);
}

.founder-video-container {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #000;
}

.founder-video-container video {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

.founder-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.founder-play-button:hover {
  background: linear-gradient(135deg, #45a049, #3d8b40);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}

.founder-video-content {
  padding: 25px;
  position: relative;
}

.founder-video-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.founder-video-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.video-duration {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Responsividade para a seção de vídeos do fundador */
@media (max-width: 768px) {
  .founder-videos {
    margin-top: 50px;
    padding-top: 40px;
  }

  .founder-videos-header h3 {
    font-size: 1.8rem;
  }

  .founder-videos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .founder-video-container {
    height: 200px;
  }

  .founder-play-button {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .founder-video-content {
    padding: 20px;
  }

  .founder-videos-header h3 {
    font-size: 1.6rem;
  }

  .founder-video-container {
    height: 180px;
  }
}