@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* GLOBAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    font-family: "Raleway", sans-serif;
    scroll-behavior: smooth;
    background-color: #f5f5f5;
}

p {
    font-weight: 600;
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* HEADER / MENU FIXO */
.main-nav {
    position: fixed;
    z-index: 99999;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;

    display: flex;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.logo-img {
    max-width: 250px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-left: auto;
    margin-right: 40px;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 0;
    transition: color 0.3s ease;
}

/* Atualize este bloco no seu style.css */
.nav-links a:hover,
.nav-links a.active {
    color: #BD9357 !important;
    /* Força a cor dourada */
    transition: color 0.3s ease;
}

.contact-btn {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid #BD9357;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #BD9357;
    color: #fff;
}

.mobile-menu-toggle,
.mobile-menu-close {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: #BD9357;
}

.main-menu-group {
    display: flex;
    align-items: center;
    padding-left: 5%;
}

/* HERO BANNER (HOME) */
.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('img/Banner.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-content {
    margin-top: 15%;
    padding-bottom: 120px;
    max-width: 60%;
}

.hero-content h1 {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #f3e9d2;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #f3e9d2;
    font-weight: 500;
}

.cta-btn {
    background-color: #BD9357;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid #BD9357;
}

.cta-btn:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

/* NAV — telas intermediárias (tablet landscape / desktops pequenos) */
@media (min-width: 993px) and (max-width: 1282px) {
    .main-nav {
        padding: 15px 24px;
    }

    .logo-img {
        max-width: 170px;
    }

    .nav-links li {
        margin: 0 8px;
    }

    .nav-links a {
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .contact-btn {
        font-size: 11px;
        padding: 8px 12px;
        letter-spacing: 0.5px;
    }

    .main-menu-group {
        padding-left: 2%;
    }
}

/* MENU AO ROLAR (.scrolled) */
.main-nav.scrolled {
    top: 0;
    background-color: #000;
    border-color: rgba(0, 0, 0, 0.1);
    padding: 15px 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.main-nav.scrolled .nav-links a {
    color: white;
}

.main-nav.scrolled .nav-links a:hover {
    color: #BD9357;
}

.main-nav.scrolled .mobile-menu-toggle {
    color: #fff;
}

/* MEDIA QUERY */
@media (max-width: 992px) {
    .main-nav {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: none;
        padding: 20px;
        justify-content: space-between;
        border: none;
        background-color: black;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .main-nav .contact-btn {
        color: #fff;
        border-color: #BD9357;
    }

    .main-nav .mobile-menu-toggle {
        display: block;
    }

    .main-nav .main-menu-group {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 10000;
        padding-left: 0;
    }

    .main-nav .main-menu-group.is-open {
        display: flex;
    }

    .main-nav .main-menu-group .mobile-menu-close {
        display: block;
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 32px;
        color: #fff;
    }

    .main-menu-group .nav-links {
        flex-direction: column;
        margin: 0;
        padding: 0;
    }

    .main-menu-group .nav-links li {
        margin: 20px 0;
        text-align: center;
    }

    .main-menu-group .nav-links a {
        font-size: 22px;
        color: #fff;
    }

    .hero-content {
        max-width: 90%;
        margin-top: 100px;
        padding-bottom: 80px;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}

/* SEÇÕES GERAIS DA HOME */
#about-section {
    background-color: #000;
    color: #fff;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    color: #BD9357;
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #ddd;
    margin-top: 20px;
    margin-bottom: 30px;
    font-weight: 500;
}

.about-text p strong {
    color: #fff;
    font-weight: 600;
}

.about-image {
    flex: 1;
}

.image-frame img {
    width: 100%;
    display: block;
}

#practice-area-section {
    background-color: #fff;
    padding: 100px 0;
    background-image: url('/img/bkg-direito-do-trabalho.png');
    background-repeat: no-repeat;
    background-position: left;
}

section.practice-area-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.practice-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.practice-image-col,
.practice-text-col {
    flex: 1;
}

.skew-box img {
    max-width: 490px;
    max-height: 535px;
    display: block;
}

.practice-text-col {
    color: #333;
}

.practice-text-col h2 {
    color: #BD9357;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.practice-text-col p {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
}

.team-section-bg {
    background-color: #f5f5f5;
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    padding-bottom: 20px;
    color: #333;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 600;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-link {
    background: transparent;
    border: 1px solid #BD9357;
    color: #333;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.tab-link:hover,
.tab-link.active {
    background-color: #BD9357;
    color: #fff;
    border-color: #BD9357;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
}

#tab-3.tab-panel.active {
    display: grid;
    grid-template-columns: repeat(2, 350px);
    justify-content: center;
    gap: 40px;
}

@media (max-width: 850px) {
    #tab-3.tab-panel.active {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* CARDS DE EQUIPE */
.team-card {
    position: relative;
    overflow: hidden;
    width: 350px;
    height: 450px;
    background: linear-gradient(to bottom, #e3e3e3 0%, #f5f5f5 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.team-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.team-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(189, 147, 87, 0.9);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
}

.team-card-info h3 {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.team-social-links {
    display: flex;
    gap: 12px;
    margin-left: 10px;
}

.team-social-links a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}

.team-social-links a:hover {
    color: #000;
}

.team-card-summary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(189, 147, 87, 0.98);
    color: #fff;
    padding: 30px;
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
}

.team-card:hover .team-card-summary {
    opacity: 1;
    transform: translateY(0);
}

.team-card:hover .team-card-bg {
    transform: scale(1.05);
}

.team-card-summary h4 {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.team-card-summary .summary-list {
    list-style: none;
    font-size: 14px;
    line-height: 1.5;
}

.team-card-summary .summary-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 12px;
}

.team-card-summary .summary-list li::before {
    content: '•';
    position: absolute;
    left: 0;
}

.summary-text {
    font-size: 14px;
    font-weight: 500;
}

.btn-saiba-mais {
    background: #fff;
    border: none;
    color: #BD9357;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    align-self: flex-start;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-saiba-mais:hover {
    background: #000;
    color: #fff;
}

/* MODAL / POPUP */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 20000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #fff;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 5px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #333;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #BD9357;
}

.modal-header {
    border-bottom: 2px solid #BD9357;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.modal-header h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
}

.modal-header span {
    font-size: 16px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
}

.modal-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    font-weight: 500;
    text-align: justify;
}

/* FALE CONOSCO */
#contact-section {
    color: #fff;
    padding: 80px 0;
}

#contact-section .section-title h2 {
    color: #fff;
}

.section-intro {
    text-align: center;
    color: #ddd;
    font-size: 18px;
    margin-bottom: 50px;
}

.contact-direct-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.contact-buttons-col {
    flex: 1;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-map-col {
    flex: 1.5;
    min-width: 300px;
}

.contact-big-btn {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    padding: 20px;
}

.contact-big-btn i {
    font-size: 24px;
}

.contact-big-btn.outline {
    background-color: transparent;
    border: 2px solid #BD9357;
    color: #BD9357;
}

.contact-big-btn.outline:hover {
    background-color: #BD9357;
    color: #fff;
}

.address-box-highlight {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #444;
    padding: 20px;
    margin-top: 10px;
    border-radius: 4px;
}

.address-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.address-item:last-child {
    margin-bottom: 0;
}

.address-item i {
    color: #BD9357;
    font-size: 20px;
    margin-top: 5px;
}

.address-item p {
    color: #ddd;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
}

.address-item p a {
    color: inherit;
    text-decoration: none;
}

.address-item p a:hover {
    color: #BD9357;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    filter: invert(90%) hue-rotate(180deg);
}

.contact-footer-wrapper {
    background-image: url(img/bkg-footer.jpg);
    background-position: center;
    background-size: cover;
}

/* RODAPÉ */
#site-footer {
    color: #ddd;
    padding: 40px 0 0 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-socials-big {
    display: flex;
    gap: 15px;
}

.footer-socials-big a {
    color: #BD9357;
    border: 1px solid #BD9357;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-socials-big a:hover {
    background: #fff;
    color: #000;
}

.footer-secondary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.back-to-top {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.back-to-top:hover {
    color: #BD9357;
}

.footer-credits {
    text-align: center;
    padding: 20px 0;
}

.logo-incand {
    max-width: 150px;
    opacity: 0.7;
}

.bkg-footer {
    background-color: rgba(85, 85, 85, 0.25);
}

@media (max-width: 772px) {

    .about-content,
    .practice-content {
        display: block;
    }

    .contact-direct-wrapper {
        flex-direction: column;
    }

    .contact-buttons-col,
    .contact-map-col {
        width: 100%;
        max-width: 100%;
    }
}

/* ========================================================
   SECTION "NA MÍDIA" NA HOME
   ======================================================== */

.midia-home-section {
    background-color: #fff;
    padding: 80px 0;
}

.midia-home-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-top: 40px;
}

.midia-articles-col {
    flex: 1.2;
}

.midia-podcast-col {
    flex: 1;
    min-width: 280px;
}

.midia-col-title {
    font-size: 18px;
    font-weight: 700;
    color: #BD9357;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #BD9357;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.midia-list {
    list-style: none;
}

.midia-list-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.midia-list-item:last-child {
    border-bottom: none;
}

.midia-item-date {
    font-size: 12px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    min-width: 55px;
    margin-top: 3px;
}

.midia-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.midia-item-content a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.midia-item-content a:hover {
    color: #BD9357;
}

.midia-item-source {
    font-size: 12px;
    color: #BD9357;
    font-weight: 600;
}

.midia-spotify-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.midia-spotify-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    padding: 14px 24px;
}

@media (max-width: 860px) {
    .midia-home-layout {
        flex-direction: column;
        gap: 40px;
    }

    .midia-podcast-col {
        width: 100%;
    }
}

/* ========================================================
   ESTILOS ESPECÍFICOS DA PÁGINA "NA MÍDIA" (midia.html)
   ======================================================== */

/* Hero Banner menor para páginas internas */
.page-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 350px;
    background-image: url('img/Banner.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 800px;
    padding-top: 10%;
}

.page-hero-content h1 {
    font-size: 44px;
    font-weight: 600;
    color: #f3e9d2;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero-content p {
    font-size: 18px;
    color: #f3e9d2;
    font-weight: 500;
    line-height: 1.5;
}

/* Grid de Mídia */
.media-section {
    padding: 80px 0;
}

.media-section.bg-light {
    background-color: #fff;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Responsivo automático */
    gap: 40px;
    margin-top: 40px;
}

.media-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.media-card:hover {
    transform: translateY(-5px);
}

/* Card de Vídeo */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Card de Artigo */
.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

/* Infos do Card */
.media-info {
    padding: 25px;
}

.media-date {
    font-size: 13px;
    color: #999;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.media-info h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.media-info p {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    text-decoration: none;
    color: #BD9357;
    font-weight: 700;
    font-size: 14px;
    transition: color 0.3s;
}

.read-more-btn:hover {
    color: #000;
}

.read-more-btn i {
    margin-left: 5px;
    font-size: 12px;
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 32px;
    }

    .media-grid {
        grid-template-columns: 1fr;
    }

    .skew-box img {
        max-width: 300px;
        text-align: center;
        align-items: center;
        display: flex;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .image-frame img {
        display: none;
    }

    .skew-box {
        text-align: center;
        align-items: center;
        display: flex;
        justify-content: center;
    }
}