
:root {
    --bmt-shadow-soft: 0 10px 30px rgba(0,0,0,0.1);
    --bmt-shadow-deep: 0 20px 50px rgba(0,0,0,0.3);
    --bmt-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Compact Premium */
.bmt-hero--compact {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/slider/brasa.webp') center/cover no-repeat;
    padding: 100px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--burmet-border);
}

.bmt-hero--compact h1 {
    font-family: 'CHEDROS', sans-serif;
    font-size: clamp(42px, 8vw, 72px);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
    line-height: 0.9;
    color: #ffffff !important;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease-out;
}

/* Alert Box Premium */
.bmt-alert {
    background: rgba(198, 0, 23, 0.05);
    border: 1px solid rgba(198, 0, 23, 0.2);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 48px;
    backdrop-filter: blur(10px);
}

.bmt-alert-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    line-height: 1.6;
}

.bmt-alert-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.bmt-alert-list li:last-child { margin-bottom: 0; }

.bmt-alert-list li::before {
    content: '🔥';
    position: absolute;
    left: 0;
    top: 0;
}

/* Cards Refinement - DISRUPTIVE PREMIUM */
.bmt-section-header { margin-bottom: 60px; }

.bmt-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    perspective: 1000px;
}

.bmt-card {
    background: var(--burmet-card-light);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 0;
    color: #1a1a1a;
    transition: var(--bmt-transition);
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

.bmt-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.bmt-card-image-wrapper {
    height: 260px;
    overflow: hidden;
    position: relative;
    border-radius: 24px 24px 0 0;
}

.bmt-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.bmt-card:hover .bmt-card-image {
    transform: scale(1.1);
}

/* Floating Badge Effect */
/*.bmt-card-image-wrapper::after {
    content: 'MADRID';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--burmet-red);
    color: #fff;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(198,0,23,0.3);
}*/

.bmt-card-content {
    padding: 32px;
    background: #fff;
    border-radius: 0 0 24px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bmt-card h3 {
    font-family: 'CHEDROS', sans-serif;
    font-size: 28px;
    color: #111;
    margin: 0 0 12px;
    text-transform: uppercase;
    line-height: 1;
}

.bmt-meta {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bmt-meta::before {
    content: '📍';
    font-size: 18px;
}

/* Premium Buttons */
.bmt-card .bmt-links {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.bmt-card .bmt-link {
    flex: 1;
    text-align: center;
    padding: 14px 10px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--bmt-transition);
}

.bmt-card .bmt-link-primary {
    background: var(--burmet-red);
    color: #fff;
    box-shadow: 0 8px 20px rgba(198,0,23,0.25);
}

.bmt-card .bmt-link-primary:hover {
    background: #a30013;
    box-shadow: 0 12px 28px rgba(198,0,23,0.35);
}

.bmt-card .bmt-link-ghost {
    background: #f8f8f8;
    color: #111;
    border: 1px solid rgba(0,0,0,0.05);
}

.bmt-card .bmt-link-ghost:hover {
    background: #eeeeee;
}

/* Section Texture */
.bmt-section--dark {
    background: radial-gradient(circle at top, #1a1a1c 0%, #0f0f10 100%);
    position: relative;
}

.bmt-section--dark::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://www.transparenttextures.com/patterns/black-linen-2.png');
    opacity: 0.2;
    pointer-events: none;
}

/* Entrance Animations */
.bmt-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.bmt-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.bmt-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }

@media (max-width: 992px) {
    .bmt-cards {
        grid-template-columns: 1fr !important;
        max-width: 500px;
        margin: 0 auto;
        gap: 24px !important;
    }
    
    .bmt-card {
        margin-bottom: 20px;
    }

    .bmt-info-col {
        margin-top: 40px;
    }

    .bmt-section {
        padding: 40px 0;
    }
}

/* WhatsApp Floating Refined */
.bmt-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366; /* Official WhatsApp Green */
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--bmt-transition);
    text-decoration: none !important;
}

.bmt-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.bmt-whatsapp-float img {
    width: 34px;
    height: 34px;
    display: block;
}
