/* corporativo.css */

/* Reset e Cores */
.corp-body {
    background-color: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

/* Header diferenciado para a página corporativa */
.corp-header {
    background: rgba(0,0,0,0.9) !important;
    border-bottom: 1px solid #1a1a1a;
    padding: 20px 0;
}

.corp-wrapper {
    max-width: 1400px;
    margin: 120px auto 0;
    padding: 0 40px;
}
/* Ícone do WhatsApp */
.whatsapp-fixed img {
    width: 35px;
    height: 35px;
}

/* Bolinha de notificação (Número 1) */
.whatsapp-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff0000;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
}

/* Animação para chamar atenção */
@keyframes pulse-green {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Efeito ao passar o mouse */
.whatsapp-fixed:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}
/* Layout de Introdução Assimétrico */
.corp-intro {
    margin-bottom: 100px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 40px;
    align-items: center;
}

.intro-text {
    max-width: 700px;
    text-align: left; /* Garante alinhamento à esquerda */
}

.eyebrow {
    color: #f1c40f;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 15px;
}

.intro-text h1 {
    font-size: 3.5rem;
    line-height: 1;
    margin: 0 0 30px 0;
    color: #fff;
}

.intro-text p {
    font-size: 1.2rem;
    color: #888;
    line-height: 1.8;
}

.vertical-text {
    writing-mode: vertical-rl;
    font-size: 5rem;
    color: rgba(241, 196, 15, 0.05); /* Texto gigante de fundo */
    margin: 0;
    font-family: 'Cinzel', serif;
}

/* Vídeo Showcase */
.section-header {
    margin-bottom: 40px;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: #f1c40f;
    margin-top: 10px;
}

.video-frame {
    background: #111;
    padding: 15px;
    border: 1px solid #222;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.video-frame video {
    width: 100%;
    display: block;
}

/* Galeria Masonry (Estilo revista) */
.corp-gallery {
    padding: 100px 0;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: #111;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: 0.5s;
}

/* Itens de tamanhos diferentes para quebrar a monotonia */
.gallery-item.large { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: 'Cinzel', serif;
    color: #f1c40f;
    font-size: 0.9rem;
    background: rgba(0,0,0,0.7);
    padding: 5px 15px;
}

/* Rodapé */
.corp-footer {
    padding: 60px;
    text-align: center;
    border-top: 1px solid #1a1a1a;
    color: #444;
}

/* Responsividade */
@media (max-width: 900px) {
    .intro-grid { grid-template-columns: 1fr; }
    .vertical-text { display: none; }
    .gallery-masonry { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .gallery-item.large, .gallery-item.wide { grid-row: auto; grid-column: auto; }
}