/* Ocultar barra publicitaria Mobirise */
.rompelinks {
    pointer-events: none;
    cursor: default;
    background-color: #A6A99C;
}

/* Transición global para animaciones suaves */
html {
    scroll-behavior: smooth;
}

/* Tarjetas de Galería y Muebles - Efecto Elevación 3D y Zoom */
.furniture-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.furniture-card img {
    transition: transform 0.6s ease;
}

.furniture-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.furniture-card:hover img {
    transform: scale(1.06);
}

/* Tarjetas de Servicios con "Efecto Cota / Plano" en Hover */
.service-box {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.35s ease;
    background-color: #ffffff;
    position: relative;
}

.service-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #111111;
    transition: width 0.4s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.service-box:hover::after {
    width: 100%;
}

/* Tarjetas de Pilares y Testimonios */
.pilar-card, .review-card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pilar-card:hover, .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* Foto de Denise y Matías */
.portrait-frame img {
    border-radius: 16px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portrait-frame:hover img {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Subrayado con estilo de diseño */
.highlight-blueprint {
    position: relative;
    display: inline-block;
}

.highlight-blueprint::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #111111;
    border-radius: 2px;
}

/* Visor 3D y Contenedor */
.furniture-3d-container {
    width: 100%;
    max-width: 900px;
    min-height: 500px;
    margin: 0 auto;
    position: relative;
    background: radial-gradient(circle, rgba(240,240,240,1) 0%, rgba(255,255,255,1) 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

model-viewer {
    width: 100%;
    height: 500px;
    background-color: transparent;
    --poster-color: transparent;
    display: block;
}

/* Controles flotantes para cambio de modelo */
.model-switcher-controls {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    padding: 6px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-model-switch {
    border: none;
    background: transparent;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #555555;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-model-switch.active {
    background: #111111;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.btn-model-switch:hover:not(.active) {
    color: #000000;
    background: rgba(0, 0, 0, 0.05);
}