@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
:root {
  --color-green-lightest: #8cc63e;
  --color-green-light: #3ab54a;
  --color-green-medium: #009345;
  --color-green-dark: #023506;
  --color-background: #fbfafa;
  --color-black: #000;
  --color-white: #fff;
  --color-primary: var(--color-green-light);
  --color-accent: var(--color-green-lightest); }

html {
  scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #000;
  background-color: #fbfafa; }
  @media only screen and (max-width: 1400px) {
  body {
    font-size: 15px; } }
  @media only screen and (max-width: 768px) {
  body {
    font-size: 14px; } }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; }

h1 {
  font-size: 2rem; }

h2 {
  font-size: 1.5rem; }

h3 {
  font-size: 1.25rem; }

b, strong {
  font-weight: 700; }

.container {
  max-width: 1400px;
  width: 90%; }
  @media only screen and (min-width: 601px) {
  .container {
    width: 90%; } }
  @media only screen and (min-width: 993px) {
  .container {
    width: 85%; } }

.transition {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out; }

.page > div {
  display: block;
  text-align: center;
  width: 100%;
  max-width: 530px;
  padding: 16px;
  margin: 0px auto; }

.video-gradient, .hero-section .hero-video-container video, .problem-section .problem-content .problem-video-container video, .cta-section .cta-video-container video {
  -webkit-mask-image: linear-gradient(to right, black 0%, black 95%, transparent 100%), linear-gradient(to left, black 0%, black 95%, transparent 100%), linear-gradient(to bottom, black 0%, black 95%, transparent 100%), linear-gradient(to top, black 0%, black 95%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, black 0%, black 95%, transparent 100%), linear-gradient(to left, black 0%, black 95%, transparent 100%), linear-gradient(to bottom, black 0%, black 95%, transparent 100%), linear-gradient(to top, black 0%, black 95%, transparent 100%);
  mask-composite: intersect; }

.section-title, .problem-section .problem-content .problem-title, .cta-section .cta-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 30px; }
  @media only screen and (max-width: 992px) {
  .section-title, .problem-section .problem-content .problem-title, .cta-section .cta-title {
    font-size: 2.5rem; } }
  @media only screen and (max-width: 768px) {
  .section-title, .problem-section .problem-content .problem-title, .cta-section .cta-title {
    font-size: 2rem; } }
  @media only screen and (max-width: 600px) {
  .section-title, .problem-section .problem-content .problem-title, .cta-section .cta-title {
    font-size: 1.8rem; } }

.section-subtitle, .hero-section .hero-content .subtitle, .problem-section .problem-content .problem-subtitle, .cta-section .cta-subtitle {
  font-size: 1.3rem;
  color: #000;
  line-height: 1.6; }
  @media only screen and (max-width: 768px) {
  .section-subtitle, .hero-section .hero-content .subtitle, .problem-section .problem-content .problem-subtitle, .cta-section .cta-subtitle {
    font-size: 1.1rem; } }
  @media only screen and (max-width: 600px) {
  .section-subtitle, .hero-section .hero-content .subtitle, .problem-section .problem-content .problem-subtitle, .cta-section .cta-subtitle {
    font-size: 1rem; } }

.text-highlight, .hero-section .hero-content .subtitle .highlight {
  color: var(--color-green-light);
  font-weight: 600; }

.logo-fixed {
  position: absolute;
  top: 30px;
  left: 40px;
  z-index: 10; }
  .logo-fixed a {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease; }
    .logo-fixed a:hover {
      opacity: 0.8; }
  .logo-fixed img {
    max-width: 220px;
    height: auto;
    display: block; }
    @media only screen and (max-width: 768px) {
  .logo-fixed img {
    max-width: 160px; } }
  @media only screen and (max-width: 600px) {
  .logo-fixed {
    left: 50%;
    transform: translateX(-50%);
    top: 20px; } }

