/* Reset e estilos globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0A1428;
    --secondary-color: #C89B3C;
    --accent-color: #F0E6D2;
    --text-color: #FFFFFF;
    --background-color: #091428;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--background-color));
    --gradient-accent: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    --gradient-dark: linear-gradient(135deg, var(--background-color), var(--primary-color));
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--gradient-primary);
    overflow-x: hidden;
}

/* Header e Navegação */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 20, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200, 155, 60, 0.1);
    transition: var(--transition);
}

.header.scroll-down {
    transform: translateY(-100%);
}

.header.scroll-up {
    transform: translateY(0);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    border-radius: 8px;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(200, 155, 60, 0.3));
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(200, 155, 60, 0.5));
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    font-size: 1.1rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 80%;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-menu a.active {
    color: var(--secondary-color);
}

.nav-menu a.active::after {
    width: 80%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('imagens/Logo.jpg') center/cover no-repeat;
    opacity: 0.05;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0% { opacity: 0.05; }
    50% { opacity: 0.08; }
    100% { opacity: 0.05; }
}

.hero-content {
    max-width: 600px;
    z-index: 1;
    background: rgba(10, 20, 40, 0.3);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 155, 60, 0.1);
    box-shadow: var(--shadow-lg);
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease;
    text-shadow: 0 0 20px rgba(200, 155, 60, 0.3);
    letter-spacing: 2px;
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
    font-weight: 500;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease 0.4s backwards;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--gradient-accent);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button::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: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--secondary-color);
    color: var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.hero-image {
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(200, 155, 60, 0.4));
}

.hero-image img {
    max-width: 600px;
    transform: scale(1.1);
}

/* About Section */
.about {
    padding: 8rem 2rem;
    background: var(--gradient-primary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('imagens/Logo.jpg') center/cover no-repeat;
    opacity: 0.03;
    pointer-events: none;
}

.about h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.about-text {
    background: rgba(10, 20, 40, 0.8);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(200, 155, 60, 0.1);
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    background: rgba(10, 20, 40, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(200, 155, 60, 0.2);
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(10, 20, 40, 0.9);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.stat-item:hover i {
    transform: scale(1.1);
}

.stat-item span {
    display: block;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.stat-bar {
    height: 8px;
    background: rgba(200, 155, 60, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.stat-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 4px;
    transition: width 1.5s ease;
    position: relative;
}

.stat-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Abilities Section */
.abilities {
    padding: 8rem 2rem;
    background: var(--gradient-dark);
    position: relative;
}

.abilities h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.abilities h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.abilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.ability-card {
    background: rgba(10, 20, 40, 0.8);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(200, 155, 60, 0.1);
    backdrop-filter: blur(10px);
}

.ability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.ability-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.ability-card:hover::before {
    opacity: 0.1;
}

.ability-card i {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.ability-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.ability-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: var(--secondary-color);
}

.ability-card p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.ability-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(200, 155, 60, 0.2);
}

.ability-type {
    background: var(--gradient-accent);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.ability-cooldown {
    color: var(--secondary-color);
    opacity: 0.9;
    font-size: 1rem;
    font-weight: 500;
}

/* Gallery Section */
.gallery {
    padding: 8rem 2rem;
    background: var(--gradient-primary);
    position: relative;
}

.gallery h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.gallery h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(200, 155, 60, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 40, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(200, 155, 60, 0.2);
    backdrop-filter: blur(5px);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    transform: translateY(20px);
    transition: var(--transition);
    color: var(--secondary-color);
}

.gallery-overlay p {
    opacity: 0.8;
    transform: translateY(20px);
    transition: var(--transition);
    font-size: 1.1rem;
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    background: var(--gradient-dark);
    position: relative;
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(10, 20, 40, 0.8);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(200, 155, 60, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 155, 60, 0.2);
    border-radius: 12px;
    color: var(--text-color);
    font-family: inherit;
    transition: var(--transition);
    font-size: 1.1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(200, 155, 60, 0.1);
    box-shadow: 0 0 15px rgba(200, 155, 60, 0.2);
}

.form-group textarea {
    height: 200px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: #25D366;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.submit-button::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: 0.5s;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    background: #128C7E;
}

.submit-button i {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(200, 155, 60, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-accent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 2.5rem;
}

.footer-logo img {
    height: 80px;
    border-radius: 12px;
    filter: drop-shadow(0 0 15px rgba(200, 155, 60, 0.3));
    transition: var(--transition);
}

.footer-logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(200, 155, 60, 0.5));
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.8rem;
    transition: var(--transition);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(200, 155, 60, 0.1);
    border: 1px solid rgba(200, 155, 60, 0.2);
}

.social-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-5px);
    background: rgba(200, 155, 60, 0.2);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.footer p {
    opacity: 0.8;
    font-size: 1.1rem;
}

/* Animações */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        padding: 2rem;
        flex-direction: column;
        align-items: center;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        border-bottom: 1px solid rgba(200, 155, 60, 0.1);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--text-color);
        transition: var(--transition);
    }

    .menu-toggle.active {
        color: var(--secondary-color);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }

    .hero-content {
        margin-bottom: 3rem;
        padding: 2rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        max-width: 100%;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .abilities-grid {
        grid-template-columns: 1fr;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 40, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--text-color);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(200, 155, 60, 0.1);
    border: 1px solid rgba(200, 155, 60, 0.2);
}

.lightbox-close:hover {
    color: var(--secondary-color);
    background: rgba(200, 155, 60, 0.2);
    border-color: var(--secondary-color);
    transform: rotate(90deg);
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(200, 155, 60, 0.1);
    border-left-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Carrossel */
.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: var(--primary-color);
    height: 600px;
    border: 1px solid rgba(200, 155, 60, 0.2);
}

.carousel {
    display: flex;
    height: 100%;
    position: relative;
}

.carousel-item {
    min-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    height: 100%;
    transform: scale(0.9);
}

.carousel-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.carousel-item img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: all 0.5s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.carousel-item:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 20px rgba(200, 155, 60, 0.3));
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
        rgba(10, 20, 40, 0.95) 0%,
        rgba(10, 20, 40, 0.8) 50%,
        transparent 100%);
    padding: 3rem 2rem 2rem;
    color: var(--accent-color);
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.carousel-item:hover .carousel-caption {
    transform: translateY(0);
}

