/* Estilos gerais */
:root {
  --theme-teal: #0ED3CF;
  --theme-blue: #3B82F6;
  --theme-darkBlue: #1E3A8A;
  --theme-darkBlueBg: #0F172A;
  --theme-lightBg: #F8FAFC;
  --font-montserrat: 'Montserrat', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
}

body {
  font-family: var(--font-poppins);
  color: #333;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-montserrat);
  font-weight: 700;
}

a, a:focus, a:hover{
  text-decoration: none;
}

.section-title {
  font-size: 2.7rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 80px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--theme-teal), var(--theme-blue));
  left: 50%;
  transform: translateX(-50%);
}

.section-text {
  font-size: 1.35rem;
  color: #4B5563;
  max-width: 800px;
  margin: 0 auto;
}

.gradient-text {
  background: linear-gradient(to right, var(--theme-teal), var(--theme-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.z-index-1 {
  z-index: 1;
}

/* Hero Section */
.hero-section {
  background-color: var(--theme-darkBlueBg);
  color: white;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

#particles-js {
  pointer-events: none;
}

#particles-js canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-section span {
  font-size: 4.5rem;
}

@media screen and (max-width: 768px) {
  .hero-section span {
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-section span {
    font-size: 2.5rem;
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1487058792275-0ad4aaf24ca7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), var(--theme-darkBlueBg));
  opacity: 0.4;
}

.animated-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(3rem);
  opacity: 0.1;
  animation: pulse 4s infinite alternate;
}

.shape-1 {
  top: 15%;
  right: 10%;
  width: 256px;
  height: 256px;
  background-color: var(--theme-teal);
}

.shape-2 {
  bottom: 5%;
  left: 5%;
  width: 320px;
  height: 320px;
  background-color: var(--theme-blue);
  animation-delay: 0.5s;
}

@keyframes pulse {
  0% {
    opacity: 0.1;
    transform: scale(1);
  }

  100% {
    opacity: 0.2;
    transform: scale(1.05);
  }
}

.diagonal-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background-color: #ffffff;
  transform: skewY(-2deg) translateY(32px);
}

/* CTA Button */
.cta-button {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1.4rem;
  font-family: var(--font-montserrat);
  font-weight: 600;
  transition: all 0.3s ease;
  color: white;
  background: linear-gradient(to right, var(--theme-teal), var(--theme-blue));
  border: none;
  box-shadow: 0px 4px 10px rgba(59, 130, 246, 0.2);
}

@media screen and (max-width: 768px) {
  .cta-button {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 480px) {
  .cta-button {
    font-size: 1rem;
  }
}

.cta-button:hover {
  box-shadow: 0px 6px 15px rgba(14, 211, 207, 0.3);
  color: white;
  transform: translateY(-2px);
}

/* Benefit Cards */
.benefit-card {
  padding: 1.5rem;
  border-radius: 8px;
  background-color: rgba(248, 250, 252, 0.5);
  height: 100%;
  transition: background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-card:hover {
  background-color: var(--theme-lightBg);
}

.benefit-icon {
  margin-bottom: 1rem;
  padding: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--theme-teal), var(--theme-blue));
  box-shadow: 0px 6px 15px rgba(14, 211, 207, 0.2);
  color: white;
  font-size: 1.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-title {
  font-size: 1.125rem;
  color: var(--theme-darkBlue);
  margin-bottom: 0.5rem;
}

.benefit-text {
  font-size: 0.875rem;
  color: #4B5563;
}

/* Service Cards */
.service-card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(14, 211, 207, 0.1), rgba(59, 130, 246, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--theme-darkBlue);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.feature-list li {
  margin-bottom: 0.75rem;
  color: #4B5563;
}

/* Custom Cards */
.custom-card {
  padding: 2rem;
  height: 100%;
  border-radius: 12px;
  background-color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.custom-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.custom-icon {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  color: var(--theme-blue);
}

/* Final Section */
.final-section {
  background: linear-gradient(to right, var(--theme-teal), var(--theme-blue));
  color: white;
}

/* Floating WhatsApp Button */

.whatsapp_futuante {
  position: fixed;
  right: 40px;
  bottom: 90px;
  z-index: 999;
}

.whatsapp_futuante a {
  z-index: 9999;
  position: relative;
  background: #25d366;
  border: 2px solid #25d366;
  width: 55px;
  height: 55px;
  line-height: 52px !important;
  text-align: center;
  display: block;
  color: #fff;
  font-size: 30px;
  border-radius: 100%;
  transition: 0.3s all ease;
  box-shadow: 0 0 16px #25d36688, 0 0 8px #075e5488;
}

.whatsapp_futuante a:hover {
  transform: translateY(-5px) scale(1.08);
  color: #fff;
  background: #25d366;
}

.whatsapp_futuante:before,
.whatsapp_futuante:after {
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
  border: 2px solid #25d366;
  left: -20px;
  right: -20px;
  bottom: -20px;
  top: -20px;
  background: rgba(220, 248, 198, 0.15);
  animation: animatePulse 1.5s linear infinite;
  opacity: 0;
  backface-visibility: hidden;
}

.pulsaDelay:after {
  animation-delay: .5s;
}

@keyframes animatePulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(59, 130, 246, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 6rem 0;
  }

  h1 {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .benefit-icon {
    width: 70px;
    height: 70px;
    font-size: 1.25rem;
  }
}

/* Footer */
footer {
  background-color: #111;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  padding: 1.2rem 0;
  line-height: 1.6;
}

.social-icons {
  margin-bottom: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  margin: 0 8px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: linear-gradient(to right, var(--theme-teal), var(--theme-blue));
  color: white;
  transform: translateY(-3px);
}

footer small {
  letter-spacing: 0.5px;
}

@media screen and (max-width: 768px) {
  footer small {
    font-size: 0.75rem;
  }
  
  .social-icon {
    width: 32px;
    height: 32px;
    margin: 0 5px;
    font-size: 0.9rem;
  }
}