.btn-demo {
  background-color: var(--color-green-lightest);
  color: white;
  font-weight: 600;
  padding: 0 40px;
  height: 54px;
  line-height: 1;
  border-radius: 4px;
  text-transform: none;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(140, 198, 62, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap; }
  .btn-demo:hover {
    background-color: #7ab535;
    box-shadow: 0 4px 12px rgba(140, 198, 62, 0.4); }
  @media only screen and (max-width: 600px) {
  .btn-demo {
    padding: 0 30px;
    font-size: 1rem; } }

.btn-probar {
  background-color: var(--color-green-medium);
  color: white;
  font-weight: 600;
  padding: 0 40px;
  height: 54px;
  line-height: 1;
  border-radius: 4px;
  text-transform: none;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0, 147, 69, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap; }
  .btn-probar:hover {
    background-color: #007a3b;
    box-shadow: 0 4px 12px rgba(0, 147, 69, 0.4); }
  @media only screen and (max-width: 600px) {
  .btn-probar {
    padding: 0 30px;
    font-size: 1rem; } }

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 40px 0;
  background-color: var(--color-background);
  position: relative; }
  .hero-section .hero-row {
    display: flex;
    align-items: center; }
    @media only screen and (max-width: 992px) {
  .hero-section .hero-row {
    flex-direction: column; }
    .hero-section .hero-row .hero-video-col, .hero-section .hero-row .hero-content-col {
      width: 100%;
      max-width: 100%;
      flex: 0 0 100%; }
    .hero-section .hero-row .hero-video-col {
      order: 1; }
    .hero-section .hero-row .hero-content-col {
      order: 2; } }
  .hero-section .hero-content {
    padding: 20px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    @media only screen and (max-width: 992px) {
  .hero-section .hero-content {
    margin: 0 auto; } }
    .hero-section .hero-content h1 {
      font-size: 3.5rem;
      font-weight: 700;
      color: var(--color-green-dark);
      line-height: 1.15; }
      @media only screen and (max-width: 768px) {
  .hero-section .hero-content h1 {
    font-size: 2.2rem; } }
    .hero-section .hero-content .subtitle {
      margin-bottom: 30px; }
      .hero-section .hero-content .hero-buttons {
        display: flex;
        gap: 15px;
        flex-wrap: wrap; }
      @media only screen and (max-width: 600px) {
  .hero-section .hero-content .hero-buttons {
    flex-direction: column; } }
  .hero-section .hero-video-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 40px 20px 20px; }
    @media only screen and (max-width: 992px) {
  .hero-section .hero-video-container {
    justify-content: center;
    padding: 20px;
    margin-bottom: 30px; } }
    @media only screen and (max-width: 600px) {
  .hero-section .hero-video-container {
    padding: 10px;
    margin-top: 50px;
    margin-bottom: 0px; } }
    .hero-section .hero-video-container video {
      width: 100%;
      max-width: 600px;
      height: auto; }

.problem-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 20px 0 80px 0;
  background-color: var(--color-background);
  overflow-x: hidden; }
  @media only screen and (max-width: 768px) {
  .problem-section {
    padding: 10px 0 60px 0; } }
  .problem-section .problem-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px; }
    .problem-section .problem-content .problem-title {
      color: var(--color-green-medium); }
    .problem-section .problem-content .problem-subtitle {
      max-width: 800px;
      margin-left: auto;
      margin-right: auto; }
    .problem-section .problem-content .problem-video-container {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      padding-top: 0px;
      overflow-x: hidden; }
      @media only screen and (max-width: 600px) {
  .problem-section .problem-content .problem-video-container {
    padding: 10px; } }
      .problem-section .problem-content .problem-video-container video {
        width: 100%;
        max-width: 900px;
        height: auto; }
        @media only screen and (max-width: 768px) {
  .problem-section .problem-content .problem-video-container video {
    max-width: 600px; } }
        @media only screen and (max-width: 600px) {
  .problem-section .problem-content .problem-video-container video {
    width: 140vw;
    max-width: none; } }

.filter-section {
  padding: 80px 0;
  background-color: var(--color-background); }
  @media only screen and (max-width: 768px) {
  .filter-section {
    padding: 60px 0; } }
  @media only screen and (max-width: 600px) {
  .filter-section {
    padding: 40px 0; } }

.filter-layout {
  display: flex;
  align-items: center;
  gap: 60px; }
  @media only screen and (max-width: 992px) {
  .filter-layout {
    flex-direction: column;
    gap: 40px; } }

.filter-image {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media only screen and (max-width: 992px) {
  .filter-image {
    flex: 1;
    width: 100%;
    max-width: 360px;
    order: 2; } }
  .filter-image .funnel-image {
    width: 100%;
    height: auto;
    max-width: 360px;
    display: block; }
    @media only screen and (max-width: 600px) {
  .filter-image .funnel-image {
    max-width: 300px; } }

.filter-content {
  flex: 1; }
  @media only screen and (max-width: 992px) {
  .filter-content {
    order: 1; } }

.filter-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-green-dark);
  line-height: 1.3;
  margin-bottom: 50px; }
  @media only screen and (max-width: 992px) {
  .filter-title {
    font-size: 2.2rem;
    margin-bottom: 40px; } }
  @media only screen and (max-width: 768px) {
  .filter-title {
    font-size: 1.9rem;
    margin-bottom: 35px; } }
  @media only screen and (max-width: 600px) {
  .filter-title {
    font-size: 1.6rem;
    margin-bottom: 30px; } }

