/* =================================================================
   VENETO DISTRIBUTORI - PÁGINA L'AZIENDA
   Design System: Dark Premium Editorial
   ================================================================= */

/* -----------------------------------------------------------------
   HEADER SOLID (para páginas internas)
   ----------------------------------------------------------------- */
.site-header--solid {
    position: relative;
    background: var(--color-bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header--solid .nav-list {
    display: flex;
}

.site-header--solid .nav-list a.active {
    color: var(--color-accent);
    opacity: 1;
}

.site-header--solid .nav-list a.active::after {
    width: 100%;
}

/* -----------------------------------------------------------------
   PÁGINA PRINCIPAL
   ----------------------------------------------------------------- */
.azienda-page {
    background-color: var(--color-bg-dark);
    min-height: 100vh;
}

/* -----------------------------------------------------------------
   1. SEÇÃO MANIFESTO - SPLIT SCREEN EDITORIAL
   ----------------------------------------------------------------- */
.manifesto-section {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

.manifesto-split {
    display: grid;
    grid-template-columns: 45% 55%;
    width: 100%;
    min-height: 100vh;
}

/* Coluna da Imagem */
.manifesto-image-col {
    position: relative;
    overflow: hidden;
}

.manifesto-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.manifesto-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.1);
    transition: transform 8s ease-out;
}

.manifesto-image-wrapper:hover .manifesto-img {
    transform: scale(1.05);
}

.manifesto-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(2, 6, 23, 0.3) 0%,
        rgba(2, 6, 23, 0.6) 50%,
        rgba(200, 164, 126, 0.1) 100%
    );
    pointer-events: none;
}

/* Coluna do Texto */
.manifesto-text-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 5rem;
    background: var(--color-bg-dark);
    position: relative;
}

.manifesto-text-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at 70% 30%,
        rgba(200, 164, 126, 0.03) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.manifesto-content {
    position: relative;
    max-width: 600px;
    z-index: 2;
}

/* Eyebrow Editorial */
.eyebrow-editorial {
    display: inline-block;
    color: #C8A47E;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 600;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(200, 164, 126, 0.3);
}

/* Título Principal - Playfair Display */
.manifesto-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
}

.manifesto-title .title-accent {
    display: block;
    color: #C8A47E;
    font-style: italic;
    font-weight: 600;
}

/* Corpo do Texto */
.manifesto-body {
    margin-bottom: 3rem;
}

.manifesto-body .lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.manifesto-body .lead-paragraph em {
    color: #C8A47E;
    font-style: italic;
}

.manifesto-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 1.25rem;
}

/* Assinatura do Fundador */
.founder-signature {
    padding-top: 2rem;
}

.signature-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #C8A47E, transparent);
    margin-bottom: 1.5rem;
}

.signature-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.signature-role {
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* -----------------------------------------------------------------
   2. SEÇÃO FILOSOFIA - GRID DE VALORES
   ----------------------------------------------------------------- */
.filosofia-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, #0a1628 100%);
    position: relative;
}

.filosofia-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, #C8A47E, transparent);
}

.filosofia-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
}

/* Card Wide (Horizontal) com Glassmorphism */
.glass-card-wide {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2.5rem;
    padding: 2.5rem 3rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.glass-card-wide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #C8A47E, rgba(200, 164, 126, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card-wide:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(200, 164, 126, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.glass-card-wide:hover::before {
    opacity: 1;
}

/* Ícone Grande */
.card-icon-large {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 164, 126, 0.05);
    border: 1px solid rgba(200, 164, 126, 0.15);
    border-radius: 50%;
    color: #C8A47E;
    transition: all 0.4s ease;
}

.glass-card-wide:hover .card-icon-large {
    background: rgba(200, 164, 126, 0.1);
    border-color: #C8A47E;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(200, 164, 126, 0.2);
}

.card-icon-large svg {
    width: 40px;
    height: 40px;
}

/* Conteúdo do Card */
.card-content-wide h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.card-content-wide p {
    font-size: 1rem;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 600px;
}

.card-content-wide strong {
    color: #e2e8f0;
}

/* Número do Card */
.card-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    font-weight: 400;
    color: rgba(200, 164, 126, 0.1);
    line-height: 1;
    transition: color 0.4s ease;
}

