/* ======================================================================
   EVAS - Hoja de estilos
   Paleta extraída del logo; preserva el diseño del boceto original.
   ====================================================================== */

:root {
    --brand-purple: #4a1a4c;
    --brand-orange: #f36c21;
    --brand-yellow: #fdb813;
    --brand-green: #8dc63f;
    --brand-red: #e62020;
    --bg-body: #fdfaf5;
    --text-main: #2d132c;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(74, 26, 76, 0.15);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar {
    background: var(--white) !important;
    border-bottom: 4px solid var(--brand-yellow);
    padding: 15px 0;
}

.navbar-brand img {
    height: 55px;
    margin-right: 12px;
}

/* Botones */
.btn-primary {
    background-color: var(--brand-purple);
    border: none;
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: var(--brand-orange);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--brand-purple);
    border-color: var(--brand-purple);
    border-radius: 50px;
}

.btn-outline-primary:hover {
    background-color: var(--brand-purple);
    color: white;
}

/* Secciones */
.hero-banner {
    background: linear-gradient(135deg, var(--brand-purple) 0%, #7d2a81 100%);
    color: white;
    padding: 120px 0;
    border-radius: 0 0 60px 60px;
    box-shadow: var(--shadow);
}

.card-business {
    border: none;
    border-radius: 25px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 6px solid var(--brand-orange);
}

.card-business:hover {
    transform: translateY(-10px);
}

.card-business img {
    height: 220px;
    object-fit: cover;
}

.category-tag {
    background: var(--brand-purple);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 12px;
}

/* Gallery */
.gallery-item {
    height: 280px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Map Placeholder */
.map-container {
    background: white;
    border: 2px dashed var(--brand-yellow);
    border-radius: 35px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--brand-purple);
}

/* Detail View */
.detail-header {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.product-card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    border-left: 5px solid var(--brand-green);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

/* Variante visual para tarjetas de servicios */
.product-card.service-card {
    border-left-color: var(--brand-orange);
}

footer {
    background: var(--brand-purple);
    color: white;
    padding: 80px 0 40px;
    margin-top: auto;
    border-top: 6px solid var(--brand-yellow);
}

.admin-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
