* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }

html,
body {
  overscroll-behavior: none; /* Prevê comportamento estranho em iOS / Remove o efeito "elástico" (bounce) ao chegar ao topo ou final da página*/
  -webkit-overflow-scrolling: touch; /* Garante scroll suave em dispositivos com WebKit (como o Safari/iOS). */
  }

  body {
    background-color: #f3f3f3;
    color: #333;
    line-height: 1.6;
  }

  .slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    min-height: 60px; /* permite espaço para pelo menos uma linha de texto */
  }
  
  @media (max-width: 600px) {
    .slider {
      min-height: 80px; /* um pouco mais em mobile se a frase for maior */
    }
  
    .slide {
      font-size: 1.4rem;
      padding: 0 10px;
    }
  }
  
  .slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    text-align: center;
    padding: 0 10px;
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .slide.active {
    opacity: 1;
    position: relative;
  }

  header {
    background: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  header img {
    height: 40px;
  }

  nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  nav a:hover {
    color: #ff6541;
  }

  .menu-toggle {
display: none;
flex-direction: column;
justify-content: space-between;
width: 28px;
height: 22px;
cursor: pointer;
z-index: 1001;
}

.menu-toggle span {
display: block;
height: 3px;
background-color: #555;
border-radius: 3px;
transition: all 0.3s ease;
}

/* Animação para virar X */
.menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(5px, -5px);
}

/* Menu mobile */
@media (max-width: 768px) {
nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 20px;
  background: white;
  border: 1px solid #ddd;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 999;
}

nav a {
  margin: 10px 0;
}

nav.active {
  display: flex;
}