.carousel-caption h3 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.1s;
}

.carousel-caption p {
    font-size: 1.3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.carousel-item:hover .carousel-caption h3,
.carousel-item:hover .carousel-caption p {
    transform: translateY(0);
    opacity: 1;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 20, 40, 0.8);
    border: 2px solid var(--secondary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.carousel-control:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(200, 155, 60, 0.4);
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.indicator.active::before {
    transform: scale(1);
}

.indicator:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(200, 155, 60, 0.4);
}

@media (max-width: 768px) {
    .carousel-container {
        height: 400px;
        border-radius: 15px;
    }

    .carousel-caption h3 {
        font-size: 1.8rem;
    }

    .carousel-caption p {
        font-size: 1.1rem;
    }

    .carousel-control {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }

    .carousel-item img {
        max-width: 95%;
        max-height: 95%;
    }
}

/* Construction Section */
.construction {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.construction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('imagens/Logo.jpg') center/cover no-repeat;
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

.construction-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.construction-image {
    margin: 3rem auto;
    max-width: 800px;
    width: 100%;
    height: auto;
    position: relative;
}

.construction-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

.construction-text {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(10, 20, 40, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(200, 155, 60, 0.2);
    backdrop-filter: blur(10px);
}

.construction-text h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.construction-text p {
    color: var(--accent-color);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .construction {
        padding: 1rem;
    }

    .construction-image {
        max-width: 100%;
        margin: 2rem auto;
    }

    .construction-text {
        padding: 1.5rem;
    }

    .construction-text h2 {
        font-size: 2rem;
    }

    .construction-text p {
        font-size: 1.1rem;
    }
}

/* Products Section */
.products {
    padding: 6rem 2rem;
    background: var(--primary-color);
}

.products h2 {
    text-align: center;
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.products h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(200, 155, 60, 0.1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

.product-image {
    width: 100%;
    height: 250px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(to top, rgba(10, 20, 40, 0.9), rgba(10, 20, 40, 0.7));
}

.product-info h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info p {
    color: var(--accent-color);
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .products {
        padding: 4rem 1rem;
    }

    .products h2 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .product-image {
        height: 200px;
    }

    .product-info h3 {
        font-size: 1.3rem;
    }

    .product-info p {
        font-size: 1rem;
    }
}

/* Media Queries */
/* Desktop Grande (1440px e acima) */
@media (min-width: 1440px) {
    .container {
        max-width: 1440px;
    }

    .construction-image {
        max-width: 1000px;
    }

    .carousel-container {
        max-width: 1400px;
        height: 700px;
    }
}

/* Desktop (1024px - 1439px) */
@media (max-width: 1439px) {
    .container {
        max-width: 1200px;
    }

    .construction-image {
        max-width: 800px;
    }

    .carousel-container {
        max-width: 1200px;
        height: 600px;
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    .container {
        padding: 0 1.5rem;
    }

    .header-content {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .construction-image {
        max-width: 600px;
    }

    .carousel-container {
        height: 500px;
    }

    .carousel-caption h3 {
        font-size: 1.8rem;
    }
}

/* Tablet Pequeno (576px - 767px) */
@media (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }

    .header-content {
        padding: 0 1rem;
    }

    .logo img {
        height: 40px;
    }

    .nav-links {
        gap: 1rem;
    }

    .construction {
        padding: 1.5rem;
    }

    .construction-image {
        max-width: 500px;
        margin: 2rem auto;
    }

    .carousel-container {
        height: 400px;
    }

    .carousel-caption h3 {
        font-size: 1.5rem;
    }

    .carousel-control {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
}

/* Smartphone (até 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 0.5rem;
    }

    .header-content {
        padding: 0 0.5rem;
    }

    .logo img {
        height: 35px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .construction {
        padding: 1rem;
    }

    .construction-image {
        max-width: 100%;
        margin: 1.5rem auto;
    }

    .construction-text {
        padding: 1rem;
    }

    .construction-text h2 {
        font-size: 1.8rem;
    }

    .construction-text p {
        font-size: 1rem;
    }

    .carousel-container {
        height: 300px;
        border-radius: 15px;
    }

    .carousel-caption h3 {
        font-size: 1.3rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }

    .carousel-control {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .carousel-indicators {
        bottom: 15px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Orientação Paisagem em Dispositivos Móveis */
@media (max-height: 500px) and (orientation: landscape) {
    .construction {
        min-height: auto;
        padding: 4rem 2rem;
    }

    .construction-image {
        max-width: 400px;
        margin: 1rem auto;
    }

    .carousel-container {
        height: 250px;
    }
}

/* Suporte para Telas de Alta Resolução */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .construction-image img {
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    }
}

/* Animações */
@keyframes pulse {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.15;
    }
} 