﻿/* Divider entre secciones */
.venue-divider {
    display: flex;
    align-items: center;
    margin: 40px 0 30px;
    gap: 15px;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #769C30, transparent);
    opacity: 0.3;
}

.divider-text {
    color: #769C30;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* Sección del Venue */
.venue-section {
    margin-top: 20px;
}

.venue-showcase {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(118, 156, 48, 0.15);
    transition: all 0.4s ease;
}

    .venue-showcase:hover {
        box-shadow: 0 15px 50px rgba(0,0,0,0.12);
        transform: translateY(-3px);
    }

.venue-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f5f5f5;
}

.venue-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.venue-showcase:hover .venue-image {
    transform: scale(1.03);
}

.venue-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    color: #769C30;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.venue-content {
    padding: 30px;
}

.venue-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.venue-name {
    font-size: 1.6rem;
    color: #2c3e50;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .venue-name i {
        color: #769C30;
        font-size: 1.4rem;
    }

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
}

    .instagram-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
        color: white;
    }

    .instagram-link i {
        font-size: 1.1rem;
    }

.venue-quote {
    margin: 0 0 25px 0;
    padding: 20px 25px;
    background: #f8f9fa;
    border-left: 4px solid #769C30;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    position: relative;
}

.venue-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    justify-content: center;
}

.feature-tag {
    background: rgba(118, 156, 48, 0.1);
    color: #5a7a24;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(118, 156, 48, 0.2);
    transition: all 0.3s ease;
}

    .feature-tag:hover {
        background: #769C30;
        color: white;
        transform: translateY(-2px);
    }

.venue-address-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid rgba(118, 156, 48, 0.1);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

    .venue-address-box:hover {
        border-color: rgba(118, 156, 48, 0.3);
        box-shadow: 0 4px 15px rgba(118, 156, 48, 0.1);
    }

.address-icon {
    width: 50px;
    height: 50px;
    background: #769C30;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.address-info h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 1rem;
}

.address-info p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

.venue-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #769C30;
    color: white;
    text-decoration: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid #769C30;
}

    .venue-cta:hover {
        background: transparent;
        color: #769C30;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(118, 156, 48, 0.3);
    }

/* Ajuste principal: Grid alineado al inicio (PC) */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Columna izquierda: Eliminar espacios superiores */
.form-section {
    display: flex;
    flex-direction: column;
    padding-top: 0;
    margin-top: 0;
}

/* Countdown: Compactar espacio superior */
.countdown-container {
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 20px;
}

/* Título: Sin margen superior extra */
.form-section h1 {
    margin-top: 0;
    padding-top: 0;
}

/* Subtítulo: Mantener consistencia */
.form-section .subtitle {
    margin-top: 10px;
    margin-bottom: 20px;
}

/* Columna derecha: Asegurar que también inicie arriba */
.info-section {
    display: flex;
    flex-direction: column;
    padding-top: 0;
    margin-top: 0;
}

/* Imagen del taller: Sin margen superior */
.hero-image {
    margin-top: 0;
    padding-top: 0;
    display: block;
}

/* Animación de entrada */
.venue-showcase {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE: MÓVIL (una sola columna)
   ============================================ */

@media (max-width: 968px) {
    /* Forzar una sola columna en móvil */
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    /* Asegurar que ambas secciones ocupen el 100% */
    .form-section,
    .info-section {
        width: 100%;
        max-width: 100%;
    }

    /* La info-section va después del formulario */
    .info-section {
        order: 2;
    }

    .form-section {
        order: 1;
    }
}

@media (max-width: 768px) {
    .venue-image-container {
        height: 300px;
    }

    .venue-header {
        flex-direction: column;
        text-align: center;
    }

    .venue-name {
        font-size: 1.4rem;
        justify-content: center;
    }

    .venue-content {
        padding: 20px;
    }

    .venue-quote {
        font-size: 0.95rem;
        padding: 15px 20px;
    }

    .feature-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .venue-image-container {
        height: 250px;
    }

    .venue-badge {
        font-size: 0.75rem;
        padding: 8px 14px;
        top: 15px;
        left: 15px;
    }

    .divider-text {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .hero-grid {
        gap: 20px;
    }
}