.menu-toggle {
  display: flex;
}
}

  .hero {
    background: #fcfcfc;
    padding: 80px 40px;
    text-align: center;
    animation: fadeIn 1s ease-in;
  }

  .hero h1, .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .store {
    display: flex;
    justify-content: center;
    padding: 40px 0 10px 0;
    align-items: center;
    gap: 15px;
  }
  .store img {
    width: 150px;
  }
  .store a {
    display: flex;
  }

    .not-available {
      opacity: 0.2;
    }

  .btn-primary {
    background: linear-gradient( 137deg,#FF5C30 0%,#FC3748 100%,#FC3748 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }

  .btn-primary:hover {
    opacity: 0.8;
  }

  .btn-login {
    background: linear-gradient(35deg, #FF5C30 0%, #FC3748 100%, #FC3748 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  .btn-login:hover {
    opacity: 0.8;
    color: #fff;
  }

  .categories {
    padding: 60px 40px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
  }

  .categories h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 0 10px;
  }

  .card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .card i {
    font-size: 28px;
    margin-bottom: 10px;
    color: #ff6541;
  }

  .how-it-works {
    padding: 60px 40px;
    background: #fff;
    text-align: center;
    animation: fadeInUp 1s ease-out;
  }

  .how-it-works h2 {
    margin-bottom: 30px;
    font-size: 2rem;
  }

  .how-it-works ol {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
  }

  .how-it-works ol li::marker {
    content: none;    /* Extra-safe: hide marker if still showing */
  }

  .how-it-works li {
    margin-bottom: 15px;
    font-size: 1.1rem;
  }

  footer {
    background: #f1f1f1;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #777;
  }
  footer a{
    color: #333;
    text-decoration: none;
  }

  footer span.links {
    margin-top: 5px;
    display: block;
}

  /* Responsividade */
  @media (max-width: 768px) {
    .hero h1, .hero h2 {
      font-size: 2rem;
    }

    nav a {
      margin-left: 0;
      font-size: 0.9rem;
    }
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }


@font-face {
  font-family: 'icomoon';
  src:  url('../../css/icomoon/fonts/icomoon.eot?pw9nnd');
  src:  url('../../css/icomoon/fonts/icomoon.eot?pw9nnd#iefix') format('embedded-opentype'),
    url('../../css/icomoon/fonts/icomoon.ttf?pw9nnd') format('truetype'),
    url('../../css/icomoon/fonts/icomoon.woff?pw9nnd') format('woff'),
    url('../../css/icomoon/fonts/icomoon.svg?pw9nnd#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="ico-"], [class*=" ico-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ico-pet-care-2:before {
  content: "\e95f";
}
.ico-cleaning-tools1:before {
  content: "\e95d";
}
.ico-mop1:before {
  content: "\e95e";
}
.ico-house-cleaning-2:before {
  content: "\e956";
}
.ico-baby-4:before {
  content: "\e95a";
}
.ico-baby-5:before {
  content: "\e95b";
}
.ico-maternity-1:before {
  content: "\e95c";
}
.ico-baby-6:before {
  content: "\e96e";
}
.ico-wipe:before {
  content: "\e952";
}
.ico-mop-2:before {
  content: "\e953";
}
.ico-mop:before {
  content: "\e954";
}
.ico-man:before {
  content: "\e955";
}
.ico-house-cleaning .path1:before {
  content: "\e957";
  color: rgb(0, 0, 0);
  opacity: 0.991;
}
.ico-house-cleaning .path2:before {
  content: "\e958";
  margin-left: -1em;
  color: rgb(0, 0, 0);
  opacity: 0.896;
}
.ico-house-cleaning .path3:before {
  content: "\e959";
  margin-left: -1em;
  color: rgb(0, 0, 0);
  opacity: 0.918;
}
.ico-cleaning-tools-2:before {
  content: "\e960";
}
.ico-cleaning-tools:before {
  content: "\e961";
}
.ico-cleaning-service:before {
  content: "\e962";
}
.ico-cleaning-3:before {
  content: "\e963";
}
.ico-old:before {
  content: "\e94e";
}
.ico-old-man-2:before {
  content: "\e94f";
}
.ico-old-man-1:before {
  content: "\e950";
}
.ico-old-people:before {
  content: "\e951";
}
.ico-home-clean-3:before {
  content: "\e94b";
}
.ico-home-clean-2:before {
  content: "\e94c";
}
.ico-home-clean:before {
  content: "\e94d";
}
.ico-baby-3:before {
  content: "\e944";
}
.ico-cleaning:before {
  content: "\e945";
}
.ico-house:before {
  content: "\e946";
}
.ico-cleaner:before {
  content: "\e947";
}
.ico-baby-2:before {
  content: "\e948";
}
.ico-baby:before {
  content: "\e949";
}
.ico-old-man:before {
  content: "\e94a";
}
.ico-services:before {
  content: "\e93b";
}
.ico-worker:before {
  content: "\e93c";
}
.ico-home-repair:before {
  content: "\e93d";
}
.ico-chef-2:before {
  content: "\e93e";
}
.ico-chef:before {
  content: "\e93f";
}
.ico-cooking:before {
  content: "\e940";
}
.ico-babysitter:before {
  content: "\e941";
}
.ico-elderly:before {
  content: "\e942";
}
.ico-nursing-home:before {
  content: "\e943";
}
.ico-exit:before {
  content: "\e936";
}
.ico-logout-2:before {
  content: "\e937";
}
.ico-logout:before {
  content: "\e938";
}
.ico-logout-1:before {
  content: "\e939";
}
.ico-log-out:before {
  content: "\e93a";
}
.ico-paper:before {
  content: "\e933";
}
.ico-insurance-2:before {
  content: "\e934";
}
.ico-privacy-policy:before {
  content: "\e935";
}
.ico-save-file:before {
  content: "\e92e";
}
.ico-download-file-2:before {
  content: "\e92f";
}
.ico-terms-and-conditions:before {
  content: "\e930";
}
.ico-download-file:before {
  content: "\e931";
}
.ico-insurance:before {
  content: "\e932";
}
.ico-review:before {
  content: "\e92b";
}
.ico-rating:before {
  content: "\e92c";
}
.ico-rating-2:before {
  content: "\e92d";
}
.ico-invoice-5:before {
  content: "\e926";
}
.ico-invoice-4:before {
  content: "\e927";
}
.ico-invoice-3:before {
  content: "\e928";
}
.ico-invoice-2:before {
  content: "\e929";
}
.ico-invoice-1:before {
  content: "\e92a";
}
.ico-invoice:before {
  content: "\e924";
}
.ico-file:before {
  content: "\e925";
}
.ico-verify:before {
  content: "\e922";
}
.ico-circle:before {
  content: "\e923";
}
.ico-setting:before {
  content: "\e920";
}
.ico-sliders-v:before {
  content: "\e921";
}
.ico-bipolar-disorder:before {
  content: "\e915";
}
.ico-identity:before {
  content: "\e916";
}
.ico-lifestyle:before {
  content: "\e917";
}
.ico-job-seeker:before {
  content: "\e918";
}
.ico-twitterx-1:before {
  content: "\e919";
}
.ico-twitterx-2:before {
  content: "\e91a";
}
.ico-check-mark-white:before {
  content: "\e91b";
  color: #fff;
}
.ico-check-mark:before {
  content: "\e91c";
}
.ico-bipolar:before {
  content: "\e91d";
}
.ico-painting:before {
  content: "\e91e";
}
.ico-hobbies:before {
  content: "\e91f";
}
.ico-dollar:before {
  content: "\e911";
}
.ico-briefcase:before {
  content: "\e912";
}
.ico-map-flag:before {
  content: "\e913";
}
.ico-calendar:before {
  content: "\e914";
}
.ico-home-services:before {
  content: "\e90b";
}
.ico-pet-care:before {
  content: "\e90c";
}
.ico-kitchen-services:before {
  content: "\e90d";
}
.ico-child-care:before {
  content: "\e90e";
}
.ico-elderly-care:before {
  content: "\e90f";
}
.ico-domestic-services:before {
  content: "\e910";
}
.ico-camera-2:before {
  content: "\e908";
}
.ico-camera:before {
  content: "\e909";
}
.ico-user:before {
  content: "\e90a";
}
.ico-forward:before {
  content: "\e900";
}
.ico-comment:before {
  content: "\e901";
}
.ico-chat:before {
  content: "\e902";
}
.ico-check:before {
  content: "\e903";
}
.ico-background-check:before {
  content: "\e904";
}
.ico-menu-list:before {
  content: "\e905";
}
.ico-menu:before {
  content: "\e906";
}
.ico-attributes:before {
  content: "\e907";
}