/* Variáveis de Marca Lavoratti */
:root {
    --lavoratti-verde: #416053;
    /* PANTONE 5545 C */
    --lavoratti-bege: #B6B0A8;
    /* PANTONE 400 C */
    --lavoratti-gold: #C5A065;
    /* Gold Accent deduced from "High Standard" tone */
    --lavoratti-preto: #000000;
    /* PANTONE Black */
    --lavoratti-branco: #FFFFFF;
    --lavoratti-cinza: #E0E0E0;
    /* COOL GRAY 10 */
    --lavoratti-cinza-escuro: #333333;
}

/* Reset e Base */
body {
    font-family: 'Georama', sans-serif !important;
    color: var(--lavoratti-cinza-escuro);
    background-color: #fcfcfc;
    overflow-x: hidden;
}

/* Premium Button */
.btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #C5A065 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(197, 160, 101, 0.4);
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #C5A065 0%, #aa842c 100%);
    color: white;
    transform: translateY(-2px);
}

.text-gold {
    color: var(--lavoratti-gold) !important;
}

.bg-gold {
    background-color: var(--lavoratti-gold) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--lavoratti-verde);
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    font-weight: 400;
}

a {
    transition: all 0.3s ease;
}

section,
#modulare,
#frontti,
#beneficios {
    scroll-margin-top: 100px;
}

/* Navbar */
.navbar {
    background-color: rgba(30, 33, 36, 0.95);
    /* #1E2124 with opacity */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand .brand-image {
    height: 60px;
    width: auto;
}

.nav-link {
    color: var(--lavoratti-bege) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-left: 15px;
}

.nav-link:hover {
    color: var(--lavoratti-branco) !important;
}

.btn-custom-nav {
    border: 1px solid var(--lavoratti-bege);
    color: var(--lavoratti-bege) !important;
    border-radius: 0;
    padding: 8px 20px;
}

.btn-custom-nav:hover {
    background-color: var(--lavoratti-bege);
    color: var(--lavoratti-preto) !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--lavoratti-branco);
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../img/landing/marcenaria.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--lavoratti-branco);
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--lavoratti-bege);
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    background-color: var(--lavoratti-verde);
    color: var(--lavoratti-branco);
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-hero:hover {
    background-color: #2F453C;
    color: var(--lavoratti-branco);
    transform: translateY(-5px);
}

/* Sections General */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--lavoratti-verde);
}

.section-title p {
    color: #888;
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section (Modulare & Frontti) */
.product-card {
    background: #fff;
    border: none;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

.product-content {
    padding: 30px;
    text-align: center;
}

.product-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-brand {
    background-color: var(--lavoratti-bege);
    color: #fff;
    font-size: 0.8rem;
    padding: 5px 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

/* Features icons */
.feature-box {
    text-align: center;
    padding: 30px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.feature-box:hover {
    border-color: var(--lavoratti-cinza);
    background: #fff;
}

.feature-icon {
    font-size: 3rem;
    color: var(--lavoratti-verde);
    margin-bottom: 20px;
}

/* Newsletter */
.newsletter-section {
    background-color: var(--lavoratti-verde);
    color: white;
    text-align: center;
}

.newsletter-section h2 {
    color: white;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.8);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: block;
}

.btn-whatsapp:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    color: white;
}

.btn-scroll-top {
    background-color: var(--lavoratti-verde);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    line-height: 50px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-scroll-top:hover {
    background-color: var(--lavoratti-gold);
    color: white;
    transform: translateY(-3px);
}

.form-control-lg {
    border-radius: 0;
    border: none;
    height: 60px;
}

.btn-black {
    background-color: var(--lavoratti-preto);
    color: white;
    border-radius: 0;
    padding: 0 30px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border: none;
}

.btn-black:hover {
    background-color: #222;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #777;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

footer h5 {
    color: var(--lavoratti-bege);
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

footer a {
    color: #777;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

footer a:hover {
    color: var(--lavoratti-verde);
}

footer .brand-logo {
    max-height: 40px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}