/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: #0a0f1e;
    border-left: 1px solid rgba(255,255,255,.04);
}
::-webkit-scrollbar-thumb {
    background: #3b6de9;
    border-radius: 5px;
    border: 2px solid #0a0f1e;
    transition: background .25s ease;
}
::-webkit-scrollbar-thumb:hover {
    background: #5a85f0;
}
::-webkit-scrollbar-thumb:active {
    background: #7a9ff5;
}
::-webkit-scrollbar-corner {
    background: #0a0f1e;
}
@supports (scrollbar-color: auto) {
    * {
        scrollbar-width: thin;
        scrollbar-color: #3b6de9 #0a0f1e;
    }
}

body {
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;
}

section[id] { scroll-margin-top: 80px; }

/* Hero Section Wrapper with the custom blue architectural background */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Direct link to your blue architecture image asset */
    background: url('galeria-img/fachada-hero-01.webp') no-repeat center center/cover;
    padding: 6rem 6.5rem 3.5rem 6.5rem;
}

/* Subtle dark gradient overlay to boost typography readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 14, 31, 0.45) 0%, rgba(5, 12, 26, 0.75) 100%);
    z-index: 1;
}

/* Navigation System Layout */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem 6.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(5, 10, 25, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.8rem 6.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: none;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-img {
        height: 67px;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 59px;
    }
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

@media (min-width: 769px) {
    .nav-links {
        display: flex;
        align-items: center;
        gap: 2.2rem;
        list-style: none;
    }
    
    .nav-links a {
        color: rgba(255, 255, 255, 0.75);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 400;
        transition: color 0.25s ease;
        position: relative;
    }
    
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: #6a9af5;
        transition: width .3s cubic-bezier(.4,0,.2,1);
    }
    
    .nav-links a:hover::after,
    .nav-links a.active::after {
        width: 100%;
    }
    
    .nav-links a:hover, 
    .nav-links a.active {
        color: #ffffff;
    }
    
    .search-nav-btn {
        font-size: 1rem;
        padding-left: 0.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
        z-index: 11;
    }

    .navbar.scrolled {
        padding: 0.6rem 1.5rem;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: rgba(5, 10, 25, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15rem;
        padding: 2rem;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
        border-left: 1px solid rgba(255, 255, 255, 0.06);
        list-style: none;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.4s; }
    
    .nav-links a {
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        font-size: 1.5rem;
        font-weight: 500;
        transition: color 0.25s ease;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        color: #ffffff;
    }
    
    .search-nav-btn {
        font-size: 1.5rem;
    }
    
    .hamburger[aria-expanded="true"] .fa-bars::before {
        content: "\f00d";
    }
}

@media (max-width: 576px) {
    .nav-links {
        max-width: 100%;
    }
}

/* Main Left-Aligned Layout Content Area */
.hero-container {
    position: relative;
    z-index: 10;
    flex-grow: 1;
    display: flex;
    align-items: center;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.hero-content {
    max-width: 580px;
    text-align: left;
}

.hero-content h1 {
    font-size: 2.9rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    white-space: nowrap;
    opacity: 0;
    animation: heroTitleIn 1s ease forwards;
}

@keyframes heroTitleIn {
    0% { opacity: 0; transform: translateY(20px); letter-spacing: -3px; }
    100% { opacity: 1; transform: translateY(0); letter-spacing: -1.5px; }
}

.hero-content p {
    font-size: 1.05rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 500px;
    font-family: 'Montserrat', sans-serif;
    text-align: justify;
}

/* Dual Button CTA Group styling */
.hero-cta-group {
    display: flex;
    gap: 1.2rem;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
}

.btn-filled {
    background-color: #243c74;
    color: #ffffff;
    border: none;
}

.btn-filled:hover {
    background-color: #2d4b93;
    transform: translateY(-2px);
}

.btn-outlined {
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
}

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

/* Bottom Glassmorphism Interactive Feature Cards Grid */
.features-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 160px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 1.8rem;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.card-counter {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.card-counter::after {
    content: attr(data-suffix);
}

.card-counter:not([data-suffix])::after {
    content: "+";
}

.card-counter[data-suffix=""]::after {
    content: none;
}

/* Responsive Adaptive Viewports Setup */
@media (max-width: 1200px) {
    .navbar { padding: 1.5rem 4rem; }
    .navbar.scrolled { padding: 0.8rem 4rem; }
    .hero-section { padding: 6rem 4rem 3rem 4rem; }
    .hero-content h1 { font-size: 2.45rem; }
}

@media (max-width: 992px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .navbar { padding: 1.2rem 2.5rem; }
    .navbar.scrolled { padding: 0.7rem 2.5rem; }
    .hero-section { padding: 5.5rem 2.5rem 2.5rem 2.5rem; }
    .hero-container { margin-top: 2rem; margin-bottom: 3rem; }
}

@media (max-width: 768px) {
    .hero-section { 
        padding: 5rem 1.5rem 2.5rem 1.5rem; 
        min-height: auto;
        justify-content: flex-start;
    }
    .hero-container { 
        flex-direction: column; 
        align-items: flex-start; 
        margin-top: 4rem; 
    }
    .hero-content { 
        max-width: 100%; 
        text-align: center; 
    }
    .hero-content h1 { font-size: 1.75rem; line-height: 1.2; white-space: normal; }
    .hero-content p { font-size: 1rem; max-width: 100%; text-align: center; }
    .hero-cta-group { 
        flex-direction: column; 
        width: 100%; 
        gap: 1rem; 
    }
    .btn { 
        width: 100%; 
        text-align: center; 
        padding: 1rem 2rem; 
        font-size: 1rem;
    }
    .features-grid { 
        grid-template-columns: 1fr; 
        gap: 1rem; 
    }
    .feature-card { 
        padding: 1.5rem; 
        min-height: auto; 
    }
    .logo { font-size: 1.25rem; }
    .logo-icon { font-size: 1.3rem; }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(5, 14, 31, 0.6) 0%, rgba(5, 12, 26, 0.85) 100%);
    }
}

@media (max-width: 576px) {
    .hero-section { padding: 1rem 1rem 2rem 1rem; }
    .hero-content h1 { font-size: 1.4rem; letter-spacing: -0.5px; white-space: normal; }
    .hero-content p { font-size: 0.95rem; line-height: 1.5; text-align: center; }
    .btn { padding: 1rem 1.5rem; font-size: 0.95rem; }
    .feature-card { padding: 1.25rem; }
    .card-icon { font-size: 1.5rem; margin-bottom: 1.5rem; }
    .feature-card h3 { font-size: 1rem; }
}

/* ===== Estrutura Section ===== */
.estrutura-section {
    position: relative;
    width: 100%;
    padding: 5rem 6.5rem;
    background: #131823;
    display: flex;
    align-items: center;
    justify-content: center;
}

.estrutura-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.estrutura-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,.8);
    text-align: left;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.estrutura-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.8;
    text-align: left;
    max-width: 100%;
}

