* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }

  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;
  }

  .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: 24px;
    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: 20px;
    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?kjk3em');
src:  url('../../css/icomoon/fonts/icomoon.eot?kjk3em#iefix') format('embedded-opentype'),
  url('../../css/icomoon/fonts/icomoon.ttf?kjk3em') format('truetype'),
  url('../../css/icomoon/fonts/icomoon.woff?kjk3em') format('woff'),
  url('../../css/icomoon/fonts/icomoon.svg?kjk3em#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-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";
}