.filter-features {
  display: flex;
  flex-direction: column;
  gap: 35px; }
  @media only screen and (max-width: 600px) {
  .filter-features {
    gap: 30px; } }

.filter-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px; }
  @media only screen and (max-width: 600px) {
  .filter-feature {
    gap: 15px; } }

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center; }
  @media only screen and (max-width: 600px) {
  .feature-icon {
    width: 40px;
    height: 40px; } }
  .feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain; }

.feature-text {
  flex: 1; }
  .feature-text p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--color-black);
    margin: 0; }
    @media only screen and (max-width: 768px) {
  .feature-text p {
    font-size: 1.05rem; } }
    @media only screen and (max-width: 600px) {
  .feature-text p {
    font-size: 1rem; } }

.antes-despues-section {
  padding: 100px 0;
  background-color: var(--color-background);
  text-align: center; }
  @media only screen and (max-width: 768px) {
  .antes-despues-section {
    padding: 60px 0; } }
  .antes-despues-section .section-title, .antes-despues-section .problem-section .problem-content .problem-title, .problem-section .problem-content .antes-despues-section .problem-title, .antes-despues-section .cta-section .cta-title, .cta-section .antes-despues-section .cta-title {
    color: var(--color-green-medium);
    margin-bottom: 20px; }
  .antes-despues-section .section-subtitle, .antes-despues-section .hero-section .hero-content .subtitle, .hero-section .hero-content .antes-despues-section .subtitle, .antes-despues-section .problem-section .problem-content .problem-subtitle, .problem-section .problem-content .antes-despues-section .problem-subtitle, .antes-despues-section .cta-section .cta-subtitle, .cta-section .antes-despues-section .cta-subtitle {
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto; }
    @media only screen and (max-width: 768px) {
  .antes-despues-section .section-subtitle, .antes-despues-section .hero-section .hero-content .subtitle, .hero-section .hero-content .antes-despues-section .subtitle, .antes-despues-section .problem-section .problem-content .problem-subtitle, .problem-section .problem-content .antes-despues-section .problem-subtitle, .antes-despues-section .cta-section .cta-subtitle, .cta-section .antes-despues-section .cta-subtitle {
    margin-bottom: 40px; } }
  .antes-despues-section .antes-despues-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto; }
    @media only screen and (max-width: 992px) {
  .antes-despues-section .antes-despues-container {
    flex-direction: column;
    align-items: center;
    gap: 50px; } }
    @media only screen and (max-width: 768px) {
  .antes-despues-section .antes-despues-container {
    gap: 40px; } }
  .antes-despues-section .antes-despues-column {
    flex: 1;
    max-width: 500px;
    width: 100%; }
    @media only screen and (max-width: 992px) {
  .antes-despues-section .antes-despues-column {
    max-width: 600px; } }
  .antes-despues-section .column-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-green-medium);
    margin-bottom: 30px; }
    @media only screen and (max-width: 768px) {
  .antes-despues-section .column-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    margin-top: 0; } }
  .antes-despues-section .image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden; }
    @media only screen and (max-width: 768px) {
  .antes-despues-section .image-wrapper {
    width: 90%;
    margin: 0 auto; } }
  .antes-despues-section .antes-despues-image {
    width: 100%;
    height: auto;
    display: block; }

