/* Tickets Styles */

.tickets-container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* Tickets Grid */
.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ticket-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.ticket-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.ticket-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.ticket-content {
    padding: 1.5rem;
}

.ticket-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.ticket-underline {
    width: 60px;
    height: 3px;
    background-color: #000;
    margin-bottom: 1rem;
}

.ticket-description {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ticket-note {
    color: #e60000;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.ticket-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-info,
.btn-comprar {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: 2px solid #000;
    background: transparent;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.btn-info:hover {
    background-color: #000;
    color: #fff;
}

.btn-comprar {
    background-color: #000;
    color: #fff;
}

.btn-comprar:hover {
    background-color: #333;
}

/* Community Section */
.community-section {
    padding: 2rem 0;
}

.community-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.community-hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.community-hero p {
    font-size: 1.125rem;
    color: #666;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    font-size: 0.875rem;
}

.membership-types {
    margin-top: 3rem;
}

.membership-types h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.membership-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.membership-card.featured {
    border: 3px solid #000;
    transform: scale(1.05);
}

.membership-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #e60000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.membership-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
}

.membership-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.membership-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.875rem;
}

.membership-card ul li:before {
    content: '✓ ';
    color: #4CAF50;
    font-weight: bold;
}

.btn-membership {
    width: 100%;
    padding: 1rem;
    background: #000;
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.btn-membership:hover {
    background: #333;
}

/* Professionals Section */
.professionals-section,
.educators-section {
    padding: 2rem 0;
    text-align: center;
}

.professionals-hero,
.educators-hero {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.professionals-hero h2,
.educators-hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.professionals-hero p,
.educators-hero p {
    font-size: 1.125rem;
    color: #666;
}

.contact-info,
.booking-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-info h2,
.booking-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.btn-booking {
    padding: 1rem 2rem;
    background: #000;
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-booking:hover {
    background: #333;
}

/* Friend Section */
.friend-section {
    position: relative;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1499781350541-7783f6c6a0c8?w=1600&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
}

.friend-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.friend-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.friend-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.friend-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn-friend {
    padding: 1rem 3rem;
    background: white;
    color: #000;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-friend:hover {
    background: #e60000;
    color: white;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 2rem;
}

.modal-content {
    background: white;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    position: relative;
    padding: 2rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    background: #f0f0f0;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .tickets-grid {
        grid-template-columns: 1fr;
    }
    
    .ticket-actions {
        flex-direction: column;
    }
    
    .friend-content h2 {
        font-size: 1.5rem;
    }
    
    .membership-card.featured {
        transform: scale(1);
    }
}