/* ===== VIÑAS PAGES ENHANCED STYLES ===== */

/* Header de Viña */
.vina-header-section {
    background: linear-gradient(135deg, #3f111c 0%, #5a1a2a 100%);
    color: #d9d0bd;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.vina-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 20L55 35L70 35L58 45L63 60L50 50L37 60L42 45L30 35L45 35Z" fill="rgba(217,208,189,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.vina-info {
    position: relative;
    z-index: 2;
}

.vina-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #d9d0bd;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.vina-subtitle {
    font-size: 1.3rem;
    color: rgba(217, 208, 189, 0.9);
    margin-bottom: 2rem;
    font-style: italic;
}

.vina-badge {
    background: linear-gradient(45deg, rgba(217, 208, 189, 0.2), rgba(217, 208, 189, 0.3));
    border: 2px solid #d9d0bd;
    border-radius: 50px;
    padding: 1.2rem 2.5rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: bold;
    color: #d9d0bd;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.vina-badge i {
    font-size: 1.4rem;
}

/* Contenido de Viña */
.vina-content-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fff 0%, #f8f6f0 100%);
}

.vina-description h2 {
    color: #3f111c;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.vina-description h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #3f111c, #d9d0bd);
}

.vina-description h3 {
    color: #3f111c;
    font-size: 1.6rem;
    margin: 2.5rem 0 1.5rem;
    font-weight: 600;
}

.vina-description p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
}

/* Cards de características de la viña */
.vina-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.vina-feature-card {
    background: linear-gradient(135deg, #fff 0%, #f8f6f0 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.vina-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(63, 17, 28, 0.15);
    border-color: #3f111c;
}

.vina-feature-card i {
    font-size: 3rem;
    color: #3f111c;
    margin-bottom: 1.5rem;
    display: block;
}

.vina-feature-card h4 {
    color: #3f111c;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.vina-feature-card p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    line-height: 1.7;
}

/* Información de la viña */
.vina-info-card {
    background: linear-gradient(135deg, #3f111c 0%, #5a1a2a 100%);
    color: #d9d0bd;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(63, 17, 28, 0.3);
    position: relative;
    overflow: hidden;
}

.vina-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(217, 208, 189, 0.1);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.vina-info-card h3 {
    color: #d9d0bd;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: bold;
    text-align: center;
    position: relative;
    z-index: 2;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(217, 208, 189, 0.2);
    position: relative;
    z-index: 2;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #d9d0bd;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-label i {
    color: rgba(217, 208, 189, 0.8);
}

.info-value {
    color: rgba(217, 208, 189, 0.9);
    font-weight: 500;
    text-align: right;
}

/* Historia y tradición */
.vina-history {
    background: #fff;
    border-left: 5px solid #3f111c;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 0 15px 15px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
}

.vina-history::before {
    content: '📜';
    position: absolute;
    top: -10px;
    left: -15px;
    background: #3f111c;
    color: #d9d0bd;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.vina-history h3 {
    color: #3f111c;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.vina-history p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
}

/* Productos relacionados */
.productos-vina {
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ede4 100%);
    padding: 100px 0;
    position: relative;
}

.productos-vina::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(63,17,28,0.05)"/><circle cx="80" cy="80" r="2" fill="rgba(63,17,28,0.05)"/><circle cx="50" cy="50" r="1" fill="rgba(63,17,28,0.05)"/></svg>') repeat;
}

.productos-vina .section-title {
    color: #3f111c;
    text-align: center;
    margin-bottom: 4rem;
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
}

.productos-vina .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #3f111c, #d9d0bd);
}

/* CTA Button */
.vina-cta-button {
    background: linear-gradient(45deg, #3f111c, #5a1a2a);
    color: #d9d0bd;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(63, 17, 28, 0.3);
}

.vina-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(63, 17, 28, 0.4);
    color: #d9d0bd;
    background: linear-gradient(45deg, #5a1a2a, #3f111c);
}

/* Responsive Design */
@media (max-width: 768px) {
    .vina-title {
        font-size: 2.5rem;
    }
    
    .vina-subtitle {
        font-size: 1.1rem;
    }
    
    .vina-header-section {
        padding: 60px 0;
    }
    
    .vina-content-section {
        padding: 80px 0;
    }
    
    .vina-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vina-badge {
        padding: 1rem 2rem;
        font-size: 1rem;
        margin-top: 2rem;
    }
    
    .vina-info-card,
    .vina-history {
        margin: 2rem 0;
        padding: 2rem;
    }
    
    .vina-description h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .vina-title {
        font-size: 2rem;
    }
    
    .vina-description h2 {
        font-size: 1.7rem;
    }
    
    .vina-description h3 {
        font-size: 1.4rem;
    }
    
    .vina-feature-card {
        padding: 2rem;
    }
    
    .vina-feature-card i {
        font-size: 2.5rem;
    }
    
    .vina-info-card,
    .vina-history {
        padding: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .info-value {
        text-align: left;
    }
}

/* Animaciones */
.vina-info,
.vina-badge {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.vina-badge {
    animation-delay: 0.3s;
}

.vina-feature-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.vina-feature-card:nth-child(1) { animation-delay: 0.1s; }
.vina-feature-card:nth-child(2) { animation-delay: 0.2s; }
.vina-feature-card:nth-child(3) { animation-delay: 0.3s; }
.vina-feature-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects */
.info-item:hover {
    background: rgba(217, 208, 189, 0.1);
    border-radius: 10px;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    transition: all 0.3s ease;
}