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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Ubuntu", "Arial", sans-serif;
  background-color: rgb(168, 10, 214);
}

.header {
  background-color: rgba(168, 10, 214, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo h1 {
  color: #1C1412;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  text-transform: lowercase;
  letter-spacing: -1px;
}

.logo-image {
  height: 100px;
  width: auto;
  object-fit: contain;
}

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

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

.nav-item {
  position: relative;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  opacity: 0.7;
}

/* Botão hamburger para mobile */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #1C1412;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Prevenir scroll quando menu estiver aberto */
body.menu-open {
  overflow: hidden;
}

/* Responsividade */
@media (max-width: 768px) {
  .container {
    justify-content: space-between;
    align-items: center;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #FAF8ED;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  .navigation.active {
    transform: translateX(0);
  }

  .nav-menu {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .nav-link {
    font-size: 24px;
    font-weight: 600;
    color: #1C1412;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .nav-link:hover {
    color: #A80AD6;
  }

  .logo-image {
    height: 35px;
  }
}

@media (max-width: 480px) {
  .nav-link {
    font-size: 20px;
  }

  .header {
    padding: 15px 0;
  }
}

/* Hero Section */
.hero {
  background-color: #A80AD6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  /* background-image: url(../assets/background-hero.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
}

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

.background-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(168, 10, 214, 0.85);
  z-index: 2;
}

.hero-container {
  display: flex;
  flex: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.social-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.bubbles {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.bubble {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.bubble::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  border-radius: 25px;
  z-index: -1;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  color: #FAF8ED;
  margin-bottom: 30px;
  line-height: 1.2;
  max-width: 100%;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-quote {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-style: italic;
  line-height: 1.4;
  font-weight: 300;
}

.hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 100%;
  margin-bottom: 50px;
  font-weight: 400;
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cta-button {
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.cta-button.primary {
  background: #1767E6;
  color: white;
  box-shadow: 0 4px 15px rgba(23, 103, 230, 0.3);
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.cta-button.primary:hover {
  background: #A80AD6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(23, 103, 230, 0.4);
}

.cta-button.primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(23, 103, 230, 0.3);
}


.cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
}

/* Hero Decorations */
.hero-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.geometric-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: floatShape 8s ease-in-out infinite;
}

.shape.circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(45deg, #00E640, #A80AD6);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape.triangle {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 170px solid #1767E6;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.shape.square {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #A80AD6, #1C1412);
  top: 60%;
  right: 20%;
  animation-delay: 4s;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  animation: floatDot 6s ease-in-out infinite;
}

.dot-1 {
  width: 20px;
  height: 20px;
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.dot-2 {
  width: 15px;
  height: 15px;
  top: 40%;
  right: 25%;
  animation-delay: 1.5s;
}

.dot-3 {
  width: 25px;
  height: 25px;
  bottom: 30%;
  left: 20%;
  animation-delay: 3s;
}

.dot-4 {
  width: 18px;
  height: 18px;
  top: 70%;
  right: 15%;
  animation-delay: 4.5s;
}

@keyframes floatShape {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.1;
  }
  50% { 
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.2;
  }
}

@keyframes floatDot {
  0%, 100% { 
    transform: translateY(0px) scale(1);
    opacity: 0.2;
  }
  50% { 
    transform: translateY(-20px) scale(1.2);
    opacity: 0.4;
  }
}

/* Responsividade para Hero */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
  }
  
  .hero-content {
    padding: 60px 40px;
  }
  
  .bubbles {
    justify-content: center;
  }
  
  .hero-title {
    font-size: 36px;
    text-align: center;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 300px;
  }
  
}

@media (max-width: 768px) {
  .hero-content {
    padding: 40px 20px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-quote {
    font-size: 20px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .bubbles {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .bubble {
    text-align: center;
    min-width: 200px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .cta-button {
    width: 100%;
    max-width: 280px;
    padding: 14px 28px;
    font-size: 14px;
  }
  
  
  .shape.circle {
    width: 120px;
    height: 120px;
  }
  
  .shape.triangle {
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid #1767E6;
  }
  
  .shape.square {
    width: 100px;
    height: 100px;
  }
}

/* Seção Aprenda Comigo - Design Clean */
.aprenda-comigo {
  background: #ffffff;
  min-height: 100vh;
  padding: 100px 0;
  position: relative;
}

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

.aprenda-title {
  font-size: 42px;
  font-weight: 700;
  color: #A80AD6;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.produto-card {
  background: #ffffff;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.produto-card:hover {
  border-color: #A80AD6;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(168, 10, 214, 0.15);
}

.produto-header {
  margin-bottom: 20px;
}

.produto-icon {
  font-size: 36px;
  margin-bottom: 15px;
  display: block;
}

.produto-titulo {
  font-size: 24px;
  font-weight: 700;
  color: #A80AD6;
  line-height: 1.3;
  margin-bottom: 15px;
}

.produto-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  justify-content: space-between;
}

.produto-descricao {
  font-size: 16px;
  line-height: 1.7;
  color: #6b6b6b;
  text-align: left;
}

.produto-descricao strong {
  color: #A80AD6;
  font-weight: 600;
}

.produto-btn {
  background: #A80AD6;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  align-self: flex-start;
}

.produto-btn:hover {
  background: #8a08b0;
  transform: translateX(5px);
}

/* Responsividade para Aprenda Comigo */
@media (max-width: 1024px) {
  .aprenda-container {
    padding: 0 30px;
  }

  .aprenda-title {
    font-size: 36px;
  }

  .produtos-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .aprenda-comigo {
    padding: 80px 0;
  }

  .aprenda-container {
    padding: 0 20px;
  }

  .aprenda-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .produtos-grid {
    margin-top: 40px;
    gap: 25px;
  }

  .produto-card {
    padding: 30px 25px;
  }

  .produto-titulo {
    font-size: 22px;
  }

  .produto-descricao {
    font-size: 15px;
  }

  .produto-icon {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .aprenda-comigo {
    padding: 60px 0;
  }

  .aprenda-container {
    padding: 0 15px;
  }

  .aprenda-title {
    font-size: 28px;
  }

  .produto-card {
    padding: 25px 20px;
  }

  .produto-titulo {
    font-size: 20px;
  }

  .produto-descricao {
    font-size: 14px;
  }

  .produto-btn {
    width: 100%;
    text-align: center;
  }
}

/* Seção Estatísticas */
.estatisticas {
  background: linear-gradient(135deg, #1767E6 0%, #1C1412 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.estatisticas-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
}

.estatisticas-image {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.estatisticas-image img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid #00E640;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 2;
  position: relative;
}

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

.circle-element {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #00E640, #A80AD6);
  border-radius: 50%;
  opacity: 0.8;
  animation: float 3s ease-in-out infinite;
}

.triangle-element {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid #00E640;
  opacity: 0.7;
  animation: float 4s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.estatisticas-content {
  flex: 1;
  padding-left: 40px;
}

.estatisticas-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.estatistica-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.estatistica-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.estatistica-item:hover::before {
  left: 100%;
}

.estatistica-item:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.estatistica-icon {
  font-size: 24px;
  color: #00E640;
  filter: drop-shadow(0 0 10px rgba(0, 230, 64, 0.5));
  animation: sparkle 2s infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.estatistica-text {
  font-size: 18px;
  color: white;
  font-weight: 500;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsividade para Estatísticas */
@media (max-width: 1024px) {
  .estatisticas-container {
    flex-direction: column;
    gap: 60px;
    padding: 60px 20px;
  }
  
  .estatisticas-image img {
    width: 300px;
    height: 300px;
  }
  
  .circle-element {
    width: 80px;
    height: 80px;
  }
  
  .triangle-element {
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid #ffa200;
  }
  
  .estatisticas-content {
    padding-left: 0;
  }
  
  .estatistica-text {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .estatisticas {
    min-height: auto;
    padding: 40px 0;
  }
  
  .estatisticas-container {
    padding: 40px 20px;
    gap: 40px;
  }
  
  .estatisticas-image img {
    width: 250px;
    height: 250px;
  }
  
  .estatistica-item {
    padding: 15px 20px;
    gap: 15px;
  }
  
  .estatistica-icon {
    font-size: 20px;
  }
  
  .estatistica-text {
    font-size: 14px;
  }
  
  .circle-element {
    width: 60px;
    height: 60px;
  }
  
  .triangle-element {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid #ffa200;
  }
}

/* Seção Empresas */
.empresas {
  background-color: #A80AD6;
  min-height: 100vh;
  padding: 80px 0;
  position: relative;
}

.empresas-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  height: 100vh;
  align-items: center;
}

.empresas-title {
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.empresas-title h2 {
  font-size: 48px;
  font-weight: bold;
  color: white;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: left;
}

.empresas-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-end;
  padding-right: 40px;
}

.empresa-card {
  background-color: #FAF8ED;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.empresa-logo {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background-color: #1C1412;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 3px solid #00E640;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  font-weight: bold;
  position: relative;
}

.logo-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  line-height: 1.2;
}

.logo-all {
  font-size: 24px;
  font-weight: bold;
  text-transform: lowercase;
}

.logo-dot {
  font-size: 12px;
}

.logo-heart {
  font-size: 12px;
  margin-left: 2px;
}

.empresa-text {
  flex: 1;
}

.empresa-text p {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}

/* Responsividade para Empresas */
@media (max-width: 1024px) {
  .empresas-container {
    padding: 0 20px;
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .empresas-title {
    padding-left: 0;
    margin-bottom: 40px;
    justify-content: center;
  }
  
  .empresas-title h2 {
    font-size: 36px;
    text-align: center;
  }
  
  .empresas-content {
    padding-right: 0;
    align-items: center;
  }
  
  .empresa-card {
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .empresa-logo {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .empresas {
    padding: 40px 0;
  }
  
  .empresas-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .empresas-title h2 {
    font-size: 28px;
    text-align: center;
  }
  
  .empresas-content {
    align-items: center;
  }
  
  .empresa-card {
    padding: 30px 20px;
  }
  
  .empresa-logo {
    width: 100px;
    height: 100px;
  }
  
  .logo-main {
    font-size: 12px;
  }
  
  .logo-all {
    font-size: 20px;
  }
  
  .empresa-text p {
    font-size: 14px;
  }
}


/* Seção de Contato/Footer */
.contato-footer {
  background: linear-gradient(135deg, #A80AD6 0%, #1C1412 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

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

.contato-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.logo-contato {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-all {
  font-size: 120px;
  font-weight: 900;
  color: #fff;
  text-transform: lowercase;
  letter-spacing: -5px;
  line-height: 0.8;
}

.logo-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.logo-email, .logo-subtitle {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.logo-cnpj {
  font-size: 12px;
  color: #fff;
  font-weight: 300;
}

.social-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-link.linkedin:hover {
  background: #1767E6;
}

.social-link.pinterest:hover {
  background: #A80AD6;
}

.social-link.whatsapp:hover {
  background: #00E640;
}

.social-link.tiktok:hover {
  background: #1C1412;
}

.social-link.youtube:hover {
  background: #00E640;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-btn {
  background: #00E640;
  color: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(0, 230, 64, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  background: #1C1412;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 230, 64, 0.6);
}

.whatsapp-btn i {
  font-size: 24px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(0, 230, 64, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(0, 230, 64, 0.8);
  }
  100% {
    box-shadow: 0 4px 20px rgba(0, 230, 64, 0.4);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .contato-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .logo-contato {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .logo-all {
    font-size: 80px;
  }
  
  .social-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .whatsapp-btn span {
    display: none;
  }
}

@media (max-width: 480px) {
  .logo-all {
    font-size: 60px;
  }
  
  .social-link {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

/* Elementos decorativos flutuantes */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-element {
  position: absolute;
  opacity: 0.3;
  animation: floatMove 8s ease-in-out infinite;
}

.floating-element.element-1 {
  width: 60px;
  height: 60px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-element.element-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.floating-element.element-3 {
  width: 50px;
  height: 50px;
  bottom: 15%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes floatMove {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  25% { 
    transform: translateY(-15px) rotate(90deg);
    opacity: 0.5;
  }
  50% { 
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.4;
  }
  75% { 
    transform: translateY(-15px) rotate(270deg);
    opacity: 0.5;
  }
}

/* Elementos decorativos para seção empresas */
.empresas-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.empresas-element {
  position: absolute;
  opacity: 0.2;
  animation: empresasFloat 10s ease-in-out infinite;
}

.empresas-element.element-4 {
  width: 70px;
  height: 70px;
  top: 20%;
  left: 5%;
  animation-delay: 1s;
}

.empresas-element.element-5 {
  width: 90px;
  height: 90px;
  bottom: 20%;
  right: 5%;
  animation-delay: 3s;
}

@keyframes empresasFloat {
  0%, 100% { 
    transform: translateX(0px) rotate(0deg);
    opacity: 0.2;
  }
  33% { 
    transform: translateX(20px) rotate(120deg);
    opacity: 0.4;
  }
  66% { 
    transform: translateX(-10px) rotate(240deg);
    opacity: 0.3;
  }
}

/* Elementos decorativos para seção estatísticas */
.estatisticas-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.estatisticas-element {
  position: absolute;
  opacity: 0.25;
  animation: estatisticasFloat 12s ease-in-out infinite;
}

.estatisticas-element.element-6 {
  width: 65px;
  height: 65px;
  top: 15%;
  right: 8%;
  animation-delay: 0.5s;
}

.estatisticas-element.element-7 {
  width: 55px;
  height: 55px;
  bottom: 25%;
  left: 8%;
  animation-delay: 2.5s;
}

@keyframes estatisticasFloat {
  0%, 100% { 
    transform: translateY(0px) scale(1) rotate(0deg);
    opacity: 0.25;
  }
  25% { 
    transform: translateY(-20px) scale(1.1) rotate(90deg);
    opacity: 0.4;
  }
  50% { 
    transform: translateY(-10px) scale(0.9) rotate(180deg);
    opacity: 0.3;
  }
  75% { 
    transform: translateY(-25px) scale(1.05) rotate(270deg);
    opacity: 0.35;
  }
}

/* Elementos decorativos para seção aprenda comigo */
.aprenda-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.aprenda-element {
  position: absolute;
  opacity: 0.15;
  animation: aprendaFloat 9s ease-in-out infinite;
}

.aprenda-element.element-8 {
  width: 75px;
  height: 75px;
  top: 10%;
  right: 10%;
  animation-delay: 1.5s;
}

.aprenda-element.element-9 {
  width: 60px;
  height: 60px;
  bottom: 15%;
  left: 15%;
  animation-delay: 4s;
}

@keyframes aprendaFloat {
  0%, 100% { 
    transform: rotate(0deg) translateX(0px);
    opacity: 0.15;
  }
  50% { 
    transform: rotate(180deg) translateX(15px);
    opacity: 0.3;
  }
}



/* Responsividade para elementos decorativos */
@media (max-width: 768px) {
  .floating-element,
  .empresas-element,
  .estatisticas-element,
  .aprenda-element {
    width: 40px;
    height: 40px;
    opacity: 0.1;
  }
}

@media (max-width: 480px) {
  .floating-elements,
  .empresas-floating-elements,
  .estatisticas-floating-elements,
  .aprenda-floating-elements {
    display: none;
  }
}
