:root {
  --primary-color: #5B009D;
  --secondary-color: #FF7300;
  --white: #FFFFFF;
  --dark-gray: #333;
  --light-gray: #f5f5f5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', Arial, sans-serif;
}

body {
  background-color: var(--light-gray);
  color: var(--dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

.text-primary {
  color: var(--secondary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.btn-primary {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

/* Estilos gerais */
.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Navbar Styles */
.navbar {
  transition: all 0.3s ease;
  padding: 15px 0;
}

.navbar.scrolled {
  background-color: var(--white) !important;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.navbar.scrolled .nav-link {
  color: var(--dark-gray);
}

.navbar-brand img {
  max-height: 50px;
}

.navbar .nav-link {
  color: var(--white);
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}

.navbar .nav-link.active {
  color: var(--secondary-color);
}

.navbar.scrolled .nav-link.active {
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom right, #5B009D, #7d00dd);
  color: var(--white);
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  border: none;
  margin: 0;
  padding-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/images/pattern.svg');
  opacity: 0.05;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.hero img {
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Nova regra específica para a imagem do hero */
.hero .img-fluid {
  animation: float 3s ease-in-out infinite;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
}

/* Destaque para o texto de eliminação de odor */
.hero p strong {
  color: var(--secondary-color);
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Benefits Section */
.benefits {
  background-color: var(--white);
  position: relative;
  margin: 0;
  padding-top: 0;
  border: none;
  outline: none;
}

.benefit-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
  border: none;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0;
  background-color: var(--primary-color);
  opacity: 0.03;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: height 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover::before {
  height: 100%;
}

.benefit-card i {
  color: var(--secondary-color);
  font-size: 2.5rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.benefit-card:hover i {
  transform: scale(1.1);
}

.benefit-card h3 {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Ideal For Section */
.ideal-for {
  background-color: var(--light-gray);
  position: relative;
  margin: 0;
  padding-top: 0;
  border: none;
  outline: none;
}

.ideal-item {
  background-color: var(--white);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.ideal-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ideal-item i {
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.ideal-item:hover i {
  transform: rotateY(180deg);
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #5B009D 0%, #7d00dd 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/images/pattern.svg');
  opacity: 0.05;
  z-index: 0;
  border: none;
}

.cta .btn {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.cta .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Testimonials Section */
.testimonials {
  background-color: var(--white);
  position: relative;
  margin: 0;
  padding-top: 0;
  border: none;
  outline: none;
}

.testimonial-card {
  border-radius: 15px;
  border: none;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
  position: relative;
  margin: 0;
  padding-top: 0;
  border: none;
  outline: none;
}

.form-control {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(91, 0, 157, 0.25);
}

.form-floating label {
  padding: 1rem 1.25rem;
}

/* Footer */
footer {
  background-color: var(--dark-gray);
  color: var(--white);
  position: relative;
}

footer a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--secondary-color);
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 20px;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 99;
}

.back-to-top.show {
  opacity: 1;
}

.back-to-top:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

/* Dividers */
.section-divider {
  position: relative;
  height: 150px;
  margin-top: -150px;
  z-index: 2;
  border: none;
  outline: none;
}

.wave-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  border: none;
  outline: none;
}

.wave-divider svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
  border: none;
}

.wave-white .shape-fill {
  fill: #FFFFFF;
}

.wave-light .shape-fill {
  fill: #f5f5f5;
}

.wave-primary .shape-fill {
  fill: var(--primary-color);
}

.wave-deep-primary .shape-fill {
  fill: #5B009D;
}

.flip-vertical {
  transform: rotate(180deg);
}

/* Novas transições de seção */
.section-transition {
  position: relative;
  height: 100px;
  margin-top: -50px;
  z-index: 2;
}

.diagonal-transition {
  height: 100px;
  position: relative;
  overflow: hidden;
}

.diagonal-transition::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 100px;
  left: -25%;
  transform: rotate(-2deg);
  z-index: 1;
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
}

.diagonal-transition:hover::before {
  transform: rotate(-1.5deg) translateY(-5px);
  box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.08);
}

.diagonal-white::before {
  background-color: var(--white);
}

.diagonal-light::before {
  background-color: var(--light-gray);
}

.diagonal-primary::before {
  background-color: var(--primary-color);
}

.curved-transition {
  position: relative;
  height: 80px;
  overflow: hidden;
}

.curved-transition::after {
  content: '';
  position: absolute;
  width: 120%;
  height: 150px;
  left: -10%;
  top: -100px;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.curved-transition:hover::after {
  transform: translateY(-5px);
  box-shadow: 0 5px 35px rgba(0, 0, 0, 0.15);
}

.curved-white::after {
  background-color: var(--white);
}

.curved-light::after {
  background-color: var(--light-gray);
}

.curved-primary::after {
  background-color: var(--primary-color);
}

/* Animações */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

/* Responsive */
@media (max-width: 992px) {
  .navbar-collapse {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-collapse .nav-link {
    color: var(--dark-gray) !important;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero img {
    margin-top: 50px;
  }
  
  .hero p strong {
    font-size: 1.15rem;
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .benefit-card,
  .testimonial-card,
  .ideal-item {
    margin-bottom: 20px;
  }
  
  .section-divider {
    height: 100px;
    margin-top: -100px;
  }
  
  .wave-divider svg {
    height: 100px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .section-padding {
    padding: 50px 0;
  }
}

/* Divisória decorativa */
.decorative-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px 0;
}

.divider-line {
  height: 1px;
  background: linear-gradient(to right, rgba(91, 0, 157, 0.05), rgba(91, 0, 157, 0.3), rgba(91, 0, 157, 0.05));
  flex-grow: 1;
  max-width: 100px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.03);
}

.divider-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 18px;
  background-color: var(--white);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.divider-icon:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.cta-transition {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

.hero-transition {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

/* Remover todas as bordas e linhas indesejadas */
.no-border {
  border: none !important;
  outline: none !important;
  border-bottom: none !important;
  border-top: none !important;
}

/* Ajuste para garantir sobreposição perfeita das seções */
svg {
  display: block;
  vertical-align: bottom;
  border: none;
  margin: 0;
  padding: 0;
}

.section-divider svg {
  position: relative;
  z-index: 10;
  border: none;
  outline: none;
}

/* Garantir que não haja margens entre as seções */
section {
  border: none !important;
  outline: none !important;
  margin: 0 !important;
} 