body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: #f9f9f9;
        }
        header {
            background-color: white;
            color: black;
            padding: 1rem;
        }
        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .logo img {
            height: 50px;
            width: auto;
        }
        .logo h1 {
            margin: 0;
            font-size: 1.5rem;
        }
        nav {
            margin-top: 0.5rem;
        }
        nav a {
            color: black;
            margin: 0 1rem;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .header-top {
                justify-content: center;
            }
            nav {
                width: 100%;
                text-align: center;
                margin-top: 1rem;
            }
        }
        .hero {
            background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('assets/fundo-petsitter.png');
            background-size: cover;
            background-position: center;
            min-height: 600px;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            color: white;
            text-align: left;
            padding: 0 2rem;
            max-width: none;
            margin: 0;
        }
        .hero > div {
            max-width: 900px;
            width: 100%;
        }
        .hero h1 {
            font-size: 4rem;
            margin: 0;
        }
        .hero .hero-highlight {
            color: #ffef60;
        }
        .hero p {
            font-size: 1.5rem;
            margin-top: 1rem;
        }
        section {
            padding: 2rem;
            max-width: none;
            margin: 0;
        }
        #about {
            text-align: left;
            background-color: #90c7c1;
            padding: 4rem 2rem;
            min-height: 300px;
        }
        #about h2 {
            color: white;
            text-align: center;
            margin-bottom: 2rem;
        }
        .about-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .about-left {
            flex: 1 1 280px;
            display: flex;
            justify-content: center;
            padding-left: 1rem;
        }
        .about-left img {
            max-width: 100%;
            width: 280px;
            border-radius: 12px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
        }
        .about-right {
            flex: 2 1 450px;
        }
        .about-right h3 {
            font-size: 2.5rem;
            margin-top: 0;
            color: black;
        }
        .about-right p {
            font-size: 1.25rem;
            color: rgb(39, 39, 39);
            line-height: 1.7;
            margin-bottom: 1rem;
        }
        #services h2 {
            text-align: center;
        }
        #contact {
            text-align: center;
            background-color: #90c7c1;
            padding: 100px 20px;
        }
        .contact-box {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            background-color: white;
            padding: 6rem;
            border-radius: 16px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
            max-width: 1000px;
            margin: 0 auto;
            align-items: flex-start;
        }
        .contact-details,
        .contact-hours {
            flex: 1 1 320px;
            text-align: left;
        }
        
        .contact-details a {
            background-color: #25D366;
            color: white;
            padding: 12px 20px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
        }
        .contact-hours h3 {
            margin-top: 0;
        }
        .contact-hours ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .contact-hours li {
            margin-bottom: 0.5rem;
        }
        .services {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }
        .service {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            padding: 1rem;
            margin: 1rem;
            flex: 1 1 300px;
            max-width: 500px;
            text-align: center;
        }
        .service h3 {
            color: #2EC4B6;
        }
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 1rem;
        }
        .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

#reviews {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.reviews {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.review {
    background: white;
    padding: 20px;
    border-radius: 12px;
    max-width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.review p {
    margin: 10px 0;
}

.reviews-button {
    margin-top: 30px;
}

.reviews-button a {
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.reviews-button a:hover {
    opacity: 0.9;
}
#seo {
    text-align: center;
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .about-right h3 {
        font-size: 2rem;
    }

    .contact-box {
        padding: 4rem 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        align-items: flex-start;
        padding: 2rem 1.5rem;
    }

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

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

    .header-top {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        width: 100%;
        text-align: left;
        margin-top: 1rem;
    }

    nav a {
        display: inline-block;
        margin: 0 0.75rem 0.5rem 0;
    }

    section {
        padding: 1.5rem 1rem;
    }

    #about {
        padding: 2.5rem 1rem;
    }

    .about-left {
        padding-left: 0;
    }

    .about-right h3 {
        font-size: 2rem;
    }

    .contact-box {
        flex-direction: column;
        padding: 2rem 1rem;
        align-items: stretch;
    }

    .contact-details,
    .contact-hours {
        width: 100%;
    }

    .services {
        justify-content: center;
    }

    .service {
        width: 100%;
        max-width: 100%;
        margin: 0.75rem 0;
    }

    .reviews {
        flex-direction: column;
        align-items: center;
    }

    .whatsapp-float {
        right: 15px;
        bottom: 15px;
    }
}
/* Esconde checkbox */
#menu-toggle {
  display: none;
}

/* Ícone hambúrguer */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Menu desktop */
.menu {
  display: flex;
  gap: 20px;
}

/* Mobile */
@media (max-width: 768px) {

  .menu-icon {
    display: block;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
  }

  /* Quando ativado */
  #menu-toggle:checked + .menu-icon + .menu {
    display: flex;
  }
}