.optimizacion-section {
  min-height: 100vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-background); }
  @media only screen and (max-width: 768px) {
  .optimizacion-section {
    padding: 60px 0;
    min-height: auto; } }
  .optimizacion-section .optimizacion-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; }
  .optimizacion-section .optimizacion-diagram {
    margin-bottom: 20px;
    order: 1; }
    @media only screen and (max-width: 992px) {
  .optimizacion-section .optimizacion-diagram {
    order: 3;
    margin-bottom: 0;
    margin-top: 40px; } }
    @media only screen and (max-width: 768px) {
  .optimizacion-section .optimizacion-diagram {
    margin-top: 40px; } }
    .optimizacion-section .optimizacion-diagram img {
      max-width: 100%;
      height: auto;
      width: 520px; }
      @media only screen and (max-width: 992px) {
  .optimizacion-section .optimizacion-diagram img {
    width: 430px; } }
      @media only screen and (max-width: 768px) {
  .optimizacion-section .optimizacion-diagram img {
    width: 400px; } }
      @media only screen and (max-width: 600px) {
  .optimizacion-section .optimizacion-diagram img {
    width: 100%;
    max-width: 320px; } }
  .optimizacion-section .optimizacion-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-green-dark);
    line-height: 1.25;
    margin-bottom: 30px;
    order: 2; }
    @media only screen and (max-width: 992px) {
  .optimizacion-section .optimizacion-title {
    order: 1; } }
    @media only screen and (max-width: 992px) {
  .optimizacion-section .optimizacion-title {
    font-size: 2.5rem; } }
    @media only screen and (max-width: 768px) {
  .optimizacion-section .optimizacion-title {
    font-size: 2rem;
    margin-bottom: 25px; } }
    @media only screen and (max-width: 600px) {
  .optimizacion-section .optimizacion-title {
    font-size: 1.8rem;
    margin-bottom: 20px; } }
  .optimizacion-section .optimizacion-subtitle {
    font-size: 1.3rem;
    color: var(--color-black);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    order: 3; }
    @media only screen and (max-width: 992px) {
  .optimizacion-section .optimizacion-subtitle {
    order: 2; } }
    @media only screen and (max-width: 768px) {
  .optimizacion-section .optimizacion-subtitle {
    font-size: 1.1rem; } }
    @media only screen and (max-width: 600px) {
  .optimizacion-section .optimizacion-subtitle {
    font-size: 1rem; } }

.cta-section {
  padding: 80px 0;
  background-color: var(--color-background); }
  @media only screen and (max-width: 768px) {
  .cta-section {
    padding: 60px 0; } }
  @media only screen and (max-width: 600px) {
  .cta-section {
    padding: 40px 0; } }
  .cta-section .cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center; }
  .cta-section .cta-video-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    order: 1; }
    @media only screen and (max-width: 992px) {
  .cta-section .cta-video-container {
    order: 4;
    margin-bottom: 0;
    margin-top: 40px; } }
    @media only screen and (max-width: 768px) {
  .cta-section .cta-video-container {
    margin-top: 40px; } }
    .cta-section .cta-video-container video {
      width: 100%;
      max-width: 600px;
      height: auto; }
      @media only screen and (max-width: 768px) {
  .cta-section .cta-video-container video {
    max-width: 450px; } }
      @media only screen and (max-width: 600px) {
  .cta-section .cta-video-container video {
    max-width: 420px; } }
  .cta-section .cta-title {
    color: var(--color-green-dark);
    margin-bottom: 15px;
    order: 2; }
    @media only screen and (max-width: 992px) {
  .cta-section .cta-title {
    order: 1; } }
  .cta-section .cta-subtitle {
    margin-top: 0;
    margin-bottom: 40px;
    max-width: 700px;
    order: 3; }
    @media only screen and (max-width: 992px) {
  .cta-section .cta-subtitle {
    order: 2; } }
    @media only screen and (max-width: 768px) {
  .cta-section .cta-subtitle {
    margin-bottom: 30px; } }
  .cta-section .cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    order: 4; }
    @media only screen and (max-width: 992px) {
  .cta-section .cta-buttons {
    order: 3; } }
    @media only screen and (max-width: 600px) {
  .cta-section .cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px; } }

.footer-section {
  background-color: #1a1a1a;
  padding: 2.5rem 0 1.5rem; }

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3%; }
  @media (max-width: 768px) {
  .footer-container {
    padding: 0 1.5rem; } }

.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem; }
  @media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem; } }
  .footer-content a {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease; }
    .footer-content a:hover {
      opacity: 0.8; }

.footer-logo {
  max-width: 240px;
  height: auto;
  flex-shrink: 0;
  display: block; }
  @media (max-width: 768px) {
  .footer-logo {
    max-width: 200px; } }
  @media (max-width: 480px) {
  .footer-logo {
    max-width: 160px; } }

.footer-description {
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
  margin-left: auto;
  flex: 0 1 auto;
  max-width: 50%;
  text-align: justify; }
  @media (max-width: 768px) {
  .footer-description {
    font-size: 0.8rem;
    text-align: center;
    max-width: 100%;
    margin-left: 0; } }
  @media (max-width: 480px) {
  .footer-description {
    font-size: 0.75rem; } }

