/* Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

header {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    color: #fff;
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 2.8rem;
    color: #880e4f;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    font-weight: 700;
}

.subtitle {
    color: #ad1457;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    font-weight: 300;
}

main {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-section {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.services-section h2 {
    color: #880e4f;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

/* Exibição do Valor Total */
.total-display {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(136, 14, 79, 0.15);
    display: inline-block;
    width: auto;
    margin-left: 50%;
    transform: translateX(-50%);
}

.total-display span:first-child {
    color: #880e4f;
    font-weight: 600;
    margin-right: 0.5rem;
    font-size: 1rem;
}

#total-value {
    color: #ad1457;
    font-weight: 700;
    font-size: 1.3rem;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.service-item {
    background-color: #fff;
    border: 2px solid #fce4ec;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(136, 14, 79, 0.15);
    border-color: #f8bbd0;
}

.service-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-item:hover .service-image-wrapper img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    color: #880e4f;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.4rem;
    color: #2e7d32;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-select {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-select input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #880e4f;
    cursor: pointer;
}

.service-select label {
    font-size: 1rem;
    color: #880e4f;
    cursor: pointer;
    font-weight: 600;
    background-color: #fce4ec;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    flex-grow: 1;
    text-align: center;
}

.service-select label:hover {
    background-color: #f8bbd0;
}

#schedule-whatsapp {
    background: linear-gradient(135deg, #880e4f 0%, #ad1457 100%);
    color: #fff;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(136, 14, 79, 0.3);
}

#schedule-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(136, 14, 79, 0.4);
    background: linear-gradient(135deg, #ad1457 0%, #c2185b 100%);
}

#schedule-whatsapp:active {
    transform: translateY(-1px);
}

footer {
    text-align: center;
    padding: 1.5rem 0;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    color: #880e4f;
    margin-top: 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
}

/* Responsividade */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .services-section {
        padding: 1.5rem;
    }

    .services-section h2 {
        font-size: 1.8rem;
    }

    .service-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .total-display {
        padding: 0.6rem 1.2rem;
    }

    .total-display span:first-child {
        font-size: 0.9rem;
    }

    #total-value {
        font-size: 1.1rem;
    }

    #schedule-whatsapp {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.6rem;
    }

    .service-image-wrapper {
        height: 180px;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .service-price {
        font-size: 1.2rem;
    }
}

