/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Accessibility - Skip Navigation Link */
.skip-nav {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    z-index: 10000;
}

.skip-nav:focus {
    position: fixed;
    top: 10px;
    left: 10px;
    width: auto;
    height: auto;
    overflow: visible;
}

/* Focus indicators for better accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #FF6B35;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .warning-box {
        border: 2px solid #000;
    }
    
    .ticket-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;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fixed Header Container */
.fixed-header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Top Banner */
.top-banner {
    background: #8B4B94;
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
}

.banner-content p {
    margin: 2px 0;
    font-size: 13px;
}

.banner-content p {
    margin: 2px 0;
}

/* Header */
.header {
    background: white;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 45px;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo a:hover {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.navigation {
    display: flex;
    gap: 35px;
    margin-left: 40px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #FF6B35;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: color 0.3s;
    letter-spacing: 0.5px;
    display: block;
    padding: 10px 0;
}

.nav-link:hover {
    color: #FF8C42;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 3px solid #FF6B35;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #FF6B35;
    padding-left: 25px;
}

/* Arrow indicator for dropdown */
.nav-link::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 8px;
    vertical-align: middle;
    transition: transform 0.3s;
}

.nav-item:hover .nav-link::after {
    transform: rotate(180deg);
}

/* No dropdown arrow for simple links */
.nav-link.no-dropdown::after {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-icon img {
    width: 20px;
    height: 20px;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF6B35;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

.user-icon img {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.language {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.language img {
    width: 20px;
    height: 15px;
}

.buy-button {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.buy-button:hover {
    background: #FF8C42;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background-image: url('images/bannercomprar_ingresso.png');
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    height: 170px;
    margin-top: 120px; /* Space for fixed header */
    width: 100%;
}

/* Main Content Wrapper */
.main-wrapper {
    margin-top: 0; /* Hero section now has its own margin */
}

/* Progress Steps */
.progress-steps {
    background: #F8F9FA;
    padding: 25px 0;
    border-bottom: 1px solid #E9ECEF;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #6C757D;
    font-weight: 500;
    font-size: 14px;
}

.step.active {
    color: #FF6B35;
    font-weight: 600;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #DEE2E6;
    color: #6C757D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.step.active .step-number {
    background: #FF6B35;
    color: white;
}

/* Main Content */
.main-content {
    background: white;
    padding: 40px 0;
}

.section-header h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.section-icon {
    width: 28px;
    height: 28px;
    fill: #00BCD4;
    flex-shrink: 0;
}

/* Info Box */
.info-box {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.info-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}

.info-icon {
    font-size: 24px;
    color: #FF6B35;
}

/* Ticket Content Wrapper */
.ticket-content-wrapper {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.ticket-cards-column {
    flex: 2;
    min-width: 0;
}

.park-promo-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Sidebar Info Box */
.sidebar-info-box {
    background: #FEF7E6;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #F5E6D3;
}

.sidebar-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.sidebar-info-item:last-child {
    margin-bottom: 0;
}

.sidebar-info-icon {
    width: 50px;
    height: 50px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar-info-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.sidebar-info-item p {
    color: #333;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
    padding-top: 2px;
}

/* Ticket Cards */
.ticket-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ticket-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: stretch;
}

.ticket-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.card-image {
    width: 120px;
    min-width: 120px;
    height: 120px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h3 {
    font-size: 16px;
    color: #FF6B35;
    margin-bottom: 8px;
    font-weight: 600;
}

.card-content p {
    color: #666;
    margin-bottom: 12px;
    line-height: 1.4;
    font-size: 14px;
    flex: 1;
}

.price {
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
}

.price strong {
    font-size: 16px;
    color: #FF6B35;
    font-weight: bold;
}

.select-button {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 12px;
    align-self: flex-start;
    text-transform: uppercase;
}

.select-button:hover {
    background: #FF8C42;
}

.info-link {
    color: #FF6B35;
    font-size: 14px;
    margin-top: 10px;
    cursor: pointer;
}

/* Ticket Options */
.ticket-options {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.ticket-options.hidden {
    display: none;
}

.quantity-selector,
.date-selector,
.time-selector {
    margin-bottom: 15px;
}

.quantity-selector label,
.date-selector label,
.time-selector label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
    font-size: 14px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 35px;
    height: 35px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.qty-btn:hover {
    background: #f8f9fa;
    border-color: #FF6B35;
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantity-input {
    width: 60px;
    height: 35px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
}

.visit-date,
.visit-time {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background: white;
}

.visit-date:focus,
.visit-time:focus,
.quantity-input:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.1);
}

.total-price {
    font-size: 18px;
    font-weight: bold;
    color: #FF6B35;
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    margin-top: 15px;
}

.add-to-cart-button {
    width: 100%;
    background: #28a745;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.add-to-cart-button:hover {
    background: #218838;
}

.add-to-cart-button.hidden {
    display: none;
}

.ticket-card.selected {
    border: 2px solid #FF6B35;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

/* Step Sections */
.customer-info,
.payment-info,
.confirmation {
    margin-top: 40px;
}

.customer-info.hidden,
.payment-info.hidden,
.confirmation.hidden {
    display: none;
}

/* Form Styles */
.form-container,
.payment-container,
.confirmation-container {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.customer-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    flex: 100%;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.1);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: #FF6B35;
    color: white;
}

.btn-primary:hover {
    background: #FF8C42;
}

.btn-secondary {
    background: transparent;
    color: #666;
    border: 2px solid #ddd;
}

.btn-secondary:hover {
    border-color: #FF6B35;
    color: #FF6B35;
}

/* Payment Styles */
.payment-methods {
    margin-bottom: 30px;
}

.payment-methods h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 18px;
}

.payment-option {
    margin-bottom: 15px;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option label {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.payment-option input[type="radio"]:checked + label {
    border-color: #FF6B35;
    background: rgba(255, 107, 53, 0.05);
}

.payment-icon {
    font-size: 24px;
    margin-right: 15px;
}

.card-form,
.pix-form {
    margin-top: 20px;
}

.pix-form.hidden,
.card-form.hidden {
    display: none;
}

.pix-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #FF6B35;
}

.pix-info h4 {
    color: #FF6B35;
    margin-bottom: 10px;
}

.pix-info p {
    margin-bottom: 10px;
    color: #666;
}

/* Confirmation Styles */
.success-message {
    text-align: center;
    margin-bottom: 30px;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.success-message h3 {
    color: #28a745;
    font-size: 24px;
    margin-bottom: 10px;
}

.success-message p {
    color: #666;
    font-size: 16px;
}

.booking-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.booking-details h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.booking-info {
    display: grid;
    gap: 10px;
}

.booking-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.booking-row:last-child {
    border-bottom: none;
    font-weight: bold;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #FF6B35;
}

.booking-label {
    color: #666;
}

.booking-value {
    color: #333;
    font-weight: 500;
}

/* Responsive Design for Forms */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    .form-container,
    .payment-container,
    .confirmation-container {
        padding: 20px;
    }
}

/* Park Promo */
.park-promo {
    border-radius: 12px;
    overflow: hidden;
    height: fit-content;
    position: sticky;
    top: 140px;
}

.park-promo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Warning Section */
.warning-section {
    margin: 40px 0;
}

.warning-box {
    background: #FFF3CD;
    border: 1px solid #FFE69C;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.warning-icon {
    font-size: 24px;
    color: #856404;
}

.warning-content strong {
    color: #856404;
    display: block;
    margin-bottom: 5px;
}

.warning-content p {
    color: #856404;
    margin: 5px 0;
}

/* Accordion Section */
.accordion-section {
    margin: 40px 0;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-header {
    background: #f8f9fa;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #e9ecef;
}

.accordion-header h3 {
    color: #FF6B35;
    font-size: 16px;
    font-weight: bold;
}

.accordion-icon {
    font-size: 20px;
    color: #666;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 200px;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.newsletter h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.newsletter p {
    font-size: 18px;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form .form-group {
    flex: 1;
    min-width: 200px;
    display: block;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    background: white;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.newsletter-form input[type="text"]::placeholder,
.newsletter-form input[type="email"]::placeholder {
    color: #999;
    opacity: 1;
    font-size: 16px;
}

.newsletter-form input[type="text"]:focus,
.newsletter-form input[type="email"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: white;
    color: #FF6B35;
}

/* Footer */
.footer {
    background: #FF6B35;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 100px;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.contact-info p {
    margin: 5px 0;
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.link-column h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.link-column a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: opacity 0.3s;
}

.link-column a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-icon {
    display: block;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Partners Section */
.partners-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.partners-column h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.certificate-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.partner-logos img, .certificate-logos img {
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 20px;
    text-align: center;
}

.footer-links-bottom {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-links-bottom a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-links-bottom a:hover {
    opacity: 0.8;
}

.copyright {
    font-size: 14px;
    opacity: 0.8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 1000;
    border-top: 3px solid #FF6B35;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.cookie-text h4 {
    color: #FF6B35;
    margin-bottom: 5px;
}

.cookie-text p {
    margin-bottom: 5px;
    font-size: 14px;
}

.cookie-links a {
    color: #FF6B35;
    text-decoration: none;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-actions button {
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-customize {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
}

.btn-reject {
    background: #6c757d;
    color: white;
}

.btn-accept {
    background: #FF6B35;
    color: white;
}

.cookie-actions button:hover {
    opacity: 0.8;
}

/* Fixed Icons */
.fixed-icons {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.icon-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.icon-item:hover {
    transform: scale(1.1);
}

.whatsapp {
    background: #25D366;
}

.chat {
    background: #FF6B35;
}

.dollar {
    background: #333;
}

.icon-item img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navigation {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .hero h1 {
        font-size: 36px;
        letter-spacing: 1px;
    }
    
    .steps {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .info-box {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Mobile layout for ticket content */
    .ticket-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .park-promo-column {
        min-width: unset;
        gap: 15px;
    }
    
    .sidebar-info-box {
        padding: 15px;
    }
    
    .sidebar-info-item {
        margin-bottom: 15px;
    }
    
    .sidebar-info-icon {
        width: 45px;
        height: 45px;
    }
    
    .sidebar-info-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .sidebar-info-item p {
        font-size: 14px;
    }
    
    .park-promo {
        position: static;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form .form-group {
        min-width: unset;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-section {
        grid-template-columns: 1fr;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        padding: 10px 15px;
    }
    
    .hero {
        height: 130px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .newsletter h2 {
        font-size: 28px;
    }
    
    .partner-logos {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .certificate-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Hidden class for JavaScript interactions */
.hidden {
    display: none !important;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Form validation styles */
.form-error {
    border-color: #dc3545 !important;
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

.success-message {
    color: #28a745;
    font-size: 14px;
    margin-top: 5px;
}