/* ELEMENTOS DECORATIVOS MINIMALISTAS */

:root {
    --gold-accent: #d4af37;
    --gold-light: rgba(212, 175, 55, 0.15);
}

/* 1. ACENTOS GRÁFICOS GEOMÉTRICOS */
.gold-line-vertical {
    position: absolute;
    left: -20px;
    top: 10%;
    height: 80%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold-accent), transparent);
    opacity: 0.7;
}

.gold-line-horizontal {
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--gold-accent);
    margin: 1.5rem 0;
    border-radius: 2px;
}

/* 2. FORMAS ORGÁNICAS DE FONDO (BLOBS) */
.decorative-blob {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--gold-light);
    top: -100px;
    right: -100px;
    opacity: 0.4;
    animation: floatBlob 10s infinite alternate ease-in-out;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: rgba(144, 21, 56, 0.08);
    /* Vinotinto muy suave */
    bottom: -50px;
    left: -50px;
    opacity: 0.5;
    animation: floatBlob 12s infinite alternate-reverse ease-in-out;
}

/* 3. PATRON DE PUNTOS SUTIL */
.dots-pattern {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(rgba(212, 175, 55, 0.3) 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.dots-top-right {
    top: -30px;
    right: -30px;
}

.dots-bottom-left {
    bottom: -30px;
    left: -30px;
}

/* 4. MARCOS DECORATIVOS PARA IMÁGENES */
.image-deco-frame {
    position: relative;
    z-index: 1;
}

.image-deco-frame::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold-accent);
    z-index: -1;
    transition: transform 0.3s ease;
}

.image-deco-frame:hover::after {
    transform: translate(5px, 5px);
}

/* ANIMACIONES */
@keyframes floatBlob {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 20px);
    }
}

/* AJUSTES ESPECIFICOS PARA SECCIONES */
.hero {
    position: relative;
    overflow: hidden;
}

.master-card {
    position: relative;
    z-index: 1;
}

.about-us-content,
.about-us-content-reverse {
    position: relative;
    z-index: 1;
}