.estrutura-subtitle strong {
    color: #fff;
    font-weight: 600;
}

/* ===== Galeria Grid ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 2.5rem;
}

.gallery-thumb {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    position: relative;
    border: 1px solid rgba(255,255,255,.08);
    transition: transform .4s ease, box-shadow .4s ease;
}

.gallery-thumb:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,.4);
    border-color: rgba(255,255,255,.15);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #131823;
    transition: transform .5s ease, filter .5s ease;
    filter: grayscale(1) brightness(.65) contrast(1.15);
}

.gallery-thumb:hover img {
    transform: scale(1.08);
    filter: grayscale(0) brightness(1) contrast(1);
}

/* Glassmorphism overlay */
.gallery-thumb .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 14px;
    background: linear-gradient(transparent, rgba(0,0,0,.5));
    transform: translateY(100%);
    transition: transform .4s ease;
    pointer-events: none;
}

.gallery-thumb:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,.1);
    z-index: 3;
    opacity: 0;
    transition: opacity .35s ease;
}

.gallery-thumb:hover .gallery-icon {
    opacity: 1;
}

.gallery-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px;
}

.gallery-desc {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255,255,255,.7);
    margin-top: 2px;
}



@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gallery-thumb img { filter: none; }
    .gallery-thumb:hover img { transform: none; filter: none; }
    .gallery-thumb:hover { transform: none; box-shadow: none; }
    .gallery-thumb .gallery-caption { transform: translateY(0); background: linear-gradient(transparent 40%, rgba(0,0,0,.65)); }
    .gallery-thumb:hover .gallery-caption { transform: translateY(0); }
    .gallery-icon { opacity: 1; width: 32px; height: 32px; font-size: .8rem; }
    .gallery-thumb:hover .gallery-icon { opacity: 1; }
}

