/* 
=============================================== 
   VALORE SUPRIMENTOS - STYLESHEET
=============================================== 
*/

:root {
    /* Color Palette */
    --color-bg-main: #0a2015;
    /* Verde escuro profundo */
    --color-bg-darker: #06140d;
    /* Fundo mais escuro para seções alternadas */
    --color-bg-card: rgba(18, 50, 33, 0.4);
    /* Fundo verde translúcido para cards */

    --color-accent-gold: #c5a059;
    /* Dourado rico */
    --color-accent-gold-light: #dfbd79;
    --color-accent-gold-glow: rgba(197, 160, 89, 0.4);

    --color-text-main: #fcfbf9;
    /* Creme / off-white */
    --color-text-muted: #d0d5d2;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --container-max: 1200px;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-main);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.bg-darker {
    background-color: var(--color-bg-darker);
}

/* Typography Utilities */
.section-title {
    font-family: var(--font-heading);
    color: var(--color-accent-gold);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.text-center {
    text-align: center;
}

.fw-bold {
    font-weight: 500;
    color: var(--color-accent-gold-light);
}

.gold-text {
    color: var(--color-accent-gold);
}

/* Animations Core */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anime-init {
    opacity: 0;
}

.anime-start {
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* ===============================================
   NAVBAR
=============================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 32, 21, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(6, 20, 13, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

.navbar.scrolled .nav-content {
    height: 70px;
}

.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo {
    height: 50px;
    /* Reduced for layout, will adjust based on asset */
    object-fit: contain;
    transition: var(--transition-smooth);
}

/* Se as imagens quebrarem, estiliza o alt */
img[alt]:after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-darker);
    font-family: var(--font-heading);
    font-weight: bold;
    content: attr(alt);
    color: var(--color-accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-accent-gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent-gold);
    transition: var(--transition-smooth);
}

.nav-item:hover {
    color: var(--color-accent-gold-light);
}

.nav-item:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===============================================
   HERO SECTION
=============================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    /* offset navbar */
    background-color: var(--color-bg-main);
    overflow: hidden;
}

.hero-content {
    width: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.hero-overline {
    display: block;
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--color-accent-gold);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin: 0 auto 3.5rem auto;
    color: var(--color-text-main);
    opacity: 0.9;
    max-width: 700px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: transparent;
    color: var(--color-accent-gold);
    border-color: var(--color-accent-gold);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--color-accent-gold);
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    color: var(--color-bg-main);
    box-shadow: 0 0 20px var(--color-accent-gold-glow);
}

.btn-primary:hover::before {
    width: 100%;
}

.cta-button {
    font-size: 1.1rem;
}

/* ===============================================
   SOBRE NÓS
=============================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.about-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(197, 160, 89, 0.1);
    padding: 3rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}

.about-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* Base Utility Classes for Desktop/Mobile Swapping */
.d-none-desktop {
    display: none;
}

.d-none-mobile {
    display: grid;
}

/* Defaults grid for the about-grid */

/* Mobile Flow Text Styling (Appears on Mobile) */
.about-mobile-flow {
    padding: 1rem 0;
}

.about-text-mobile {
    font-size: 1.1rem;
    color: var(--color-text-main);
    /* Creme/off-white for high contrast on green */
    line-height: 1.85;
    /* Comfortable line height */
}

/* ===============================================
   MISSÃO VISÃO VALORES
=============================================== */
.mv-flex {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
}

.mv-card {
    flex: 1;
    background: linear-gradient(145deg, var(--color-bg-main), var(--color-bg-darker));
    padding: 3rem;
    border-radius: 8px;
    border-top: 3px solid var(--color-accent-gold);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.mv-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--color-accent-gold-glow) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.mv-icon {
    font-size: 2.5rem;
    color: var(--color-accent-gold);
    margin-bottom: 1.5rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--color-text-muted);
}

.valores-container {
    background: var(--color-bg-card);
    padding: 4rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.valores-highlight {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-accent-gold);
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

.valores-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.valores-list li {
    position: relative;
    padding-left: 2rem;
    color: var(--color-text-muted);
}

.valores-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent-gold);
    font-size: 1.2rem;
}

/* ===============================================
   PORTFÓLIO (MARCAS)
=============================================== */
.brands-subtitle {
    max-width: 700px;
    margin: 0 auto 4rem auto;
    color: var(--color-text-main);
    font-size: 1.1rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.brand-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.brand-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.brand-logo-container {
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
}

.brand-logo-img {
    max-height: 80px;
    max-width: 85%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.brand-card-body {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.brand-desc {
    color: var(--color-text-main);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.brand-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

.brand-actions .btn {
    padding: 1rem 0.5rem;
    white-space: nowrap;
    font-size: 0.95rem;
}

/* Button Variants */
.btn-gold {
    background-color: var(--color-accent-gold);
    color: var(--color-bg-main);
    border-color: var(--color-accent-gold);
}

.btn-gold:hover {
    background-color: var(--color-accent-gold-light);
    color: var(--color-bg-main);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--color-accent-gold-glow);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--color-accent-gold);
    border-color: var(--color-accent-gold);
}

.btn-outline-gold:hover {
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--color-accent-gold-light);
    transform: translateY(-2px);
}

/* ===============================================
   FOOTER
=============================================== */
.footer {
    padding-bottom: 2rem;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
}

.footer-cta {
    text-align: center;
    margin-bottom: 4rem;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: var(--color-text-muted);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-bg-card);
    padding: 3rem;
    border-radius: 8px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.info-item i {
    width: 24px;
    text-align: center;
    font-size: 1.2rem;
}

.gold-link {
    color: var(--color-accent-gold);
    font-weight: 500;
}

.gold-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-gold);
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background: var(--color-accent-gold);
    color: var(--color-bg-main);
    transform: translateY(-3px);
}

.copyright {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.copyright-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
}

.developer-credit {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.dev-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dev-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.dev-links {
    display: flex;
    gap: 0.75rem;
}

.dev-link {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.dev-link:hover {
    color: var(--color-accent-gold);
    transform: translateY(-2px);
}

/* ===============================================
   RESPONSIVO / MOBILE FIRST ADAPTATION
=============================================== */

@media (max-width: 992px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 3rem;
    }

    .mv-flex {
        flex-direction: column;
    }

    .valores-list {
        grid-template-columns: 1fr;
    }

    /* Swap visibility */
    .d-none-desktop {
        display: block;
    }

    .d-none-mobile {
        display: none;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .section-title,
    .valores-highlight,
    .footer-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-overline {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    /* Navbar Mobile */
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--color-bg-main);
        flex-direction: column;
        gap: 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition-smooth);
        border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        padding-bottom: 1rem;
    }

    .nav-item {
        padding: 1rem 2rem;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    /* Footer Stack */
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .developer-credit {
        align-items: center;
        gap: 1rem;
    }
    
    .copyright-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .info-item {
        align-items: flex-start;
        font-size: 1rem;
    }

    /* Buttons */
    .btn-primary {
        background-color: transparent;
        color: var(--color-accent-gold);
        width: 90%;
        margin: 0 auto;
    }

    .btn-primary:hover {
        background-color: var(--color-accent-gold);
        color: var(--color-bg-main);
    }

    .btn-primary i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .about-card,
    .mv-card,
    .valores-container,
    .footer-contact-info {
        padding: 2rem 1.5rem;
    }
}