/* ============================================
   BOLSI ADVOGADOS - DESIGN PREMIUM V3
   ============================================ */

:root {
    --primary-dark: #2c2c2c;
    --primary-darker: #1a1a1a;
    --primary-light: #4a4a4a;
    --accent-blue: #151132;
    --accent-dark: #3a3a3a;
    --accent-light: #a8a8a8;
    --accent-lighter: #d4d4d4;
    --light-bg: #f8f8f8;
    --light-bg-2: #f0f0f0;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --text-lighter: #999999;
    --border-light: #e0e0e0;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
	transform: none !important;
	overflow-x: hidden;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
	transform: none !important;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}


/* ============================================
   ANIMAÇÕES GLOBAIS
   ============================================ */

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInCarousel {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutCarousel {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-20px);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   TIPOGRAFIA
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 600;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1.5px;
    background: var(--accent-light);
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
}

/* ============================================
   HEADER FIXO
   ============================================ */

header {
    position: fixed;
	top: 32px; /* altura aproximada da top-bar */
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--border-light);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
	height: 100px;
    padding: 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-container::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -3px;
    height: 5px;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.15) 40%,
        rgba(0, 0, 0, 0.05) 65%,
        transparent 75%
    );
    pointer-events: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo img {
    width: 200px;
    height: auto;
    animation: slideInDown 0.6s ease;
}

.logo-text {
    font-family: 'Montserrat', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: none;
}

/* Menu Desktop */
nav {
    display: flex;
    gap: 3rem;
	margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--accent-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
}

nav a:hover {
    color: var(--accent-blue);
}

nav a:hover::after {
    opacity: 1;
}

nav a.active {
    color: var(--accent-blue);
}

nav a.active::after {
    opacity: 1;
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu.active {
    display: flex;
}

/* ============================================
   HERO + SOBRE UNIFICADO
   ============================================ */

.hero {
    margin-top: 100px;
    color: var(--text-dark);
    padding: 0 0 0 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
	background-color: #F5F6F0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    display: none;
}

.hero-content p {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    animation: slideInUp 0.8s ease 0.1s both;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease 0.2s both;
    margin-top: 2rem;
}

.hero-content {
    padding: 3rem 3rem 3rem 0;
}

.btn {
    padding: 0.9rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--accent-blue);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(21, 17, 50, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(21, 17, 50, 0.25);
    background: #0d081a;
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--text-dark);
}

.btn-secondary:hover {
    background: var(--light-bg);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    animation: slideInRight 0.8s ease;
    margin: -4rem -2rem -6rem 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.office-carousel {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    width: 100%;
    animation: carouselSlide 18s infinite ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 420px;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .carousel-slide {
        height: 260px;
    }
}

/* ANIMAÇÃO — similar ao "Área de Atuação" */
@keyframes carouselSlide {
    0%   { transform: translateX(0); }
    30%  { transform: translateX(0); }

    35%  { transform: translateX(-100%); }
    65%  { transform: translateX(-100%); }

    70%  { transform: translateX(-200%); }
    95%  { transform: translateX(-200%); }

    100% { transform: translateX(0); }
}


/* ============================================
   SEÇÃO ADVOGADOS
   ============================================ */

.lawyers {
    padding: 6rem 2rem;
    background: var(--light-bg-2);
}

.lawyers-container {
    max-width: 1400px;
    margin: 0 auto;
}

.lawyers h2 {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease;
}

.lawyers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.lawyer-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.lawyer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.lawyer-actions {
    display: flex;
    justify-content: center;
    margin: 0 0 20px 0;
}

.lawyer-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--light-bg-2);
    position: relative;
}

.lawyer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lawyer-card:hover .lawyer-image img {
    transform: scale(1.05);
}

.lawyer-info {
    padding: 2rem;
}

