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

:root {
    --preto: #000000;
    --dourado: #D4AF37;
    --dourado-alt: #C9A24D;
    --cinza-grafite: #1a1a1a;
    --cinza-medio: #2d2d2d;
    --branco: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--preto);
    color: var(--branco);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    letter-spacing: 2px;
}

.gold {
    color: var(--dourado);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    /* justify-content: space-between; */
    justify-content: center;
    align-items: center;
    padding: 2rem 5%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    animation: fadeInDown 1s ease-out;
}

.logo {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: var(--branco);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 200;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--dourado);
}

.cta-button {
    border: 1px solid var(--dourado);
    padding: 0.8rem 2rem;
    background: transparent;
    cursor: pointer;
    transition: all 0.4s ease;
}

.cta-button:hover {
    background: var(--dourado);
    color: var(--preto);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 60%, rgba(0, 0, 0, 0.55) 100%),
        url('img/Gemini_Generated_Image_9pydyd9pydyd9pyd.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, var(--preto) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 1;
    margin-bottom: 2rem;
}

.hero-title .line {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.hero-title .line:last-child {
    animation: slideInRight 1s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 200;
    letter-spacing: 3px;
    opacity: 0.8;
    animation: fadeIn 1.5s ease-out 0.5s both;
}

.scroll-indicator {
    position: absolute;
    bottom: -20vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    font-weight: 200;
    letter-spacing: 2px;
    opacity: 0.6;
    animation: fadeIn 2s ease-out 1s both;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--dourado) 0%, transparent 100%);
    animation: scrollLine 2s ease-in-out infinite;
}

/* Video Section */
.video-section {
    padding: 10rem 5%;
    background: var(--preto);
}

.video-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.video-placeholder {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--cinza-grafite) 0%, var(--cinza-medio) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--dourado);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.play-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 20px solid var(--dourado);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.video-placeholder:hover .play-icon {
    background: var(--dourado);
    transform: scale(1.1);
}

.video-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
}

/* Exclusivity Section */
.exclusivity {
    padding: 10rem 5%;
    background: var(--cinza-grafite);
}

.section-header {
    max-width: 1400px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.section-number {
    font-size: 1rem;
    color: var(--dourado);
    opacity: 0.5;
    font-weight: 200;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.feature-card {
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.5s ease;
    cursor: default;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--dourado);
    background: rgba(0, 0, 0, 0.8);
}

.feature-icon {
    font-size: 2rem;
    color: var(--dourado);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.feature-card p {
    font-size: 0.9rem;
    font-weight: 200;
    opacity: 0.7;
    letter-spacing: 1px;
}

/* Portfolio Section */
.portfolio {
    padding: 10rem 5%;
    background: var(--preto);
}

.gallery {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-row: span 2;
    aspect-ratio: 4/5;
}

.gallery-image {
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
}

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

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

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

.gallery-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    font-size: 0.9rem;
    font-weight: 200;
    letter-spacing: 1px;
}

/* Stats Section */
.stats {
    padding: 8rem 5%;
    background: var(--cinza-grafite);
}

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

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.stat-item p {
    font-size: 0.9rem;
    font-weight: 200;
    letter-spacing: 2px;
    opacity: 0.7;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--dourado), transparent);
}

/* Contact Section */
.contact {
    padding: 10rem 5%;
    background: var(--preto);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.contact-content > p {
    font-size: 1.1rem;
    font-weight: 200;
    opacity: 0.7;
    margin-bottom: 4rem;
    letter-spacing: 1px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem;
    background: var(--cinza-grafite);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--branco);
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--dourado);
    background: rgba(26, 26, 26, 0.8);
}

.submit-button {
    padding: 1.2rem 3rem;
    background: transparent;
    border: 2px solid var(--dourado);
    color: var(--branco);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 1rem;
}

.submit-button:hover {
    background: var(--dourado);
    color: var(--preto);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
    padding: 4rem 5%;
    background: var(--cinza-grafite);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.footer-content p {
    font-size: 0.9rem;
    font-weight: 200;
    opacity: 0.6;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--branco);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 200;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--dourado);
    opacity: 1;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .video-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .stat-divider {
        width: 80px;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--dourado), transparent);
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-row: span 1;
        aspect-ratio: 4/3;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1.5rem 5%;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 0.6rem 1.5rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .video-section,
    .exclusivity,
    .portfolio,
    .contact {
        padding: 5rem 5%;
    }
    
    .stats {
        padding: 4rem 5%;
    }
}


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