:root {
  --primary-color: #E01171;
  --secondary-color: #AB0E86;
  --accent-color: #FB90B7;
  --light-color: #FFCEE4;
  --dark-color: #59057B;
  --gradient-primary: linear-gradient(135deg, #E01171 0%, #D01257 100%);
  --hover-color: #C30E63;
  --background-color: #FFF5FA;
  --text-color: #3D1E2F;
  --border-color: rgba(224, 17, 113, 0.3);
  --divider-color: rgba(224, 17, 113, 0.2);
  --shadow-color: rgba(224, 17, 113, 0.15);
  --highlight-color: #FFD23F;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-bg {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.header-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  pointer-events: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  fill: white;
}

.logo-text {
  color: white;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.5rem 1rem;
  position: relative;
}

.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.04;
  pointer-events: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.content-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 6px 16px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--shadow-color);
}

.product-image {
  border-radius: 12px;
  box-shadow: 0 6px 16px var(--shadow-color);
}

.guarantee-box {
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
  border: 3px solid var(--accent-color);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 6px 14px rgba(224, 17, 113, 0.25);
}

.guarantee-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.125rem 2.25rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px var(--shadow-color);
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--shadow-color);
}

.price-tag {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--highlight-color) 0%, #FFC529 100%);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
  box-shadow: 0 6px 14px rgba(255, 210, 63, 0.4);
  border: 3px solid #E6B62D;
}

.cta-text {
  font-size: 1.375rem;
  font-weight: 700;
  color: #2C2416;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.testimonials-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 3.5rem 1rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.testimonial-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
}

.stars {
  color: var(--highlight-color);
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

.footer-bg {
  background: var(--dark-color);
  color: white;
}

.footer-logo-icon {
  width: 34px;
  height: 34px;
  fill: white;
}

.footer-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-link:hover {
  color: white;
}

.template-credit {
  color: rgba(255, 255, 255, 0.65);
}

.template-credit a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.template-credit a:hover {
  color: white;
}

@media (max-width: 768px) {
  .header-decorations {
    display: none;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .price-tag {
    font-size: 2rem;
  }

  .cta-text {
    font-size: 1.25rem;
  }

  .btn-primary {
    font-size: 1rem;
    padding: 1rem 1.75rem;
  }

  .content-card {
    padding: 1.5rem;
  }
}