@media (max-width: 576px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-thumb { aspect-ratio: 16 / 9; }
}

/* ===== Sócios Section ===== */
.socios-section {
    position: relative;
    width: 100%;
    padding: 5rem 6.5rem;
    background: #0a0f1e;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.socios-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5,14,31,.6) 0%, rgba(5,12,26,.9) 100%);
    z-index: 1;
}

.socios-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(59,109,233,.12) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.socios-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(59,109,233,.08) 0%, transparent 55%);
    z-index: 0;
    pointer-events: none;
}

.socios-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.socios-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    text-align: left;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding-bottom: .8rem;
    border-bottom: 1px solid rgba(59,109,233,.35);
}

.socios-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
    max-width: 680px;
    margin-bottom: 3rem;
}

.socios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.socios-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: 85%;
    background: radial-gradient(ellipse at center, rgba(41,97,238,.4) 0%, rgba(41,97,238,.12) 30%, transparent 60%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.socio-card {
    position: relative;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid transparent;
    border-radius: 14px;
    padding: 28px 22px 24px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    transition: transform .4s ease, box-shadow .4s ease;
    overflow: hidden;
}

.socio-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: conic-gradient(from 0deg, transparent, rgba(41,97,238,.12), transparent, rgba(41,97,238,.07), transparent, rgba(41,97,238,.12), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1px;
    pointer-events: none;
    animation: borderRotate 5s linear infinite;
}

@keyframes borderRotate {
    to { transform: rotate(360deg); }
}

.socio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 40px rgba(59,109,233,.08);
    border-color: rgba(59,109,233,.25);
}

.socio-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(41,97,238,.2) 0%, transparent 50%);
    filter: blur(20px);
    pointer-events: none;
}

.socio-icon {
    font-size: 1.2rem;
    color: rgba(59,109,233,.5);
    margin-bottom: 14px;
    transition: color .3s ease, transform .3s ease;
}

.socio-card:hover .socio-icon {
    color: #3b6de9;
    transform: scale(1.1);
}

.socio-avatar {
    width: 220px;
    height: 280px;
    border-radius: 14px;
    overflow: hidden;
    margin: 0 auto 14px;
    border: 2px solid rgba(255,255,255,.1);
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    transition: border-color .3s ease, transform .3s ease;
}

.socio-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #0a0f1e;
}

.socio-card:hover .socio-avatar {
    border-color: rgba(59,109,233,.4);
    transform: scale(1.04);
}

.socio-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: .3px;
}

.socio-espec {
    font-family: 'Montserrat', sans-serif;
    font-size: .75rem;
    font-weight: 500;
    color: #3b6de9;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.socio-bio {
    font-family: 'Montserrat', sans-serif;
    font-size: .78rem;
    font-weight: 400;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
    margin-bottom: 12px;
}

.socio-curriculo {
    font-family: 'Montserrat', sans-serif;
    font-size: .65rem;
    font-weight: 600;
    color: rgba(106,154,245,.7);
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border: 1px solid rgba(106,154,245,.15);
    border-radius: 20px;
    transition: all .25s ease;
}

.socio-curriculo i {
    font-size: .75rem;
}

.socio-curriculo:hover {
    color: #6a9af5;
    border-color: rgba(106,154,245,.4);
    background: rgba(106,154,245,.06);
}

.socios-cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.socios-cta .btn {
    font-size: .9rem;
    padding: .9rem 2.2rem;
    transition: all .3s ease;
    text-decoration: none;
}

.socios-cta .btn:hover {
    background: #3b6de9;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59,109,233,.3);
}

@media (max-width: 992px) {
    .socios-section { padding: 3.5rem 2.5rem; }
    .socios-grid { gap: 18px; }
}

@media (max-width: 768px) {
    .socios-section { padding: 3rem 1.5rem; }
    .socios-grid { grid-template-columns: 1fr; gap: 16px; }
    .socio-card { padding: 28px 20px; }
}

@media (max-width: 576px) {
    .socios-section { padding: 2.5rem 1rem; }
}

