/* public/assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Cores atualizadas dinamicamente pelo PHP no header, mas definidas aqui como fallback */
    --primary: #004d40;
    --secondary: #d4af37;
    --bg-light: #f9fafb;
    --text-dark: #374151;
    --text-light: #6b7280;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

/* Navbar */
.navbar {
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary) !important;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin: 0 10px;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, #002d25 100%);
    color: #fff;
    padding: 120px 0 80px 0;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&q=80&w=1920') center/cover;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--secondary);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #b5952f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-outline-light-custom {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-outline-light-custom:hover {
    background-color: #fff;
    color: var(--primary);
}

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

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

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

/* Cards */
.card-brand {
    border: none;
    border-radius: 8px;
    transition: all 0.3s;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    overflow: hidden;
    height: 100%;
}
.card-brand:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.card-brand img {
    max-height: 120px;
    object-fit: contain;
    padding: 2rem;
}

.card-product {
    border: none;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: all 0.3s;
    overflow: hidden;
}
.card-product:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.card-product-img {
    height: 250px;
    background: #f4f6f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

/* Footer */
footer {
    background-color: #111;
    color: #aaa;
    padding: 60px 0 20px 0;
}
footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}
footer a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}
footer a:hover {
    color: var(--secondary);
}
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}
.whatsapp-fab:hover {
    transform: scale(1.1);
    color: white;
}
