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

:root {
  --primary-color: #0FFF3A;
  --secondary-color: #00b02a;
  --accent-color: #0FFF3A;
  --text-color: #fff;
  --subtext-color: rgba(255, 255, 255, 0.85);
  --border-radius: 12px;
  --box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  --transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Poppins', sans-serif;
  --background-gradient: linear-gradient(135deg, #0a3b1d 0%, #052611 100%);
}

.light {
  --primary-color: #0FFF3A;
  --secondary-color: #00b02a;
  --text-color: #052611;
  --subtext-color: rgba(5, 38, 17, 0.85);
  --background-gradient: linear-gradient(135deg, #f0fff7 0%, #e4f7e6 100%);
}

body {
  font-family: var(--body-font);
  background: var(--background-gradient);
  background-attachment: fixed;
  color: var(--text-color);
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230FFF3A' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

/* Header section */
header {
  padding: 15px 0;
  position: relative;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.logo-wrapper {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
  padding: 4px;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
  box-shadow: 0 0 15px rgba(15, 255, 58, 0.5);
}

.logo:hover {
  transform: scale(1.05);
}

.logo-wrapper::before,
.logo-wrapper::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.logo-wrapper::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: pulseSlow 6s ease-in-out infinite;
}

.logo-wrapper::after {
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  animation: pulseSlow 6s ease-in-out infinite 3s;
}

.theme-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
}

.theme-switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 30px;
}

.theme-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  transition: 0.4s;
  border-radius: 34px;
  overflow: hidden;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23005c28" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="5"/><path d="M12 1v2M12 21v2M4.2 4.2l1.4 1.4M18.4 18.4l1.4 1.4M1 12h2M21 12h2M4.2 19.8l1.4-1.4M18.4 5.6l1.4-1.4"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

input:checked+.slider {
  background-color: rgba(255, 255, 255, 0.2);
}

input:checked+.slider:before {
  transform: translateX(26px);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23005c28" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/></svg>');
}

/* Hero section */
.hero {
  text-align: center;
  padding: 10px 0 30px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(15, 255, 58, 0.5);
}

.hero h1 {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.hero h1 span {
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(15, 255, 58, 0.5);
}

.hero p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 10px;
  opacity: 0.9;
}

/* Card styling */
.card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 20px;
  margin-bottom: 30px;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 255, 58, 0.05) 0%, rgba(15, 255, 58, 0) 100%);
  z-index: -1;
}

/* Benefits section */
.benefits {
  position: relative;
  margin-top: 30px;
}

.benefits-list {
  list-style: none;
  margin: 20px 0;
}

.benefits-list li {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list li:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-top: 2px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%230FFF3A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

.guarantee-section {
  margin-top: 30px;
  text-align: center;
  position: relative;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary-color);
  margin-bottom: 15px;
  box-shadow: 0 0 20px rgba(15, 255, 58, 0.4);
  position: relative;
  z-index: 1;
}

.guarantee-badge span {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  line-height: 1.2;
}

.guarantee-badge::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 1px dashed var(--accent-color);
  border-radius: 50%;
  animation: rotate 15s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.guarantee-text {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 15px 0;
  line-height: 1.4;
}

.guarantee-description {
  font-size: 0.95rem;
  max-width: 700px;
  margin: 0 auto 20px;
  color: var(--subtext-color);
}

.cta-text {
  font-size: 1.1rem;
  margin: 20px 0 5px;
  font-family: var(--heading-font);
}

.arrow-down {
  display: block;
  width: 25px;
  height: 25px;
  margin: 0 auto 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {

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

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* CTA button */
.cta-container {
  text-align: center;
  margin: 30px 0;
  position: relative;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #0FFF3A, #00dd2f);
  color: #052611;
  font-weight: 700;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(15, 255, 58, 0.25);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  max-width: 300px;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
  z-index: -1;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.pulse {
  animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(15, 255, 58, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(15, 255, 58, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(15, 255, 58, 0);
  }
}

@keyframes pulseSlow {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }

  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}

/* Results & Testimonials */
.results-section {
  margin: 50px 0;
}

.section-title {
  text-align: center;
  font-family: var(--heading-font);
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(15, 255, 58, 0.5);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 20px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.testimonial-rating {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 10px;
  text-shadow: 0 0 5px rgba(15, 255, 58, 0.3);
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 15px;
  color: var(--subtext-color);
  font-size: 0.95rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 12px;
  background-color: rgba(15, 255, 58, 0.1);
  border: 1px solid rgba(15, 255, 58, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary-color);
  box-shadow: 0 0 10px rgba(15, 255, 58, 0.2);
}

.testimonial-name {
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-info {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Social links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-color);
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.social-link:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  z-index: -1;
}

.social-link:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-link svg {
  width: 22px;
  height: 22px;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px 0;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
  display: block;
  width: 70px;
  margin: 0 auto 15px;
  opacity: 0.7;
}

.footer-text {
  font-size: 0.9rem;
  color: var(--subtext-color);
  margin-bottom: 8px;
}

.footer-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
  text-shadow: 0 0 5px rgba(15, 255, 58, 0.3);
}

.footer-link:hover {
  text-decoration: underline;
}

/* Responsive design - Ajustes para tablets */
@media (min-width: 768px) and (max-width: 991px) {
  .logo-wrapper {
    width: 120px;
    height: 120px;
  }

  .logo {
    width: 100px;
    height: 100px;
  }

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

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card {
    padding: 35px;
  }
}

/* Responsive design - Ajustes para desktop */
@media (min-width: 992px) {
  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
  }

  .hero p {
    font-size: 1.25rem;
  }

  .benefits-list {
    padding: 0 30px;
  }

  .benefits-list li {
    font-size: 1.2rem;
    padding: 20px 0;
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .guarantee-text {
    font-size: 1.8rem;
  }

  .cta-button {
    padding: 20px 50px;
    font-size: 1.3rem;
    width: auto;
    max-width: none;
  }

  .card {
    padding: 50px;
    margin: 0 auto 60px;
    max-width: 90%;
  }
}

/* Ajustes específicos para telas muito pequenas */
@media (max-width: 375px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .benefits-list li {
    font-size: 0.95rem;
  }

  .card {
    padding: 20px 15px;
  }

  .guarantee-badge {
    width: 90px;
    height: 90px;
  }

  .guarantee-badge span {
    font-size: 0.9rem;
  }

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

  .cta-button {
    padding: 13px 20px;
    font-size: 1rem;
  }
}