.footer-legal {
  color: #ccc;
  font-size: 0.85rem;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem; }
  @media (max-width: 768px) {
  .footer-legal {
    font-size: 0.8rem; } }
  @media (max-width: 480px) {
  .footer-legal {
    font-size: 0.75rem;
    line-height: 1.6; } }
  .footer-legal a {
    color: #ccc;
    text-decoration: underline;
    transition: color 0.3s ease; }
    .footer-legal a:hover {
      color: #fff; }

.footer-legal-line {
  margin: 0.5rem 0; }

.demo-navbar {
  background: linear-gradient(135deg, #4caf50, #2196f3);
  padding: 20px;
  color: white; }
  @media only screen and (max-width: 600px) {
  .demo-navbar {
    padding: 12px; } }
  .demo-navbar > div {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px; }
    @media only screen and (max-width: 992px) {
  .demo-navbar > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px; } }
  .demo-navbar h1 {
    margin: 0;
    font-size: 24px; }
    @media only screen and (max-width: 600px) {
  .demo-navbar h1 {
    font-size: 20.4px; } }
    @media only screen and (max-width: 600px) {
  .demo-navbar h1 {
    font-size: 20px; } }
  .demo-navbar ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap; }
    @media only screen and (max-width: 600px) {
  .demo-navbar ul {
    gap: 10px; } }
    .demo-navbar ul li a {
      color: white;
      text-decoration: none;
      padding: 8px 16px;
      border-radius: 8px;
      transition: background 0.3s ease;
      display: inline-block; }
      @media only screen and (max-width: 600px) {
    .demo-navbar ul li a {
      padding: 6px 12px;
      font-size: 14px; } }
      .demo-navbar ul li a:hover {
        background: rgba(255, 255, 255, 0.2); }
  .demo-navbar > div > div:last-child {
    font-size: 14px; }
    @media only screen and (max-width: 992px) {
  .demo-navbar > div > div:last-child {
    width: 100%; } }
    @media only screen and (max-width: 600px) {
  .demo-navbar > div > div:last-child {
    font-size: 12px; } }

#demo.page {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: #fafafa; }
  @media only screen and (max-width: 600px) {
  #demo.page {
    padding: 12px; } }
  @media only screen and (max-width: 600px) {
  #demo.page {
    margin: 20px auto; } }
  #demo.page h1 {
    color: #4caf50;
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 600; }
    @media only screen and (max-width: 600px) {
  #demo.page h1 {
    font-size: 27.2px; } }
    @media only screen and (max-width: 600px) {
  #demo.page h1 {
    font-size: 24px; } }
  #demo.page p {
    font-size: 18px;
    line-height: 1.6;
    color: #424242; }
    @media only screen and (max-width: 600px) {
  #demo.page p {
    font-size: 15.3px; } }
    @media only screen and (max-width: 600px) {
  #demo.page p {
    font-size: 16px; } }
  #demo.page .how-it-works {
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease; }
    @media only screen and (max-width: 600px) {
  #demo.page .how-it-works {
    padding: 12px; } }
    #demo.page .how-it-works:hover {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08); }
    @media only screen and (max-width: 600px) {
  #demo.page .how-it-works {
    margin-top: 20px; } }
    #demo.page .how-it-works h3 {
      color: #2196f3;
      margin-top: 0;
      font-size: 20px;
      font-weight: 600; }
      @media only screen and (max-width: 600px) {
  #demo.page .how-it-works h3 {
    font-size: 17px; } }
    #demo.page .how-it-works ol {
      line-height: 2;
      padding-left: 20px;
      color: #424242; }
      @media only screen and (max-width: 600px) {
  #demo.page .how-it-works ol {
    padding-left: 16px;
    line-height: 1.8;
    font-size: 14px; } }
      #demo.page .how-it-works ol li {
        margin-bottom: 8px; }
      #demo.page .how-it-works ol code {
        background: #f5f5f5;
        padding: 2px 6px;
        border-radius: 4px;
        font-family: 'Courier New', monospace;
        color: #2196f3;
        font-size: 0.9em;
        font-weight: 500;
        border: 1px solid #e0e0e0;
        word-break: break-word; }

