header {
    background: linear-gradient(to bottom, #f8bbd0, #ffffff);
    padding: 20px;
    text-align: center;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to bottom, #ffffff, #fce4ec);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.logo {
    width: 180px;
    height: auto;
    border-radius: 50%;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

h1 {
    margin: 10px 0;
    font-size: 36px;
    color: #d93687;
    letter-spacing: 2px;
}

nav ul {
    list-style-type: none;
    margin: 10;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    transition: color 0.3s, border-bottom 0.3s;
}

nav ul li a:hover {
    color: #d93687;
    border-bottom: 2px solid #d93687;
}

section {
    padding: 50px 0;
    text-align: center;
}

section h2 {
    margin-bottom: 20px;
    font-size: 32px;
    color: #e05e9f;
}

#sobre {
    padding: 7px;
}

.btn-faca-pedido,
.btn-docinhos {
    background-color: #d93687;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.btn-faca-pedido:hover,
.btn-docinhos:hover {
    background-color: #e05e9f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

#produtos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.produto {
    flex: 1 1 280px;
    max-width: 300px;
    box-sizing: border-box;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.produto:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.produto .carousel {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.produto .slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.slide {
    display: none;
    width: 100%;
    height: auto;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 12px;
    color: white;
    font-size: 24px;
    background-color: rgba(0, 0, 0, 0.178);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.178);
    transform: translateY(-50%) scale(1.15);
}


.prev { left: 10px; }
.next { right: 10px; }

.produto h3 {
    color: #e05e9f;
    margin-top: 15px;
}

.produto p {
    color: #555;
    padding: 0 10px 15px;
    font-size: 16px;
}

/* -------------------- Modal --------------------- */
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.close {
    color: #888;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #d93687;
    cursor: pointer;
}

/* -------------------- Contato ------------------- */
.contato h2 {
    font-size: 36px;
    color: #d07fa3;
}

.contato .redes-sociais {
    padding: 1rem 0;
}

.contato .redes-sociais img {
    margin: 0.3rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 35%;
    transition: all 0.3s;
}

.contato .redes-sociais img:hover {
    background-color: #FFB6C1;
    transform: scale(1.1);
}

/* --------------------- Footer ------------------- */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer p {
    margin: 0;
    font-size: 14px;
}