/* ===== Sobre a Advocacia ===== */
.sobre-section {
    position: relative;
    width: 100%;
    padding: 5rem 6.5rem;
    background: #131823;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sobre-container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.sobre-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,.8);
    text-align: left;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding-bottom: .8rem;
    border-bottom: 1px solid rgba(59,109,233,.35);
}

.sobre-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: .95rem;
    font-weight: 400;
    color: rgba(255,255,255,.7);
    line-height: 1.55;
    margin-bottom: 1rem;
}

.sobre-content p strong {
    color: #fff;
    font-weight: 600;
}

.sobre-cta {
    margin-top: 1.5rem;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sobre-cta .btn {
    font-size: .85rem;
    padding: .85rem 2rem;
    text-decoration: none;
    transition: all .3s ease;
}

.sobre-cta .btn-filled:hover {
    background: #3b6de9;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59,109,233,.3);
}

.sobre-cta .btn-outlined {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.6);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-left: 2.2rem;
    padding-right: 2.2rem;
}

.sobre-cta .btn-outlined:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-3px);
    border-color: #fff;
}

.sobre-image-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sobre-image-wrap::before,
.sobre-image-wrap::after,
.sobre-frame {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border-radius: 14px;
}

.sobre-image-wrap::before,
.sobre-image-wrap::after {
    content: '';
}

.sobre-image-wrap::before {
    inset: -14px;
    border: 1.5px solid rgba(106,154,245,.2);
    transform: rotate(15deg);
}

.sobre-image-wrap::after {
    inset: -22px;
    border: 1px solid rgba(106,154,245,.1);
    transform: rotate(-15deg);
}

.sobre-frame.f1 {
    inset: -18px;
    border: 1.5px solid rgba(106,154,245,.12);
    transform: rotate(7deg);
}

.sobre-frame.f2 {
    inset: -26px;
    border: 1px solid rgba(106,154,245,.07);
    transform: rotate(-7deg);
}

.sobre-image {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.sobre-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.08);
    background: #131823;
}

@media (max-width: 992px) {
    .sobre-section { padding: 3.5rem 2.5rem; }
    .sobre-container { gap: 40px; }
}

@media (max-width: 768px) {
    .sobre-section { padding: 3.5rem 1.5rem; }
    .sobre-container { grid-template-columns: 1fr; gap: 32px; }
    .sobre-image { max-width: 100%; }
}

@media (max-width: 576px) {
    .sobre-section { padding: 3rem 1rem; }
    .sobre-content p { line-height: 1.6; }
    .sobre-image-wrap::before { inset: -8px; transform: rotate(8deg); }
    .sobre-image-wrap::after { inset: -14px; transform: rotate(-8deg); }
    .sobre-frame.f1 { inset: -11px; transform: rotate(4deg); }
    .sobre-frame.f2 { inset: -17px; transform: rotate(-4deg); }
}

@media (max-width: 400px) {
    .sobre-image-wrap::before { inset: -5px; transform: rotate(5deg); }
    .sobre-image-wrap::after { inset: -10px; transform: rotate(-5deg); }
    .sobre-frame.f1 { inset: -7px; transform: rotate(3deg); }
    .sobre-frame.f2 { inset: -12px; transform: rotate(-3deg); }
}

/* ===== Footer / Contato ===== */
.footer-section {
    width: 100%;
    padding: 4rem 6.5rem 0;
    background: #050a19;
    border-top: 1px solid rgba(255,255,255,.06);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    padding-bottom: 2.5rem;
    align-items: start;
}

.footer-brand {
    justify-self: start;
}

.footer-brand .footer-logo {
    height: 76px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: .9rem;
    color: rgba(255,255,255,.5);
    max-width: 280px;
    line-height: 1.6;
}

.footer-contact {
    justify-self: center;
    text-align: left;
}

.footer-contact h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-contact p {
    font-family: 'Montserrat', sans-serif;
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    margin-bottom: .5rem;
    line-height: 1.5;
    padding-left: 24px;
    position: relative;
}

.footer-contact p i {
    position: absolute;
    top: 3px;
    left: 0;
    width: 18px;
    color: #3b6de9;
    text-align: center;
}

.footer-social-wrap {
    justify-self: end;
}

.footer-social-wrap h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: left;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    font-size: 1rem;
    text-decoration: none;
    transition: all .25s ease;
}

