* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #000;
    overflow-x: hidden;
}

/* Header aprimorado */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid #FFD700;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.8rem 2rem;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #FFD700;
}

.cta-button {
    background: linear-gradient(45deg, #DC143C, #B22222);
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.cta-button:hover {
    background: linear-gradient(45deg, #B22222, #8B0000);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.5);
}

/* Hero Section aprimorado mantendo o conteúdo original */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

.hero-carousel {
    position: absolute;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: flex-end;
    padding: 4rem 2rem;
}

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

.carousel-info {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.carousel-year {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #FFD700;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-theme {
    display: block;
    font-size: 1.4rem;
    color: #fff;
    opacity: 0.95;
    margin-top: 0.8rem;
    font-weight: 500;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.7) 0%, rgba(255, 215, 0, 0.5) 100%);
    z-index: 2;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    padding: 0 3rem;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 215, 0, 0.5);
    color: #FFD700;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: bold;
}

.carousel-btn:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: scale(1.15);
    border-color: #FFD700;
}

.carousel-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    z-index: 4;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: #FFD700;
    transform: scale(1.4);
    border-color: #fff;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    z-index: 3;
    position: relative;
}

.hero-text h1 {
   /* font-size: 4.5rem; */
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.hero-text .highlight {
    color: #FFD700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
}

.hero-text h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-secondary:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-character {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles aprimorados */
.section {
    padding: 10rem 0;
    position: relative;
}

.section-white {
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    color: #333;
}

.section-dark {
    background: linear-gradient(135deg, #111 0%, #000 100%);
    color: #fff;
}

.section-red {
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    color: #fff;
}

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

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #DC143C;
}

.section-dark .section-header h2,
.section-red .section-header h2 {
    color: #FFD700;
}

.section-header p {
    font-size: 1.3rem;
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Experience Grid aprimorado */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    margin-bottom: 5rem;
}

.experience-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 4rem 3rem;
    border-radius: 25px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s;
}

.experience-card:hover::before {
    left: 100%;
}

.experience-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.experience-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    font-size: 2.5rem;
    color: #000;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.experience-card h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #FFD700;
}

.experience-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Parallax Gallery aprimorada */
.parallax-gallery {
    height: 80vh;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.parallax-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
}

.parallax-text h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.parallax-text p {
    font-size: 1.3rem;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.parallax-images {
    position: relative;
    height: 60vh;
}

.parallax-img {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.parallax-img:hover {
    transform: scale(1.05);
}

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

.parallax-img:nth-child(1) {
    width: 200px;
    height: 250px;
    top: 0;
    left: 0;
    z-index: 3;
}

.parallax-img:nth-child(2) {
    width: 250px;
    height: 200px;
    top: 100px;
    right: 50px;
    z-index: 2;
}

.parallax-img:nth-child(3) {
    width: 180px;
    height: 220px;
    bottom: 0;
    left: 150px;
    z-index: 1;
}

/* Gallery Section aprimorada */
.gallery-filter {
    text-align: center;
    margin-bottom: 4rem;
}

.filter-btn {
    background: transparent;
    color: #DC143C;
    border: 2px solid #DC143C;
    padding: 1rem 2rem;
    margin: 0 0.8rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 1rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: #DC143C;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: #fff;
    padding: 3rem 2rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    color: #FFD700;
}

.gallery-overlay p {
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.4;
}

/* Testimonials aprimorados */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFD700;
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 25px;
    font-size: 6rem;
    color: #FFD700;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-photo {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonial-photo img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid #FFD700;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-style: italic;
    text-align: center;
}

.testimonial-author {
    text-align: center;
}

.testimonial-author strong {
    display: block;
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.testimonial-author span {
    color: #fff;
    opacity: 0.7;
    font-size: 1rem;
}

/* Character Showcase aprimorado */
.character-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-bottom: 5rem;
}

.character-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.character-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.2);
}

.character-image {
    height: 350px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.character-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
}

.character-info {
    padding: 2.5rem;
    text-align: center;
}

.character-info h3 {
    font-size: 1.6rem;
    font-weight: bold;
    color: #DC143C;
    margin-bottom: 1rem;
}

.character-info p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* Pricing Cards aprimorados */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    margin-bottom: 5rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.08);
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: #FFD700;
    transform: scale(1.08);
    background: rgba(255, 215, 0, 0.1);
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 25px;
    right: -35px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.8rem 4rem;
    font-weight: bold;
    font-size: 0.9rem;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: #FFD700;
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-15px);
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 2.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: #fff;
    opacity: 0.9;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li::before {
    content: '✦';
    color: #FFD700;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Contact Form aprimorado */
.contact-form {
    background: rgba(255, 255, 255, 0.08);
    padding: 4rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

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

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

.form-group label {
    display: block;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-submit {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 1.5rem 4rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.form-submit:hover {
    background: linear-gradient(45deg, #FFA500, #FF8C00);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.5);
}

/* Footer aprimorado */
.footer {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
    padding: 6rem 0 3rem;
    border-top: 3px solid #FFD700;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #FFD700;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.8rem;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
}

.social-links a {
    background: linear-gradient(45deg, #333, #555);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    transform: translateY(-3px);
    border-color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 2px solid #333;
    color: #999;
}

/* Animações */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-content,
    .parallax-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .experience-grid,
    .character-showcase,
    .pricing-grid,
    .photo-gallery,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .carousel-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .parallax-images {
        height: 40vh;
        margin-top: 2rem;
    }

    .gallery-filter {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 1rem;
    }

    .filter-btn {
        display: inline-block;
        margin: 0 0.3rem;
        min-width: 120px;
    }
}
