@charset "UTF-8";

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: #fff6fa;
    color: #333;
}

h2 {
    text-align: center;
}

p {
text-align: center;
}

/* Cabeçalho */
header {
    background: #a05279;
    color: white;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 22px;
}

/* Hero */
.hero {
    background: linear-gradient(#00000070, #00000070), url('https://images.pexels.com/photos/3993442/pexels-photo-3993442.jpeg') center/cover;
    padding: 120px 20px;
    text-align: center;
    color: white;
}

.btn {
    background: #855f71;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    margin-top: 15px;
    display: inline-block;
}

/* Seções */
section {
    padding: 60px 20px;
}

/* Serviços */
.servicos-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.card {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px #00000020;
}

.card i {
    font-size: 35px;
    color: #d63384;
    margin-bottom: 10px;
}

/* Slider */
.slider {
    width: 90%;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
}

.slides {
    display: flex;
    width: 300%;
    animation: slide 12s infinite;
}

.slides img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* Animação do slider */
@keyframes slide {
    0% { transform: translateX(0); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}

/* Fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease;
}

/* Rodapé */
footer {
    background: #d63384;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Responsivo */
@media (max-width: 760px) {
    nav {
        display: none;
        flex-direction: column;
        background: #d63384;
        padding: 20px;
    }

    nav.open {
        display: flex;
    }

    .menu-btn {
        display: block;
    }
}