* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    overflow-x: hidden;
    background: #1c2132;
}

/* Video de Fundo */
#video-bg {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    filter: brightness(0.4);
}

.advass {
    font-size: 1rem;
    text-align: center;
}

/* Logo Principal */
.main-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 650px;
    width: 90%;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.5));
}

/* Navbar Responsiva */
.navbar {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(28, 33, 50, 0.95);
    padding: 15px 35px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    display: flex;
    gap: 40px;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
    padding: 8px 15px;
    border-radius: 20px;
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
}

/* Seções */
section {
    min-height: 100vh;
    padding: 120px 20px;
    background: #2d2d2d;
    margin-top: 100vh;
    color: #fff;
}

.texto-main {
    text-align: center;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 1.1rem;
    text-align: justify;
    line-height: 1.6;
    padding: 0 15px;
}

.content-info {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 1.3rem;
    text-align: justify;
    line-height: 1.6;
    padding: 0 15px;
    
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin: 30px 0;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #fff;
}

/* Advogados */
.advogados-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 30px;
}

.advogado {
    background: #383838;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
    margin: 10px;
}

.advogado:hover {
    transform: translateY(-10px);
}

.advogado-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #fff;
    max-width: 100%;
}

/* Contato */
.contato-logo-container {
    text-align: center;
    margin-bottom: 50px;
}

.contato-logo {
    max-width: 250px;
    filter: brightness(0) invert(1);
}

.contato-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contato-coluna {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    margin-bottom: 25px;
    background: #383838;
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
    word-break: break-word;
}

.contato-item:hover {
    transform: translateY(-5px);
    background: #424242;
}

.contato-item i {
    font-size: 2.2rem;
    min-width: 60px;
    text-align: center;
}

.contato-info span {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

/* Mapa */
.mapa-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin-bottom: 25px;
}

.mapa-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsivo */
@media (max-width: 1024px) {
    .main-logo {
        max-width: 500px;
    }
    
    .navbar {
        padding: 12px 25px;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .main-logo {
        max-width: 300px;
    }
    
    .navbar {
        top: 20px;
        padding: 10px 20px;
        gap: 25px;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .content {
        font-size: 0.5rem;
        padding: 0 10px;
    }
    .content-info {
        font-size: 1.5;
        justify-content: end;
        
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .advogado-img {
        width: 150px;
        height: 150px;
    }
    
    .contato-logo {
        max-width: 200px;
    }
    
    .contato-item {
        padding: 15px;
        gap: 15px;
    }
    
    .mapa-container {
        padding-bottom: 75%;
    }
}

@media (max-width: 480px) {
    .main-logo {
        max-width: 250px;
    }
    
    .navbar {
        gap: 10px;
        padding: 8px 12px;
        border-radius: 20px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 5px 8px;
    }
    
    section {
        padding: 80px 10px;
    }
    
    .contato-wrapper {
        flex-direction: column;
    }
    
    .contato-coluna {
        min-width: 100%;
    }
    
    .contato-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .contato-item i {
        margin-bottom: 15px;
    }
    
    .contato-info span {
        font-size: 0.9rem;
    }
    
    .contato-info p {
        font-size: 0.8rem;
    }
}

/* Garante quebra de texto */
p, span {
    overflow-wrap: break-word;
    hyphens: auto;
}