/* Espaço Zelo - Estilos Customizados */

:root {
    --cor-primaria: #8B4789;
    --cor-secundaria: #D4A5D4;
    --cor-texto: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--cor-texto);
}

/* Header */
header.bg-primary {
    background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-secundaria) 100%) !important;
    padding: 3rem 0;
}

header h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

header .lead {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Seções */
section {
    padding: 2rem 0;
}

section h2 {
    color: var(--cor-primaria);
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--cor-secundaria);
    padding-bottom: 0.5rem;
}

/* Cards de Serviços */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.card-title {
    color: var(--cor-primaria);
    font-weight: 600;
}

.card-text {
    color: #666;
    font-size: 0.95rem;
}

/* Botões */
.btn-primary {
    background-color: var(--cor-primaria);
    border-color: var(--cor-primaria);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #6d3767;
    border-color: #6d3767;
    transform: scale(1.05);
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
    transform: scale(1.05);
}

/* Lista de Valores */
section ul {
    list-style: none;
    padding: 0;
}

section ul li {
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--cor-secundaria) 0%, transparent 100%);
    border-left: 4px solid var(--cor-primaria);
    font-size: 1.1rem;
    transition: padding-left 0.3s ease;
}

section ul li:hover {
    padding-left: 1.5rem;
}

/* Footer */
footer {
    background-color: #f8f9fa !important;
    border-top: 3px solid var(--cor-secundaria);
}

footer h5 {
    color: var(--cor-primaria);
    font-weight: 600;
}

footer a {
    color: var(--cor-primaria);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #6d3767;
    text-decoration: underline;
}

/* Modal */
.modal-header {
    background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-secundaria) 100%);
    color: white;
}

.modal-title {
    font-weight: 600;
}

.btn-close {
    filter: brightness(0) invert(1);
}

/* Responsividade */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    header .lead {
        font-size: 1rem;
    }
    
    .card-img-top {
        height: 150px;
    }
    
    section ul li {
        font-size: 1rem;
    }
}
