/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f1eb;
    color: #333;
    line-height: 1.6;
}

/* Header */
.main-header {
    background-color: #f5f1eb;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    flex: 1;
}

.main-logo {
    height: 60px;
    width: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-ingressos {
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ingressos:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

.btn-icon, .btn-menu {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.btn-icon:hover, .btn-menu:hover {
    background-color: rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mostrar apenas imagem desktop por padrão */
.hero-img-desktop {
    display: block;
}

.hero-img-mobile {
    display: none;
}

/* Para mobile: mostrar apenas imagem mobile */
@media (max-width: 768px) {
    .hero-img-desktop {
        display: none;
    }
    
    .hero-img-mobile {
        display: block;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    /* Ocultar texto e botão no mobile */
    .desktop-only {
        display: none !important;
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #f5f1eb;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f5f1eb;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.btn-cta {
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-cta:hover {
    background-color: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

/* Schedule Section */
.schedule-section {
    padding: 20px;
    background-color: #f5f1eb;
}

.schedule-container {
    background-color: #8b6f47;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.clock-icon {
    width: 50px;
    height: 50px;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.schedule-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.schedule-info p {
    font-size: 1rem;
    margin-bottom: 4px;
    opacity: 0.95;
}

/* Action Cards */
.action-cards {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.action-card {
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    text-decoration: none;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.action-card:hover {
    transform: translateY(-3px);
}

.action-card.orange {
    background-color: #ff6b35;
    color: white;
}

.action-card.brown {
    background-color: #8b6f47;
    color: white;
}

.card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.card-content {
    flex: 1;
}

.card-button {
    background-color: white;
    color: #333;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-button:hover {
    transform: scale(1.05);
}

/* Jaguar Section */
.jaguar-section {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.jaguar-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.jaguar-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: block;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

/* Website Info */
.website-info {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 14px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .main-header {
        padding: 10px 15px;
    }
    
    .main-logo {
        height: 45px;
    }
    
    .btn-ingressos {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .btn-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .schedule-container {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .action-cards {
        padding: 15px;
    }
    
    .action-card {
        padding: 25px;
        gap: 20px;
    }
    
    .jaguar-section {
        padding: 15px;
    }
    
    .whatsapp-float {
        bottom: 80px;
        right: 15px;
    }
    
    .whatsapp-float a {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}



/* About Section */
.about-section {
    background-color: #f5f1eb;
    padding: 40px 20px;
}

.about-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.about-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.about-container h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.about-container p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

/* Tickets Carousel */
.tickets-carousel {
    background-color: #f5f1eb;
    padding: 20px;
}

.carousel-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.carousel-slides {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-slide {
    display: none;
    width: 100%;
}

.carousel-slide.active {
    display: block;
}

.ticket-card {
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 400px;
}

.ticket-header {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.ticket-header h3 {
    color: #f5f1eb;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.ticket-type {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticket-type.green {
    background-color: #4CAF50;
    color: white;
}

.ticket-type.brown {
    background-color: #8b6f47;
    color: white;
}

.ticket-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.ticket-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticket-btn:hover {
    background-color: #e55a2b;
    transform: translateX(-50%) translateY(-3px);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: #8b6f47;
}

/* Map Section */
.map-section {
    padding: 0;
    background-color: #f5f1eb;
}

.map-container {
    width: 100%;
    height: 200px;
    background-color: #e0e0e0;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Info Section */
.info-section {
    background-color: #f5f1eb;
    padding: 30px 20px;
}

.info-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.info-content p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.5;
}

.info-content .bilheteria {
    margin-top: 20px;
}

.info-content .bilheteria strong {
    font-weight: 600;
}

.giraffe-image {
    width: 80px;
    height: 200px;
    border-radius: 40px;
    overflow: hidden;
    flex-shrink: 0;
}

.giraffe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Social Section */
.social-section {
    background-color: #f5f1eb;
    padding: 20px;
    text-align: left;
}

.social-container {
    max-width: 600px;
    margin: 0 auto;
}

.social-container p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
}

/* Links Section */
.links-section {
    background-color: #f5f1eb;
    padding: 30px 20px;
}

.links-container {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.links-column a {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.links-column a:hover {
    color: #ff6b35;
}

/* Meerkat Section */
.meerkat-section {
    padding: 20px;
    background-color: #f5f1eb;
}

.meerkat-image {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

.meerkat-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Footer */
.main-footer {
    background-color: #f5f1eb;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #ddd;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Mobile Responsiveness Updates */
@media (max-width: 768px) {
    .about-container h2 {
        font-size: 2rem;
    }
    
    .about-container h3 {
        font-size: 1.1rem;
    }
    
    .ticket-header h3 {
        font-size: 2rem;
    }
    
    .info-container {
        flex-direction: column;
        text-align: center;
    }
    
    .giraffe-image {
        width: 60px;
        height: 150px;
        margin: 0 auto;
    }
    
    .links-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}



/* Credibility Enhancements */
.credibility-section {
    background-color: #f8f9fa;
    padding: 50px 0;
    border-top: 1px solid #e9ecef;
}

.credibility-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.credibility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.credibility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.credibility-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.credibility-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.credibility-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    background-color: white;
    border-top: 1px solid #e9ecef;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    border-color: #ff6b35;
    background-color: #fff8f5;
    transform: translateY(-2px);
}

.trust-badge-icon {
    font-size: 22px;
    color: #28a745;
}

.trust-badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

/* Professional Header Enhancements */
.main-header {
    background: linear-gradient(135deg, #f5f1eb 0%, #e8ddd4 100%);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: relative;
}

.main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35 0%, #e55a2b 100%);
}

.main-logo {
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
    transition: all 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

.btn-ingressos {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-ingressos::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-ingressos:hover::before {
    left: 100%;
}

.btn-ingressos:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Micro-interactions */
.interactive-element {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-element:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Loading States */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Enhanced Card Styles */
.action-card {
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.action-card:hover::before {
    transform: translateX(100%);
}

/* Professional Form Enhancements */
.form-group input:focus,
.form-group select:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

/* Success States */
.success-message {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    animation: fadeInUp 0.5s ease-out;
}

/* Error States */
.error-message {
    background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    animation: fadeInUp 0.5s ease-out;
}

/* Mobile Enhancements */
@media (max-width: 768px) {
    .credibility-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .trust-badge {
        width: 100%;
        justify-content: center;
    }
    
    .credibility-item {
        padding: 25px 15px;
    }
    
    .credibility-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Accessibility Enhancements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
*:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
select:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn-ingressos {
        border: 2px solid #000;
    }
    
    .action-card {
        border: 2px solid #000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

