/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;
    --navy: #1a2b3c;
    --navy-light: #2c3e50;
    --black: #111111;
    --gold: #b89b7b;
    --gold-light: #d4b595;
    --gray-light: #f5f5f5;
    --gray-border: #eaeaea;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, .logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
    position: relative;
    width: 100%;
}

/* NAVBAR BRANCA */
.navbar-white {
    position: relative; /* Mudado de absolute para relative */
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    z-index: 100;
}

.nav-container {
    max-width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px 15px 0;
    width: 100%;
    
}

.logo-area {
    flex: 0 0 auto;
     margin-left: 80px;        /* Garante que não tem margem esquerda */
    padding-left: 0;
}

.nav-logo {
    height: 80px; /* Ajuste conforme tamanho da sua logo */
    width: auto;
    display: block;
    
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 50px;
    margin-right: 150px; /* Garante que não tem margem direita */
    padding: 0;
}

.nav-menu a {
    color: var(--navy);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgb(3, 4, 49);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    flex: 0 0 auto;
}

.nav-whatsapp i {
    font-size: 18px;
}

.nav-whatsapp:hover {
    background-color:  rgba(43, 102, 61, 0.247);;
    border-color: rgb(63, 2, 2);
    color: rgb(63, 2, 2);
}

/* ===== HERO BANNER ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s ease infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 800px;
    animation: fadeInUp 1.2s ease;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        padding: 15px 20px;
    }
    
    .logo-area {
        flex: 1;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }
    
    .nav-menu ul {
        justify-content: center;
        gap: 20px;
    }
    
    .nav-whatsapp {
        margin-left: auto;
    }
    
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .nav-menu ul {
        gap: 15px;
    }
    
    .nav-menu a {
        font-size: 14px;
    }
    
    .nav-whatsapp {
        padding: 6px 16px;
        font-size: 14px;
    }
    
    .nav-logo {
        height: 40px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
}
/* ===== IMAGEM DE TRANSIÇÃO ===== */
.transition-image {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}

.transition-img {
    max-width: 80%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.transition-img:hover {
    transform: scale(1.02);
}

/* Responsivo */
@media (max-width: 768px) {
    .transition-image {
        padding: 40px 0;
    }
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 800px;
    animation: fadeInUp 1.2s ease;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-size: 42px;
    color: var(--navy);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--gold);
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* ===== CATALOG SECTION ===== */
.catalog {
    padding: 80px 0 100px;
    background-color: var(--gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-description {
    font-size: 18px;
    color: #666;
    margin-top: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-border);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--gold);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 24px 20px 20px;
}

.product-name {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 8px;
}

.product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--navy);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.product-whatsapp i {
    font-size: 16px;
}

.product-whatsapp:hover {
    background-color: transparent;
    border-color: var(--navy);
    color: var(--navy);
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--navy);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 99;
    border: 2px solid transparent;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: var(--gold);
    border-color: var(--navy);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
    max-width: 300px;
}

.footer-title {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 15px;
    font-size: 15px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-list i {
    width: 20px;
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #aaa;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -30%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    /* NAVBAR CORRIGIDO PARA MOBILE */
    .navbar-white {
        background-color: var(--white) !important;
    }
    
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
        width: 100%;
    }
    
    .logo-area {
        margin-left: 0 !important;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-logo {
        height: 60px;
    }
    
    .nav-menu {
        width: 100%;
        margin-top: 15px;
        display: block !important;
    }
    
    .nav-menu ul {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 30px;
        margin-right: 0 !important;
        padding: 10px 0;
        background-color: var(--white);
    }
    
    .nav-menu a {
        color: var(--navy) !important;
        font-size: 16px;
    }
    
    .nav-whatsapp {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
        background-color: rgb(3, 4, 49) !important;
        color: var(--white) !important;
    }
    
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-text p {
        font-size: 16px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .nav-menu ul {
        gap: 15px;
    }
    
    .nav-menu a {
        font-size: 14px;
    }
    
    .nav-whatsapp {
        padding: 6px 16px;
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
}