:root {
    --orange: #FF5E00;
    --black-deep: #050505;
    --white-bone: #f5f5f5;
    --accent-gray: #333333;
}

/* RESET GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--black-deep);
    color: var(--white-bone);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

h1, h2 { font-family: 'Bebas Neue', cursive; letter-spacing: 3px; }

/* Marquee */
.marquee {
    background: var(--orange);
    color: var(--black-deep);
    padding: 10px 0;
    overflow: hidden;
    font-weight: bold;
}

.marquee span {
    display: inline-block;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

@keyframes scroll {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

/* Container principal do Hero */
.hero {
    height: 95vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* O trilho que move as imagens */
.slider-container{
    display: flex;
    width: 600%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 1.5s cubic-bezier(0.65, 0, 0.35, 1); /* O movimento de arrastar */
    z-index: 1;
}

/* Cada imagem indiviual */
.slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: kenBurns 10s infinite alternate ease-in-out;
}

@keyframes kenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    color: var(--orange);
    margin: 0;
    line-height: 1;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--white-bone);
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 300;
}

.hero-content .btn{
    margin-top: 10px;
}

.btn {
    background: var(--orange);
    color: var(--black-deep);
    padding: 15px 45px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Bebas Neue';
    font-size: 1.5rem;
    transition: 0.4s;
    border: 2px solid var(--orange);
}

.btn:hover { background: transparent; color: var(--orange); }

/* Seção Sobre */
.about {
    padding: 80px 20px;
    background-color: var(--black-deep);
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap; /* Para ficar responsivo no celular */
}

.about-image{
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    border: 4px solid var(--orange);
    box-shadow: 10px 10px 0px rgba(255, 94, 0, 0.2);
    line-height: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%) contrast(120%);
    transition: 0.5s ease;
}

/* Ajuste do Texto */
.about-content {
    flex: 1;
    min-width: 300px;
}

.about-image:hover img {
    filter: grayscale(0%) contrast(110%);
    transform: scale(1.05);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--orange);
    line-height: 1.1;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--white-bone);
}

.stat-item {
    border-left: 3px solid var(--orange);
    padding-left: 15px;
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    color: var(--orange);
    font-family: 'Bebas Neue';
}

/* Gallery Grid */
.gallery {
    padding: 100px 20px;
    background-color: var(--black-deep);
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h2 {
    font-size: 3rem;
    color: var(--orange);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item { 
    position: relative;
    overflow: hidden;
    height: 400px;
    border: 1px solid #1a1a1a;
    background-color: #000;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

.gallery-item:hover {
    border: 2px solid var(--orange);
}

.overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(254, 94, 0, 0.9);
    color: var(--black-deep);
    padding: 10px;
    text-align: center;
    font-family: 'Bebas Neue';
    transition: bottom 0.3s ease;
}

.gallery-item:hover .overlay {
    bottom: 0;
}

/* Flashes section */
.flashes {
    padding: 100px 20px;
    background-color: #0a0a0a;
}

.flash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.flash-card {
    background: #111;
    border: 1px solid #222;
    transition: 0.4s;
    position: relative;
}

.flash-card:hover {
    border-color: var(--orange);
    transform: translateY(-10px);
}

.flash-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.flash-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.5s;
}

.flash-card:hover .flash-img img {
    filter: grayscale(0%);
}

/* Etiqueta de Preço Laranja */
.flash-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--orange);
    color: var(--black-deep);
    padding: 5px 15px;
    font-family: 'Bebas Neue';
    font-size: 1.2rem;
    font-weight: bold;
}

.flash-info {
    padding: 20px;
    text-align: center;
}

.flash-info h3 {
    color: var(--white-bone);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.flash-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Botão de Reserva */
.btn-flash {
    display: block;
    background: transparent;
    color: var(--orange);
    border: 1px solid var(--orange);
    padding: 10px;
    text-decoration: none;
    font-family: 'Bebas Neue';
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-flash:hover {
    background: var(--orange);
    color: var(--black-deep);
}

/* Contact Section */
.contact { background: #111; padding: 100px 20px; text-align: center; }
.contact input {
    background: transparent; border: 1px solid var(--orange);
    padding: 15px; color: white; margin: 10px; width: 250px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    transition: all 0.3s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: var(--orange); /* Ele fica laranja no hover para combinar com sua marca! */
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

/* FOOTER */
.footer {
    background-color: #050505;
    padding: 80px 20px 20px;
    border-top: 1px solid var(--accent-gray);
    color: var(--white-bone);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-box h2.footer-logo {
    font-family: 'Bebas Neue';
    font-size: 2.5rem;
    color: var(--white-bone);
    margin-bottom: 15px;
}

.footer-box h2.footer-logo span {
    color: var(--orange);
}

.footer-box h3 {
    font-family: 'Bebas Neue';
    color: var(--orange);
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-box p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #999;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--orange);
    text-decoration: none;
    font-family: 'Bebas Neue';
    font-size: 1.1rem;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--white-bone);
}

.maps-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--orange);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.maps-link:hover {
    border-bottom: 1px solid var(--orange);
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #444;
}

/* Ajuste do botão flutuante de WhatsApp para não cobrir o conteúdo do footer em telas menores */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float img {
        width: 25px;
        height: 25px;
    }
}

.portfolio-note {
    margin-top: 10px;
    font-size: 0.75rem;
    color: #777;
    opacity: 0.7;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 99999;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img {
    display: block;          /* MUITO importante */
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;

    opacity: 1;
    transform: scale(0.95);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.lightbox-img.fade-out {
    opacity: 0;
    transform: scale(0.97);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    transform: translateY(-50%);
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 100000;
}

.lightbox-nav.prev {
    left: 30px;
}

.lightbox-nav.next {
    right: 30px;
}

.lightbox-nav:hover {
    color: var(--orange);
}

.lightbox:hover .lightbox-nav {
    opacity: 1;
}