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

html {
    scroll-behavior: smooth;
}

body {
    background: #030303;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

.language-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fire-video,
.hero-fire {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.language-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(218, 154, 37, 0.12), transparent 35%),
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.9));
}

.language-box {
    position: relative;
    z-index: 2;
    width: 520px;
    max-width: 90%;
    padding: 35px;
    text-align: center;
    background: rgba(0, 0, 0, 0.78);
    border: 1px solid #d99a25;
    border-radius: 18px;
    box-shadow: 0 0 45px rgba(217, 154, 37, 0.4);
    backdrop-filter: blur(10px);
    animation: aparecer 1s ease forwards;
}

.language-logo {
    width: 230px;
    max-width: 90%;
    margin-bottom: 15px;
}

.language-box h2 {
    color: #d99a25;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.language-box p {
    color: #ddd;
    font-size: 14px;
    margin-bottom: 28px;
}

.language-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.language-buttons button {
    padding: 14px 20px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    border: 1px solid #d99a25;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.language-buttons button:hover {
    background: #d99a25;
    color: #111;
    transform: translateY(-3px);
}

@keyframes aparecer {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(25px);
    }

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

.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 92px;
    z-index: 1000;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 220px 1fr 260px;
    align-items: center;
    background: rgba(0,0,0,0.82);
    border-bottom: 1px solid rgba(217, 154, 37, 0.55);
    backdrop-filter: blur(12px);
}

.logo-area img {
    width: 155px;
    display: block;
}

nav {
    display: flex;
    justify-content: center;
    gap: 42px;
}

nav a,
.header-contact a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

nav a:hover,
.header-contact a:hover {
    color: #d99a25;
}

.header-contact {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    align-items: center;
}

.top-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-icon i,
.top-instagram i {
    color: #d99a25;
    font-size: 25px;
}

.top-instagram i {
    font-size: 30px;
}

/* BANNER PRINCIPAL */
.hero {
    min-height: 100vh;
    position: relative;
    padding: 130px 5% 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(217, 154, 37, 0.55);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.72) 45%, rgba(0,0,0,0.45) 100%),
        radial-gradient(circle at right, rgba(217, 154, 37, 0.28), transparent 42%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
}

.hero-content span {
    color: #d99a25;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 25px;
    border-bottom: 1px solid #d99a25;
    padding-bottom: 8px;
}

.hero-content h1 {
    font-size: 58px;
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 28px;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 0 25px rgba(0,0,0,0.95);
}

.hero-content p {
    font-size: 20px;
    color: #f1f1f1;
    line-height: 1.7;
    margin-bottom: 35px;
    text-shadow: 0 0 18px rgba(0,0,0,0.9);
}

/* ESCONDE A IMAGEM DO FORNO NO BANNER */
.hero-oven {
    display: none;
}

.btn-whatsapp,
.btn-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #ffb21c, #ffd36a);
    color: #111;
    padding: 18px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    transition: 0.3s;
    box-shadow: 0 0 28px rgba(255, 178, 28, 0.35);
}

.btn-whatsapp i,
.btn-instagram i {
    font-size: 22px;
    color: #111;
}

.btn-whatsapp:hover,
.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 38px rgba(255, 178, 28, 0.65);
}

.btn-instagram {
    background: transparent;
    color: #d99a25;
    border: 1px solid #d99a25;
}

.btn-instagram i {
    color: #d99a25;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    padding: 38px 7%;
    background: #050505;
    border-bottom: 1px solid rgba(217, 154, 37, 0.25);
}

.benefits div {
    border-left: 1px solid rgba(217, 154, 37, 0.35);
    padding-left: 25px;
}

.benefits h3 {
    color: #d99a25;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.benefits p {
    color: #cfcfcf;
    line-height: 1.6;
}

.sobre,
.quem-somos {
    padding: 100px 7%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
    background: #0b0b0b;
}

.quem-somos {
    background: #111;
}

.texto h2,
.galeria h2,
.contato h2 {
    font-size: 44px;
    color: #d99a25;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.texto p {
    color: #ddd;
    font-size: 18px;
    line-height: 1.8;
}

.sobre img,
.quem-somos img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(217, 154, 37, 0.35);
    box-shadow: 0 20px 70px rgba(0,0,0,0.7);
}

.galeria {
    padding: 100px 7%;
    background: #070707;
    text-align: center;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.galeria-grid img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(217, 154, 37, 0.35);
    transition: 0.3s;
}

.galeria-grid img:hover {
    transform: scale(1.04);
}

.contato {
    padding: 100px 7%;
    text-align: center;
    background:
        linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.96)),
        radial-gradient(circle at center, rgba(217,154,37,0.28), transparent 40%);
}

.contato p {
    font-size: 22px;
    margin-bottom: 25px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 900;
    font-size: 34px;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.45);
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

footer {
    background: #020202;
    color: #aaa;
    text-align: center;
    padding: 25px;
}

/* MOBILE */
@media (max-width: 1000px) {
    .header {
        height: auto;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px 15px 12px;
        text-align: center;
    }

    .logo-area img {
        width: 110px;
        margin: auto;
    }

    nav {
        flex-wrap: wrap;
        gap: 8px 16px;
    }

    nav a {
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .header-contact {
        justify-content: center;
        gap: 12px;
        font-size: 13px;
    }

    .top-icon i,
    .top-instagram i {
        font-size: 22px;
    }

    .hero {
        min-height: 100vh;
        padding: 190px 22px 70px;
        text-align: center;
        justify-content: center;
    }

    .hero-overlay {
        background:
            linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.92)),
            radial-gradient(circle at center, rgba(217,154,37,0.28), transparent 45%);
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content span {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .btn-whatsapp,
    .btn-instagram {
        width: 100%;
        max-width: 330px;
        padding: 16px 20px;
        font-size: 14px;
    }

    .benefits {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 35px 22px;
    }

    .benefits div {
        padding: 22px;
        border-left: none;
        border: 1px solid rgba(217,154,37,0.28);
        border-radius: 14px;
        background: rgba(255,255,255,0.03);
        text-align: center;
    }

    .sobre,
    .quem-somos {
        grid-template-columns: 1fr;
        padding: 65px 22px;
        gap: 28px;
        text-align: center;
    }

    .texto h2,
    .galeria h2,
    .contato h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .texto p {
        font-size: 16px;
        line-height: 1.7;
    }

    .sobre img,
    .quem-somos img,
    .galeria-grid img {
        height: 280px;
        border-radius: 16px;
    }

    .galeria {
        padding: 65px 22px;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contato {
        padding: 70px 22px;
    }

    .contato p {
        font-size: 18px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .language-box {
        padding: 28px 18px;
        width: 92%;
    }

    .language-logo {
        width: 190px;
    }

    .language-box h2 {
        font-size: 21px;
    }

    .language-box p {
        font-size: 12px;
    }

    .language-buttons {
        flex-direction: column;
    }

    .language-buttons button {
        width: 100%;
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .logo-area img {
        width: 95px;
    }

    nav a {
        font-size: 11px;
    }

    .header-contact {
        font-size: 12px;
    }

    .hero {
        padding-top: 180px;
    }

    .hero-content h1 {
        font-size: 29px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .sobre img,
    .quem-somos img,
    .galeria-grid img {
        height: 240px;
    }
}