.footer-social a:hover {
    background: #243c74;
    border-color: #3b6de9;
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: .78rem;
    color: rgba(255,255,255,.35);
}

@media (max-width: 992px) {
    .footer-section { padding: 3.5rem 2.5rem 0; }
    .footer-container { gap: 32px; }
}

@media (max-width: 768px) {
    .footer-section { padding: 3rem 1.5rem 0; }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    .footer-brand { justify-self: center; }
    .footer-contact { justify-self: center; text-align: center; }
    .footer-contact p { padding-left: 0; }
    .footer-contact p i { position: static; margin-right: 6px; }
    .footer-social-wrap { justify-self: center; }
    .footer-social-wrap h4 { text-align: center; }
}

@media (max-width: 576px) {
    .footer-section { padding: 2.5rem 1rem 0; }
    .footer-container { gap: 24px; }
    .footer-social a { width: 34px; height: 34px; font-size: .85rem; }
}

/* ===== Sócio Modal ===== */
.socio-modal-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.7);backdrop-filter:blur(6px);z-index:2500;display:none;align-items:center;justify-content:center;padding:24px}
.socio-modal-overlay.open{display:flex}
.socio-modal{background:#0e1424;border:1px solid rgba(255,255,255,.08);border-radius:16px;max-width:520px;width:100%;position:relative;box-shadow:0 24px 80px rgba(0,0,0,.5);animation:modalIn .3s ease;padding:10px}
.socio-modal-close{position:absolute;top:12px;right:16px;width:28px;height:28px;display:flex;align-items:center;justify-content:center;font-size:16px;color:rgba(255,255,255,.5);background:rgba(255,255,255,.06);border-radius:50%;transition:all .25s ease;z-index:10;cursor:pointer;border:none}
.socio-modal-close:hover{background:rgba(255,255,255,.12);color:#fff;transform:rotate(90deg)}
.socio-modal-body{display:flex;gap:20px;padding:36px 28px 24px}
.socio-modal-avatar{width:90px;height:90px;border-radius:50%;overflow:hidden;flex-shrink:0;border:2px solid rgba(255,255,255,.1)}
.socio-modal-avatar img{width:100%;height:100%;object-fit:cover;display:block;background:#0a0f1e}
.socio-modal-content{flex:1;min-width:0}
.socio-modal-content h2{font-family:'Montserrat',sans-serif;font-size:1.1rem;font-weight:700;color:#fff;margin-bottom:4px;line-height:1.3}
.socio-modal-oab{font-family:'Montserrat',sans-serif;font-size:.7rem;font-weight:500;color:#6a9af5;letter-spacing:.5px;display:block;margin-bottom:12px}
.socio-modal-content p{font-family:'Montserrat',sans-serif;font-size:.85rem;font-weight:400;color:rgba(255,255,255,.7);line-height:1.7}
.socio-modal-footer{border-top:1px solid rgba(255,255,255,.06);padding:15px 28px 25px;display:flex;gap:10px;flex-wrap:wrap}
.socio-modal-footer .btn-modal{background:#3b6de9;color:#fff;padding:10px 20px;font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;border:none;border-radius:0;cursor:pointer;transition:all .25s ease;text-decoration:none;display:inline-flex;align-items:center;gap:6px}
.socio-modal-footer .btn-modal:hover{background:#2a56d6}
.socio-modal-footer .btn-modal-outline{background:transparent;color:rgba(255,255,255,.6);padding:10px 20px;font-size:12px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;border:1px solid rgba(255,255,255,.1);border-radius:0;cursor:pointer;transition:all .25s ease}
.socio-modal-footer .btn-modal-outline:hover{border-color:rgba(255,255,255,.25);color:#fff}

@media (max-width:600px){
  .socio-modal-overlay{padding:12px}
  .socio-modal-body{flex-direction:column;align-items:center;text-align:center;padding:28px 20px 20px}
  .socio-modal-avatar{width:76px;height:76px}
  .socio-modal-footer{justify-content:center}
}

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s cubic-bezier(.4,0,.2,1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 42px;
    height: 42px;
    background: rgba(36,60,116,.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease, background .25s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: rgba(59,109,233,.9);
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 38px;
        height: 38px;
        font-size: .85rem;
    }
}

/* ===== Lightbox ===== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    animation: fadeIn .25s ease;
}

.lightbox-overlay.open {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0,0,0,.5);
    animation: modalIn .3s ease;
    object-fit: contain;
}

.lightbox-close {
    position: fixed;
    top: 24px;
    right: 28px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    transition: all .25s ease;
    z-index: 3010;
    cursor: pointer;
    border: none;
}

.lightbox-close:hover {
    background: rgba(255,255,255,.15);
    color: #fff;
}

@media (max-width: 680px) {
    .lightbox-overlay { padding: 16px; }
    .lightbox-img { max-width: 100vw; max-height: 80vh; border-radius: 8px; }
    .lightbox-close { top: 16px; right: 16px; width: 36px; height: 36px; font-size: 18px; }
}

@media (max-width: 992px) {
    .estrutura-section { padding: 3.5rem 2.5rem; }
}

@media (max-width: 768px) {
    .estrutura-section { padding: 3rem 1.5rem; }
    .estrutura-subtitle { font-size: 1rem; }
}

@media (max-width: 576px) {
    .estrutura-section { padding: 2.5rem 1rem; }
}

/* ===== Áreas de Atuação Section ===== */
.areas-section {
    position: relative;
    width: 100%;
    padding: 5rem 6.5rem;
    background: #0a0f1e;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.areas-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(59, 109, 233, 0.15) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.areas-section::after {
    content: "";
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(59, 109, 233, 0.1) 0%, transparent 55%);
    z-index: 0;
    pointer-events: none;
}

.areas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 14, 31, 0.85) 0%, rgba(5, 12, 26, 0.95) 100%);
    z-index: 1;
}

.areas-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.areas-title {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    text-align: left;
    margin-bottom: 3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.area-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(59, 109, 233, 0.02) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 2.4rem 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 200px;
    position: relative;
    overflow: visible;
    margin-top: 12px;
}

.area-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.area-card:hover::before {
    background: #3b6de9;
    box-shadow: 0 0 15px rgba(59, 109, 233, 0.5), 0 0 30px rgba(59, 109, 233, 0.2);
}

.area-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(59, 109, 233, 0.05) 100%);
    border-color: rgba(59, 109, 233, 0.2);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.area-number {
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.area-card:hover .area-number {
    color: rgba(59, 109, 233, 0.3);
}

.area-icon {
    position: absolute;
    top: -14px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    z-index: 2;
    background: linear-gradient(135deg, #121b30, #1a2545);
    border: 1px solid rgba(59,109,233,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #3b6de9;
    box-shadow: 0 4px 16px rgba(0,0,0,.3);
    transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.area-card:hover .area-icon {
    transform: scale(1.08) translateY(2px);
    box-shadow: 0 6px 24px rgba(59,109,233,.25);
    border-color: rgba(59,109,233,.35);
}

.area-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.area-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    flex-grow: 1;
    opacity: 0.7;
    transition: opacity 0.4s ease 0.1s;
}

.area-card:hover p {
    opacity: 1;
}

.area-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    background: #3b6de9;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 0px;
    transition: background 0.25s ease, gap 0.25s ease;
    margin-top: auto;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.area-link i {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
}

.area-card:hover .area-link {
    background: #2a56d6;
    gap: 0.7rem;
}

.area-card:hover .area-link i {
    transform: translateX(3px);
}

@media (max-width: 992px) {
    .areas-section {
        padding: 3.5rem 2.5rem;
    }
    .areas-title {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .areas-section {
        padding: 3rem 1.5rem;
    }
    .areas-title {
        font-size: 1.1rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .area-card {
        padding: 1.5rem 1.2rem;
        min-height: 180px;
        margin-top: 10px;
    }
    .area-icon {
        width: 38px;
        height: 38px;
        top: -12px;
        left: 16px;
        font-size: 1.1rem;
        border-radius: 8px;
    }
    .area-card h3 {
        font-size: 0.95rem;
    }
    .area-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .areas-section {
        padding: 2.5rem 1rem;
    }
    .areas-title {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    .area-card {
        padding: 1.2rem 1rem;
        min-height: 150px;
        border-radius: 10px;
        margin-top: 8px;
    }
    .area-icon {
        width: 34px;
        height: 34px;
        top: -10px;
        left: 14px;
        font-size: 1rem;
        border-radius: 7px;
    }
    .area-card h3 {
        font-size: 0.9rem;
    }
    .area-card p {
        font-size: 0.78rem;
    }
    .area-link {
        font-size: 0.75rem;
    }
}

/* =============== MODAL =============== */
.modal-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.7);backdrop-filter:blur(6px);z-index:2000;display:none;align-items:center;justify-content:center;padding:24px}
.modal-overlay.open{display:flex}
.modal{background:#0e1424;border:1px solid rgba(255,255,255,.08);border-radius:16px;max-width:700px;width:100%;overflow-y:auto;position:relative;box-shadow:0 24px 80px rgba(0,0,0,.5);animation:modalIn .3s ease;scrollbar-width:none;-ms-overflow-style:none;padding:10px}
.modal::-webkit-scrollbar{width:0;height:0;display:none}
.modal *::-webkit-scrollbar{width:0;height:0;display:none}
.modal *{scrollbar-width:none;-ms-overflow-style:none}
@keyframes modalIn{from{opacity:0;transform:translateY(30px) scale(.97)}to{opacity:1;transform:translateY(0) scale(1)}}
.modal-close{position:absolute;top:12px;right:16px;width:28px;height:28px;display:flex;align-items:center;justify-content:center;font-size:16px;color:rgba(255,255,255,.5);background:rgba(255,255,255,.06);border-radius:50%;transition:all .25s ease;z-index:10;cursor:pointer;border:none}
.modal-close:hover{background:rgba(255,255,255,.12);color:#fff;transform:rotate(90deg)}
.modal-header{background:linear-gradient(135deg,#0a0f1e,#162040);padding:30px 38px 36px;border-radius:16px 16px 0 0;border-bottom:1px solid rgba(255,255,255,.06)}
.modal-header .tag{font-size:10px;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:#3b6de9;margin-bottom:6px;display:block}
.modal-header h2{color:#fff;font-size:clamp(18px,2.4vw,24px);font-weight:700;margin-bottom:6px;line-height:1.2;display:flex;align-items:center;gap:10px}
.modal-header h2 i{font-size:clamp(16px,2vw,22px);color:#3b6de9;width:32px;text-align:center;display:inline-block;line-height:1;vertical-align:middle}
.modal-header h2 #modal-icon-wrap{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;background:rgba(59,109,233,.15);border-radius:8px;flex-shrink:0}
.modal-header p{font-size:13px;font-weight:400;color:rgba(255,255,255,.65);line-height:1.5}
.modal-body{padding:16px 28px 26px}
.modal-body .descritivo{font-size:13px;font-weight:400;line-height:1.6;color:rgba(255,255,255,.75);margin-bottom:16px;text-align:justify}
.modal-body .persona{background:rgba(59,109,233,.08);border-left:3px solid #3b6de9;padding:12px 18px;margin-bottom:0;border-radius:0 6px 6px 0}
.modal-body .persona strong{font-size:10px;letter-spacing:.14em;text-transform:uppercase;color:#3b6de9;display:block;margin-bottom:4px}
.modal-body .persona p{font-size:12px;font-weight:400;color:rgba(255,255,255,.7);line-height:1.5}
.modal-footer{border-top:1px solid rgba(255,255,255,.06);padding:15px 28px 25px;display:flex;gap:10px;flex-wrap:wrap}
.modal-footer .btn-modal{background:#3b6de9;color:#fff;padding:10px 20px;font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;border:none;border-radius:0;cursor:pointer;transition:all .25s ease;text-decoration:none;display:inline-flex;align-items:center;gap:6px}
.modal-footer .btn-modal:hover{background:#2a56d6}
.modal-footer .btn-modal-outline{background:transparent;color:rgba(255,255,255,.6);padding:10px 20px;font-size:12px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;border:1px solid rgba(255,255,255,.1);border-radius:0;cursor:pointer;transition:all .25s ease}
.modal-footer .btn-modal-outline:hover{border-color:rgba(255,255,255,.25);color:#fff}
@media (max-width:680px){
  .modal-overlay{padding:12px}
  .modal-header{padding:15px 20px 22px}
  .modal-body{padding:15px 20px 25px}
  .modal-footer{padding:12px 20px 22px}
}

@media (max-width:400px){
  .modal-overlay{padding:8px}
  .modal{padding:6px}
}