/* =====================================================
   ELITE MOTORS - Design Profissional
   ===================================================== */

/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #c9a050;
    --accent-color: #8b7355;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #c9a050 0%, #8b7355 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

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

/* =====================================================
   NAVBAR PROFISSIONAL
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(201, 160, 80, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
}

.logo i {
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

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

.nav-menu li a:hover {
    color: var(--secondary-color);
}

.nav-btn {
    background: var(--gradient);
    padding: 12px 30px !important;
    border-radius: 50px;
    color: var(--white) !important;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 160, 80, 0.3);
}

.nav-btn::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-parallax {
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1920&h=1080&fit=crop');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--secondary-color);
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: 8px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 18px 45px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(201, 160, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 160, 80, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* =====================================================
   SEÇÃO DE INTRODUÇÃO
   ===================================================== */
.intro-section {
    padding: 120px 40px;
    background: var(--bg-light);
}

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

.section-label {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.intro-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--text-dark);
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--gradient);
    margin: 0 auto 30px;
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 60px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* =====================================================
   GALERIA PROFISSIONAL
   ===================================================== */
.gallery-section {
    padding: 120px 40px;
    background: var(--white);
}

.gallery-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 70px;
    letter-spacing: 1px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.gallery-item {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid #e8e8e8;
}

.gallery-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    height: 350px;
    background: #000;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
    z-index: 2;
}

.lock-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.lock-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    animation: pulseGlow 2.5s infinite;
}

.hover-text {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    opacity: 0.9;
}

/* Efeito ao passar o mouse */
.gallery-item:hover .blur-overlay {
    opacity: 0;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.gallery-item:hover .image-wrapper img {
    transform: scale(1.15);
    opacity: 1;
}

.item-info {
    padding: 35px 30px;
    background: var(--white);
}

.item-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.item-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.item-info p i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.price {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* =====================================================
   SEGUNDA SEÇÃO PARALLAX
   ===================================================== */
.parallax-section-2 {
    height: 70vh;
    background-image: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1920&h=1080&fit=crop');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.section-label-light {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.parallax-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.divider-light {
    width: 80px;
    height: 3px;
    background: var(--gradient);
    margin: 0 auto 25px;
}

.parallax-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

.btn-light {
    padding: 18px 45px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    background: var(--white);
    color: var(--primary-color);
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* =====================================================
   SEÇÃO DE CONTATO
   ===================================================== */
.contact-section {
    padding: 120px 40px;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-item p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(201, 160, 80, 0.4);
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 160, 80, 0.4);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 60px 40px;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.footer-logo i {
    color: var(--secondary-color);
    font-size: 2rem;
}

.footer p {
    margin: 10px 0;
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer-subtext {
    color: var(--secondary-color);
    font-weight: 500;
    margin-top: 15px;
}

/* =====================================================
   ANIMAÇÕES
   ===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
        filter: drop-shadow(0 0 10px var(--secondary-color));
    }

    50% {
        transform: scale(1.15);
        opacity: 0.85;
        filter: drop-shadow(0 0 20px var(--secondary-color));
    }
}

/* =====================================================
   RESPONSIVIDADE
   ===================================================== */
@media (max-width: 1024px) {

    .container,
    .nav-container {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 50px 0;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .intro-section h2,
    .gallery-section h2,
    .contact-info h2 {
        font-size: 2.5rem;
    }

    .parallax-content h2 {
        font-size: 2.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .image-wrapper {
        height: 280px;
    }

    .lock-icon {
        font-size: 3rem;
    }

    .contact-form {
        padding: 35px 25px;
    }

    .stat-item h3 {
        font-size: 2.8rem;
    }

    .hero-parallax,
    .parallax-section-2 {
        background-attachment: scroll;
    }

    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .intro-section h2,
    .gallery-section h2,
    .contact-info h2 {
        font-size: 2rem;
    }

    .parallax-content h2 {
        font-size: 2.2rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-light {
        padding: 15px 35px;
        font-size: 0.85rem;
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .logo i {
        font-size: 1.4rem;
    }
}

/* =====================================================
   MELHORIAS VISUAIS
   ===================================================== */

/* Smooth scroll */
html {
    scroll-padding-top: 80px;
}

/* Seleção de texto customizada */
::selection {
    background: var(--secondary-color);
    color: var(--white);
}

::-moz-selection {
    background: var(--secondary-color);
    color: var(--white);
}

/* Scrollbar customizada */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Loading state para imagens */
img {
    transition: opacity 0.3s ease;
}

img[src=""] {
    opacity: 0;
}

/* Acessibilidade - Focus states */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Transições suaves globais */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

button,
a,
.gallery-item,
.btn-primary,
.btn-secondary {
    transition: all 0.3s ease;
}