.lawyer-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.lawyer-oab {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.lawyer-specialties {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.lawyer-specialties strong {
    color: var(--accent-blue);
    font-weight: 600;
}

.lawyer-education {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   SEÇÃO ÁREAS DE ATUAÇÃO
   ============================================ */

.areas {
    padding: 6rem 2rem;
    background: var(--light-bg-2);
}

.areas-container {
    max-width: 1200px;
    margin: 0 auto;
}

.areas h2 {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease;
}

.carousel-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.carousel-slide {
    background: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    animation: slideInCarousel 0.5s ease;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-slide.exit {
    animation: slideOutCarousel 0.5s ease;
}

.carousel-slide h4 {
    color: var(--accent-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.carousel-slide p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Setas do carrossel */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-blue);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: #0d081a;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-left {
    left: -60px;
}

.carousel-arrow-right {
    right: -60px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: var(--accent-light);
    transform: scale(1.2);
}

.dot.active {
    background: var(--accent-blue);
    width: 24px;
    border-radius: 4px;
}

/* ============================================
   SEÇÃO ÁREAS DE ATUAÇÃO
   ============================================ */

.why-choose-us {
    padding: 4rem 0;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform .3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
}

.why-card h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}


/* ============================================
   SEÇÃO CONTATO
   ============================================ */
/* GRID CONTATO */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

/* CARD INFORMAÇÕES */
.contact-info {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    animation: scaleIn 0.6s ease;
}

.contact-info h3 {
    color: var(--accent-blue);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* LISTA DE CONTATO */
.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-list li strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.contact-list span,
.contact-list a {
    font-size: 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: var(--accent-blue);
}

.contact {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.contact-container {
    max-width: 100%;
    margin: 0 auto;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: scaleIn 0.6s ease;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--accent-blue);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(21, 17, 50, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--accent-blue);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif"
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-submit:hover::before {
    left: 0;
}

.btn-submit:hover {
    background: #0d081a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(21, 17, 50, 0.3);
}

/* ============================================
   BOTÃO WHATSAPP FIXO
   ============================================ */

.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: bounceIn 0.6s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn img {
	width: 40px;
}

/* ============================================
   BANNER DE COOKIES
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: var(--white);
    padding: 0.5rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    z-index: 2147483647;
    isolation: isolate;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 500;
	color: #FFFFFF;
}

.cookie-text a {
    color: var(--white);
    text-decoration: underline;
    transition: all 0.3s ease;
	color: #FFFFFF;
}

.cookie-text a:hover {
    opacity: 0.8;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    white-space: nowrap;
}

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: var(--accent-blue);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: #0d081a;
    transform: translateY(-2px);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ============================================
   INDICADOR LATERAL DE PROGRESSO
   ============================================ */

.scroll-progress {
    position: fixed;
    top: 120px; /* abaixo do header */
    right: 24px;
    width: 4px;
    height: calc(100vh - 160px);
    background: rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    z-index: 900;
}

.scroll-progress span {
    display: block;
    width: 100%;
    height: 0%;
    background: var(--accent-blue);
    border-radius: 4px;
    transition: height 0.15s ease-out;
}


/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--primary-darker);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-section a {
    color: #7DCBFF;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid #888888;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #888888;
}

.footer-bottom p {
	color: #888888;
}

.footer-bottom p:nth-child(2){
	margin: 0;
	padding: 0;
	font-size: 12px;
}

/* ============================================
   TOP BAR - BARRA UTILITÁRIA SUPERIOR
   ============================================ */

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    transition: transform 0.3s ease;
    background: var(--primary-dark);
    color: var(--white);
    font-size: 13px;
}

.top-bar.hidden {
    transform: translateY(-100%);
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6px 20px;
    display: flex;
	justify-content: flex-end;
    align-items: center;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    margin-left: 16px;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.top-bar a:hover {
    opacity: 1;
}

.assinatura {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center; /* centraliza horizontalmente */
  align-items: center;
  padding: 10px 0; /* opcional, dá respiro */
}

.assinatura a {
  display: block;
  width: 46px;       /* largura exata da imagem */
  height: 21px;      /* altura visível */
  background-image: url("../img/assinatura_onzee.png");
  background-repeat: no-repeat;
  background-position: top left;
  transition: background-position 0.2s ease-in;
  z-index: 9999;
}
.assinatura a:hover {
  background-position: bottom left;
}
/* ============================================
   RESPONSIVE
   ============================================ */

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

    h2 {
        font-size: 1.8rem;
    }

    nav {
        display: none;
    }

    .menu-toggle {
        display: block;
		margin-right: 10px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .lawyers-grid {
        grid-template-columns: 1fr;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-arrow-left {
        left: 10px;
    }

    .carousel-arrow-right {
        right: 10px;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

    .whatsapp-btn {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
	
	.contact-grid {
    grid-template-columns: 1fr;
}
	
.scroll-progress {
        display: none;
    }

 .top-bar-container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

.top-bar-right a {
        margin-left: 10px;
    }
}

	
}

@media (max-width: 480px) {
    body {
        font-size: 0.9rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .header-container {
        padding: 0.75rem 1rem;
    }

    .hero {
        padding: 3rem 1rem;
        margin-top: 60px;
    }

    .lawyers,
    .areas,
    .contact {
        padding: 3rem 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .lawyer-image {
        height: 250px;
    }

    .lawyer-info {
        padding: 1.5rem;
    }

    .cookie-banner {
        padding: 1rem;
    }

    .cookie-text {
        font-size: 0.8rem;
    }
	
    .scroll-progress {
        display: none;
    }
	 .top-bar-container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

.top-bar-right a {
        margin-left: 10px;
    }
}