.vue-demo-component {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease; }
  @media only screen and (max-width: 600px) {
  .vue-demo-component {
    padding: 12px; } }
  .vue-demo-component:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08); }
  @media only screen and (max-width: 600px) {
  .vue-demo-component {
    margin: 20px auto; } }
  .vue-demo-component h3 {
    color: #4caf50;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 600; }
    @media only screen and (max-width: 600px) {
  .vue-demo-component h3 {
    font-size: 20.4px; } }
  .vue-demo-component p {
    color: #424242;
    font-size: 16px;
    margin-bottom: 16px; }
    @media only screen and (max-width: 600px) {
  .vue-demo-component p {
    font-size: 13.6px; } }
  .vue-demo-component .search-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #bdbdbd;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    background: #fff;
    color: #212121; }
    @media only screen and (max-width: 600px) {
  .vue-demo-component .search-input {
    font-size: 13.6px; } }
    @media only screen and (max-width: 600px) {
  .vue-demo-component .search-input {
    padding: 10px 12px;
    font-size: 14px; } }
    .vue-demo-component .search-input:focus {
      outline: none;
      border-color: #2196f3;
      box-shadow: 0 2px 4px rgba(33, 150, 243, 0.2); }
    .vue-demo-component .search-input::placeholder {
      color: #757575; }
  .vue-demo-component .results-info {
    color: #757575;
    font-size: 14px;
    margin-bottom: 20px;
    font-style: italic; }
    @media only screen and (max-width: 600px) {
  .vue-demo-component .results-info {
    font-size: 12px; } }
  .vue-demo-component .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px; }
    @media only screen and (max-width: 1200px) {
  .vue-demo-component .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px; } }
    @media only screen and (max-width: 992px) {
  .vue-demo-component .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px; } }
    @media only screen and (max-width: 600px) {
  .vue-demo-component .products-grid {
    grid-template-columns: 1fr;
    gap: 12px; } }
  .vue-demo-component .product-card {
    padding: 20px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    transition: transform 0.2s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
    .vue-demo-component .product-card:hover {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08); }
    @media only screen and (max-width: 600px) {
  .vue-demo-component .product-card {
    padding: 16px; } }
    .vue-demo-component .product-card:hover {
      transform: translateY(-4px);
      border-color: #bdbdbd;
      background: #fff; }
    .vue-demo-component .product-card h4 {
      color: #2196f3;
      margin: 0 0 8px 0;
      font-size: 18px;
      font-weight: 600; }
      @media only screen and (max-width: 600px) {
  .vue-demo-component .product-card h4 {
    font-size: 15.3px; } }
    .vue-demo-component .product-card .category {
      color: #757575;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin: 4px 0;
      font-weight: 500; }
      @media only screen and (max-width: 600px) {
  .vue-demo-component .product-card .category {
    font-size: 11px; } }
    .vue-demo-component .product-card .price {
      color: #4caf50;
      font-size: 20px;
      font-weight: bold;
      margin: 8px 0; }
      @media only screen and (max-width: 600px) {
  .vue-demo-component .product-card .price {
    font-size: 17px; } }
    .vue-demo-component .product-card .description {
      color: #424242;
      font-size: 14px;
      line-height: 1.4;
      margin: 8px 0 0 0; }
      @media only screen and (max-width: 600px) {
  .vue-demo-component .product-card .description {
    font-size: 11.9px; } }
      @media only screen and (max-width: 600px) {
  .vue-demo-component .product-card .description {
    font-size: 13px; } }
  .vue-demo-component .no-results {
    text-align: center;
    padding: 40px;
    color: #757575;
    font-size: 16px;
    font-style: italic;
    background: #f5f5f5;
    border-radius: 8px; }
    @media only screen and (max-width: 600px) {
  .vue-demo-component .no-results {
    font-size: 13.6px; } }
    @media only screen and (max-width: 600px) {
  .vue-demo-component .no-results {
    padding: 30px 20px;
    font-size: 14px; } }

.logo-tos {
  left: 50% !important;
  transform: translateX(-50%);
  margin-bottom: 80px;
  display: block; }
  @media (max-width: 600px) {
  .logo-tos {
    margin-bottom: 40px; } }

#tos {
  max-width: 900px;
  margin: 80px auto 0;
  padding-bottom: 60px; }
  #tos h1 {
    text-align: center;
    margin-bottom: 10px; }
  #tos h2 {
    margin-top: 10px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px; }
  #tos h3 {
    margin-top: 10px;
    font-size: 1.1em; }
  #tos ul {
    margin-top: 10px;
    padding-left: 30px; }
    #tos ul li {
      margin-bottom: 8px;
      line-height: 1.6; }
      #tos ul li::marker {
        color: #666; }
      #tos ul li strong {
        color: #333; }
  #tos p {
    margin: 10px 0; }