.glass-card-wide:hover .card-number {
    color: rgba(200, 164, 126, 0.25);
}

/* -----------------------------------------------------------------
   3. SEÇÃO STATS DE CONFIANÇA
   ----------------------------------------------------------------- */
.trust-stats-section {
    padding: 5rem 0;
    background: linear-gradient(
        90deg,
        var(--color-bg-dark) 0%,
        rgba(200, 164, 126, 0.05) 50%,
        var(--color-bg-dark) 100%
    );
    border-top: 1px solid rgba(200, 164, 126, 0.1);
    border-bottom: 1px solid rgba(200, 164, 126, 0.1);
}

.trust-stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.trust-stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 400;
    color: #C8A47E;
    line-height: 1;
    display: inline;
}

.trust-stat-suffix {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;
    color: #C8A47E;
    margin-left: 0.2rem;
}

.trust-stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.8rem;
}

.trust-stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(200, 164, 126, 0.3),
        transparent
    );
}

/* -----------------------------------------------------------------
   4. SEÇÃO CTA FINAL
   ----------------------------------------------------------------- */
.azienda-cta-section {
    padding: 8rem 0;
    background: var(--color-bg-dark);
    position: relative;
}

.azienda-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.azienda-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.azienda-cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.azienda-cta-text {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.azienda-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1rem;
}

/* -----------------------------------------------------------------
   RESPONSIVO
   ----------------------------------------------------------------- */
@media (max-width: 1024px) {
    /* Header Mobile */
    .site-header--solid .nav-list {
        display: none;
    }

    .site-header--solid .main-nav.active .nav-list {
        display: flex;
    }

    /* Manifesto */
    .manifesto-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .manifesto-image-col {
        height: 50vh;
        min-height: 400px;
    }

    .manifesto-text-col {
        padding: 4rem 2rem;
    }

    .manifesto-title {
        font-size: 2.5rem;
    }

    /* Filosofia Cards */
    .glass-card-wide {
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }

    .card-number {
        display: none;
    }

    .card-icon-large {
        width: 70px;
        height: 70px;
    }

    .card-icon-large svg {
        width: 32px;
        height: 32px;
    }

    /* Stats */
    .trust-stats-grid {
        flex-direction: column;
        gap: 2.5rem;
    }

    .trust-stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(
            90deg,
            transparent,
            rgba(200, 164, 126, 0.3),
            transparent
        );
    }
}

@media (max-width: 768px) {
    .manifesto-title {
        font-size: 2rem;
    }

    .manifesto-body .lead-paragraph {
        font-size: 1.1rem;
    }

    .eyebrow-editorial {
        letter-spacing: 3px;
    }

    /* Filosofia Cards - Stack Vertical */
    .glass-card-wide {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .card-icon-large {
        margin: 0 auto;
    }

    .card-content-wide p {
        max-width: 100%;
    }

    .card-content-wide h3 {
        font-size: 1.3rem;
    }

    /* CTA */
    .azienda-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .manifesto-image-col {
        height: 40vh;
        min-height: 300px;
    }

    .manifesto-text-col {
        padding: 3rem 1.5rem;
    }

    .manifesto-title {
        font-size: 1.8rem;
    }

    .trust-stat-number {
        font-size: 2.5rem;
    }

    .trust-stat-suffix {
        font-size: 1.8rem;
    }

    .filosofia-section {
        padding: 5rem 0;
    }

    .glass-card-wide {
        padding: 1.5rem;
    }
}

/* -----------------------------------------------------------------
   ANIMAÇÕES DE ENTRADA
   ----------------------------------------------------------------- */
.manifesto-content {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.manifesto-image-wrapper {
    opacity: 0;
    animation: fadeIn 1.2s ease-out 0.1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Stagger para cards da filosofia */
.filosofia-card:nth-child(1) { transition-delay: 0.1s; }
.filosofia-card:nth-child(2) { transition-delay: 0.2s; }
.filosofia-card:nth-child(3) { transition-delay: 0.3s; }

/* Stagger para stats */
.trust-stat-item:nth-child(1) { transition-delay: 0.1s; }
.trust-stat-item:nth-child(3) { transition-delay: 0.2s; }
.trust-stat-item:nth-child(5) { transition-delay: 0.3s; }
