:root {
    --primary: #0f223e;
    --accent: #D4AF37;
    --slate-custom: #1E2A38;
    --background-dark: #0d1116;
    --font-display: 'Public Sans', sans-serif;
    --font-serif: 'Noto Serif', serif;
}

body {
    background-color: var(--background-dark);
    font-family: var(--font-display);
    color: white;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
}

a {
    text-decoration: none;
}

.text-accent { color: var(--accent) !important; }
.bg-accent { background-color: var(--accent) !important; }
.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-background-dark { background-color: var(--background-dark) !important; }
.bg-slate-custom { background-color: var(--slate-custom) !important; }

/* Bronze Glow */
.bronze-glow:hover {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    display: none;
}
.custom-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Navbar */
.navbar {
    transition: all 0.3s;
    padding: 1rem 0;
}
.navbar-scrolled {
    background-color: rgba(15, 34, 62, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}
.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-link:hover {
    color: var(--accent) !important;
}

/* Expertise Card */
.expertise-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding-bottom: 2rem;
}

.expertise-card {
    min-width: 300px;
    flex: 1;
    background-color: var(--slate-custom);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.expertise-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}
.expertise-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
    transition: all 0.3s;
}
.expertise-card:hover .expertise-icon-wrapper {
    background-color: var(--accent);
    color: var(--primary);
}

/* Floating Button */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1050;
    width: 4rem;
    height: 4rem;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}
.floating-whatsapp-tooltip {
    position: absolute;
    right: 100%;
    margin-right: 1rem;
    background-color: white;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.floating-whatsapp:hover .floating-whatsapp-tooltip {
    opacity: 1;
}

/* Inputs */
.form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
}
.form-control:focus {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    color: white;
}
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Map grayscale */
.map-container {
    filter: grayscale(100%);
    transition: filter 1000ms;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.map-container:hover {
    filter: grayscale(0%);
}
.map-container img {
    transition: opacity 0.3s;
}

/* Profile Image */
.profile-image-container {
    position: relative;
    /* max-width adicionado aqui via classe auxiliar mw-img-450 abaixo */
}
.profile-image-decoration-top {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 6rem;
    height: 6rem;
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
}
.profile-image-decoration-bottom {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 6rem;
    height: 6rem;
    border-bottom: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
}
.profile-badge {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background-color: var(--accent);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Animations */
@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}
.animate-bounce {
  animation: bounce 1s infinite;
}

@media (max-width: 767.98px) {
    #navbarNav {
        background: rgba(15, 34, 62, 0.95);
        backdrop-filter: blur(10px); 
        -webkit-backdrop-filter: blur(10px);
        padding: 20px;
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    }
}

/* --- NOVAS CLASSES PARA REMOVER ESTILOS INLINE --- */

/* Hero Section Styles */
.hero-wrapper {
    min-height: 100vh;
    padding-top: 80px;
    background: radial-gradient(circle at 70% 50%, #1a2533, #0d1117);
}

.mw-text-500 {
    max-width: 500px;
}

/* Utilities */
.border-accent-force {
    border-color: var(--accent) !important;
}

.btn-nav-scroll {
    width: 45px;
    height: 45px;
    border-color: rgba(255,255,255,0.5);
    color: rgba(255,255,255,0.5);
}

.bg-navy-soft {
    background-color: rgba(15, 34, 62, 0.2);
}

.mw-img-450 {
    max-width: 450px;
}

/* Footer / Contact */
.map-container-wrapper {
    height: 250px;
}

.map-iframe {
    border: 0;
}

.icon-contact-box {
    width: 50px;
    height: 50px;
    background-color: rgba(15, 34, 62, 0.5) !important;
}

.text-xs {
    font-size: 0.75rem;
}

.footer-copyright {
    font-size: 0.7rem; 
    letter-spacing: 0.1em;
}