body {
    font-family: 'Open Sans', sans-serif;
    background-color: #fff5f7;
    color: #4d2e2e;
}

header {
    background: linear-gradient(90deg, #d36885, #ff9aa2);
}

header h1 {
    font-size: 2.8rem;
    font-family: 'Pacifico', cursive;
    color: #fff;
}

header p {
    font-size: 1.2rem;
    color: #fdfdfd;
}

.btn-success {
    background-color: #d84c6f;
    border: none;
}

.btn-success:hover {
    background-color: #c03d5f;
}

.card {
    border: none;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-title {
    color: #8e4d4d;
    font-weight: 600;
}

.card-text {
    color: #5f4444;
    font-size: 0.95rem;
}

.galery-container img {
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    cursor: pointer;
    object-fit: cover;
    height: 200px;
    width: 100%;
    border-radius: 15px;
    border: 4px solid #ffe5ec;
}

.galery-img:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(216, 76, 111, 0.5);
    z-index: 2;
}

@media (max-width: 576px) {
    .galery-container img {
        height: 160px;
    }
}

.whatsapp-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    background-color: #25d366;
    color: white;
    padding: 14px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.whatsapp-button a:hover {
    background-color: #1eb954;
}

.whatsapp-button img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.card.bg-light {
    background-color: #ffe5ec !important;
    border-radius: 20px;
    border: 1px solid #f8c5d1;
}

.hero-header {
    position: relative;
    background: url('img/header-bg.jpg') no-repeat center center;
    background-size: cover;
    min-height: 400px;
    padding: 60px 20px;
    z-index: 1;
}

.hero-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.45);
    /* escurece a imagem para o texto ficar legível */
    z-index: -1;
}

.hero-header h1,
.hero-header p,
.hero-header img,
.hero-header a {
    z-index: 2;
}