/* Visitantes Page Specific Styles */

/* Navigation active state - removed to use global header color styles */

/* Visitantes Hero Section */
.visitantes-hero {
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    color: white;
    padding: 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.visitantes-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.visitantes-hero h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.visitantes-hero h1.hero-title-small {
    font-size: 2.8rem;
}

.visitantes-hero .hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Audience Types */
.audience-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.audience-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.audience-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
}

.audience-intro {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.95;
    line-height: 1.5;
}

.free-badge {
    background: rgba(76, 175, 80, 0.3);
    border: 2px solid #4CAF50;
    border-radius: 10px;
    padding: 12px 16px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 1.05rem;
}

.audience-card .btn {
    width: 100%;
    margin-top: 10px;
}

.hero-benefits {
    margin-bottom: 20px;
}

.hero-benefits-compact .benefit-item {
    margin-bottom: 8px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.benefit-icon {
    background: #4CAF50;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.visitantes-hero .hero-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Carousel styles */
.carousel-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

/* Section Intros */
.section-intro {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Agenda Section */
.visitantes-agenda {
    padding: 80px 0;
    background: #f9f9f9;
}

.visitantes-agenda h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.agenda-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 0;
    background: white;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.agenda-tab {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #666;
}

.agenda-tab.active {
    background: #2196F3;
    color: white;
    box-shadow: 0 2px 8px rgba(33,150,243,0.3);
}

.agenda-content {
    max-width: 800px;
    margin: 0 auto;
}

.agenda-day {
    display: none;
}

.agenda-day.active {
    display: block;
}

.agenda-timeline {
    position: relative;
}

.agenda-timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #2196F3, #FFC107);
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 91px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: #2196F3;
    border-radius: 50%;
    box-shadow: 0 0 0 4px white, 0 0 0 6px #2196F3;
}

.time {
    width: 80px;
    font-weight: bold;
    color: #2196F3;
    font-size: 0.9rem;
    text-align: right;
    padding-right: 30px;
    padding-top: 5px;
}

.event {
    flex: 1;
    background: white;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-left: 40px;
    position: relative;
}

.event::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

.event h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.1rem;
}

.event p {
    margin: 0 0 15px 0;
    color: #666;
    line-height: 1.5;
}

.event-type {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.event-type.opening { background: #E8F5E8; color: #2E7D32; }
.event-type.conference { background: #E3F2FD; color: #1976D2; }
.event-type.networking { background: #FFF3E0; color: #F57C00; }
.event-type.business { background: #F3E5F5; color: #7B1FA2; }
.event-type.workshop { background: #E0F2F1; color: #00695C; }
.event-type.exhibition { background: #FFF8E1; color: #F9A825; }
.event-type.cultural { background: #FCE4EC; color: #C2185B; }
.event-type.tech { background: #E8EAF6; color: #3F51B5; }
.event-type.startup { background: #EFEBE9; color: #5D4037; }
.event-type.awards { background: #FFF9C4; color: #F57F17; }
.event-type.closing { background: #FFEBEE; color: #D32F2F; }

.agenda-cta {
    text-align: center;
    margin-top: 40px;
}

.agenda-cta .btn {
    margin: 0 10px;
}

/* Expositores Map Section */
.expositores-map {
    padding: 80px 0;
    background: white;
}

.expositores-map h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.map-filters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.filter-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
}

.exhibitors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.exhibitor-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.exhibitor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.exhibitor-logo {
    margin-bottom: 20px;
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #2196F3, #1976D2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
}

.exhibitor-card h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.2rem;
}

.exhibitor-sector {
    color: #666;
    margin: 0 0 5px 0;
    font-size: 0.9rem;
}

.exhibitor-country {
    color: #888;
    margin: 0 0 20px 0;
    font-size: 0.9rem;
}

.new-badge, .premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}

.new-badge {
    background: #4CAF50;
    color: white;
}

.premium-badge {
    background: #FFD700;
    color: #333;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.exhibitors-cta {
    text-align: center;
}

.exhibitors-cta .btn {
    margin: 0 10px;
}

/* Blog Section */
.visitantes-blog {
    padding: 80px 0;
    background: #f9f9f9;
}

.visitantes-blog h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card.featured {
    grid-row: span 2;
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(45deg, #ddd, #ccc);
}

.blog-card.featured .blog-image {
    height: 300px;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    background: #2196F3;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.blog-card h3 {
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    line-height: 1.4;
    color: #333;
}

.blog-card.featured h3 {
    font-size: 1.5rem;
}

.blog-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #888;
}

.blog-cta {
    text-align: center;
}

/* FAQ Section */
.visitantes-faq {
    padding: 80px 0;
    background: white;
}

.visitantes-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-quick-actions h3 {
    margin-bottom: 25px;
    color: #333;
    font-size: 1.5rem;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.quick-action {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-action:hover {
    border-color: #2196F3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33,150,243,0.2);
}

.action-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.action-title {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.action-desc {
    font-size: 0.9rem;
    color: #666;
}

.faq-questions h3 {
    margin-bottom: 25px;
    color: #333;
    font-size: 1.5rem;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-size: 1.1rem;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #2196F3;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 20px 0;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .visitantes-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }

    .visitantes-hero h1 {
        font-size: 2rem;
    }

    .visitantes-hero h1.hero-title-small {
        font-size: 2rem;
    }

    .visitantes-hero .hero-subtitle {
        font-size: 1rem;
    }

    .visitantes-hero {
        padding: 60px 0;
    }

    .audience-types {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .audience-card {
        text-align: left;
    }

    .carousel-container {
        height: 350px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .agenda-tabs {
        flex-direction: column;
        max-width: 100%;
    }
    
    .agenda-timeline::before {
        left: 20px;
    }
    
    .timeline-item::before {
        left: 11px;
    }
    
    .time {
        width: auto;
        text-align: left;
        padding: 0 0 10px 40px;
    }
    
    .event {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .event::before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .map-filters {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .exhibitors-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card.featured {
        grid-row: span 1;
    }
    
    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .visitantes-hero {
        padding: 60px 0;
    }

    .visitantes-hero h1 {
        font-size: 2rem;
    }

    .carousel-container {
        height: 250px;
    }
    
    .agenda-tab {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}