/* Global Styles */
:root {
    --primary-color: #ffcc00;
    --secondary-color: #000000;
    --text-color: #ffffff;
    --bg-color: #1a1a1a;
    --accent-color: #333333;
    --border-radius: 5px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
}

.splash-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg-texture.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
}

.container {
    position: relative;
    z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.highlight {
    color: var(--primary-color);
}

section {
    padding: 2rem 0;
    position: relative;
}

section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.btn {
    padding: 10px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: #444444;
    border-color: #444444;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

/* Header Styles */
.header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 2rem 0;
    border-bottom: 5px solid var(--primary-color);
}

.logo img {
    max-width: 200px;
}

.event-title h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.event-date {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.date-highlight {
    color: var(--primary-color);
    margin: 0 5px;
}

.event-location {
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* Intro Section Styles */
.intro-section {
    background-color: rgba(26, 26, 26, 0.9);
}

.intro-content {
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Package Section Styles */
.package-section {
    background-color: rgba(26, 26, 26, 0.8);
}

.package-content, .menu-content {
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
}

.package-list {
    list-style: none;
    padding-left: 0;
}

.package-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.package-list li i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 5px;
}

.package-note {
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(255, 204, 0, 0.1);
    border-left: 4px solid var(--primary-color);
}

.menu-section {
    margin-bottom: 1.5rem;
}

.menu-section h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.menu-section ul {
    list-style: none;
    padding-left: 0;
}

.menu-section ul li {
    margin-bottom: 5px;
}

/* Pricing Section Styles */
.pricing-section {
    background-color: rgba(26, 26, 26, 0.9);
    text-align: center;
}

.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.price-item {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    min-width: 200px;
    transition: transform 0.3s ease;
}

.price-item:hover {
    transform: translateY(-5px);
}

.price-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.children-pricing {
    margin-top: 2rem;
    font-size: 1.2rem;
}

.children-pricing .free {
    color: #28a745;
    font-weight: 700;
}

.children-pricing .note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Registration Form Styles */
.registration-section {
    background-color: rgba(26, 26, 26, 0.8);
}

.form-container {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-step {
    display: none;
}

.form-step:first-child {
    display: block;
}

.form-step h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    padding: 10px 15px;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 204, 0, 0.25);
    color: var(--text-color);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Corrigir problema de cor no Chrome para selects */
select.form-control {
    color: var(--text-color) !important;
}

select.form-control option {
    background-color: var(--bg-color);
    color: var(--text-color);
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.passenger-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.passenger-form h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.extra-tshirt-info {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: rgba(255, 204, 0, 0.1);
    border-radius: var(--border-radius);
}

.extra-tshirts-container {
    margin-bottom: 1.5rem;
}

.input-group .btn {
    padding: 0.375rem 0.75rem;
}

.summary-container {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.summary-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-section:last-child {
    border-bottom: none;
}

.summary-section h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.total-section {
    background-color: rgba(255, 204, 0, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.total-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Footer Styles */
.footer {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 3rem 0;
    border-top: 5px solid var(--primary-color);
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 1.5rem;
}

.footer-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-contact a {
    color: #fff !important;
    text-decoration: underline;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--primary-color) !important;
    text-decoration: underline;
}

.footer-sponsors {
    text-align: center;
    margin: 2rem 0;
}

.footer-sponsors p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.sponsors-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.sponsors-logos img {
    max-height: 50px;
}

.copyright {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header {
        text-align: center;
    }
    
    .logo {
        margin-bottom: 1.5rem;
    }
    
    .event-title {
        text-align: center;
    }
    
    .event-title h1 {
        font-size: 2rem;
    }
    
    .event-date {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .pricing-table {
        flex-direction: column;
        align-items: center;
    }
    
    .price-item {
        width: 100%;
        max-width: 300px;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-navigation button {
        width: 100%;
    }
    
    .sponsors-logos {
        flex-direction: column;
        align-items: center;
    }
}

/* Animation Effects */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.form-step {
    animation: fadeIn 0.5s ease;
}

/* Splash Effect */
.splash {
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    animation: splash 0.6s linear;
    pointer-events: none;
}

@keyframes splash {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
