/* ============================================
   FONTES MODERNAS - POPPINS
   ============================================ */
/* Fonte Poppins carregada via Google Fonts */

/* ============================================
   VARIÁVEIS CSS
   ============================================ */
:root {
    --color-primary: #171532;
    --color-secondary: #d77745;
    --color-white: #ffffff;
    --color-light: #f8f9fa;
    --color-dark: #0a0a1a;
    --color-text: #333333;
    --color-text-light: #666666;
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(23, 21, 50, 0.1);
    --shadow-md: 0 4px 16px rgba(23, 21, 50, 0.15);
    --shadow-lg: 0 8px 32px rgba(23, 21, 50, 0.2);
}

/* ============================================
   RESET E BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--color-white);
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(23, 21, 50, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-secondary);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-white);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2a2550 100%);
    background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(23, 21, 50, 0.9) 0%, rgba(42, 37, 80, 0.85) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(215, 119, 69, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    width: 100%;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-description {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--color-secondary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(215, 119, 69, 0.4);
}

.btn-primary:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 119, 69, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-secondary);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-secondary);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
.animate-fade-up {
    animation: fadeUp 1s ease-out;
}

.animate-fade-up-delay {
    animation: fadeUp 1s ease-out 0.2s both;
}

.animate-fade-up-delay-2 {
    animation: fadeUp 1s ease-out 0.4s both;
}

.animate-fade-up-delay-3 {
    animation: fadeUp 1s ease-out 0.6s both;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    position: relative;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    margin: 1rem auto;
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SOBRE SECTION
   ============================================ */
.sobre {
    background: var(--color-light);
    padding-bottom: 8rem !important;
    overflow: visible;
}

/* História Section */
.sobre-historia {
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.historia-content {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 4rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    line-height: 1.8;
}

.historia-content p {
    color: var(--color-text);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.historia-content p:last-child {
    margin-bottom: 0;
}

.historia-content p:first-child {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.3rem;
}

/* MVV Container */
.mvv-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    padding: 4rem 0;
}

.mvv-circle-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.mvv-circle {
    width: 400px;
    height: 400px;
    position: relative;
    border-radius: 50%;
    background: conic-gradient(
        var(--color-primary) 0deg 120deg,
        var(--color-secondary) 120deg 240deg,
        #2a4a5a 240deg 360deg
    );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    grid-column: 2;
    grid-row: 1;
}

.mvv-circle::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: var(--color-white);
    border-radius: 50%;
    z-index: 1;
}

.mvv-segment-content {
    position: absolute;
    color: var(--color-text);
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    z-index: 3;
    white-space: nowrap;
}

.mvv-segment-content h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
}

.mvv-missao-label {
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
}

.mvv-visao-label {
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
}

.mvv-valores-label {
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
}

.mvv-arrows {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.mvv-arrow {
    position: absolute;
    width: 40px;
    height: 40px;
    border-top: 3px solid var(--color-text);
    border-right: 3px solid var(--color-text);
    opacity: 0.6;
}

.mvv-arrow-1 {
    top: 20%;
    right: 20%;
    transform: rotate(45deg);
}

.mvv-arrow-2 {
    bottom: 20%;
    right: 20%;
    transform: rotate(135deg);
}

.mvv-arrow-3 {
    bottom: 20%;
    left: 20%;
    transform: rotate(225deg);
}


.mvv-text-item {
    position: relative;
    background: var(--color-white);
    padding: 2rem;
    padding-left: 4rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    width: 100%;
    max-width: 450px;
}

.mvv-text-missao {
    border-left: 5px solid var(--color-primary);
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
}

.mvv-text-missao:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.mvv-text-visao {
    border-left: 5px solid #2a4a5a;
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
}

.mvv-text-visao:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.mvv-text-valores {
    border-left: 5px solid var(--color-secondary);
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    max-width: 500px;
}

.mvv-text-valores:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.mvv-text-icon {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.mvv-text-missao .mvv-text-icon {
    background: rgba(23, 21, 50, 0.1);
    color: var(--color-primary);
}

.mvv-text-visao .mvv-text-icon {
    background: rgba(42, 74, 90, 0.1);
    color: #2a4a5a;
}

.mvv-text-valores .mvv-text-icon {
    background: rgba(215, 119, 69, 0.1);
    color: var(--color-secondary);
}

.mvv-text-icon svg {
    width: 24px;
    height: 24px;
}

.mvv-text-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mvv-text-missao h3 {
    color: var(--color-primary);
}

.mvv-text-visao h3 {
    color: #2a4a5a;
}

.mvv-text-valores h3 {
    color: var(--color-secondary);
}

.mvv-text-item p {
    color: var(--color-text-light);
    line-height: 1.8;
}

.mvv-text-item ul {
    list-style: none;
    padding: 0;
}

.mvv-text-item ul li {
    padding: 0.5rem 0;
    color: var(--color-text-light);
    line-height: 1.6;
}

.mvv-text-item ul li strong {
    color: var(--color-primary);
}

/* ============================================
   SERVIÇOS SECTION
   ============================================ */
.servicos {
    background: var(--color-white);
}

.servicos-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.servico-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.servico-card-large {
    flex-direction: column;
}

.servico-card-large .servico-image {
    width: 100%;
    min-width: 100%;
}

.servico-featured {
    position: relative;
    border: 3px solid var(--color-secondary);
    box-shadow: 0 8px 32px rgba(215, 119, 69, 0.3);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 1) 100%);
}

.servico-featured:hover {
    transform: translateY(-15px);
    box-shadow: 0 12px 40px rgba(215, 119, 69, 0.4);
    border-color: var(--color-secondary);
}

.servico-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(215, 119, 69, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(215, 119, 69, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(215, 119, 69, 0.6);
    }
}

.servico-featured .servico-content h3 {
    color: var(--color-secondary);
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 1rem;
}

.servico-featured .servico-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), transparent);
    border-radius: 2px;
}

.servico-featured-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.8;
    margin-bottom: 1.5rem !important;
}

.servico-featured .servico-image {
    width: 100%;
    min-width: 100%;
    height: 300px;
}

.servico-featured .servico-overlay {
    background: linear-gradient(135deg, rgba(215, 119, 69, 0.8), rgba(23, 21, 50, 0.7));
    opacity: 0.3;
}

.servico-featured:hover .servico-overlay {
    opacity: 0.5;
}

.servico-image {
    position: relative;
    width: 300px;
    min-width: 300px;
    height: auto;
    overflow: hidden;
    flex-shrink: 0;
}

.servico-image img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    transition: var(--transition);
}


.servico-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(23, 21, 50, 0.7), rgba(215, 119, 69, 0.5));
    opacity: 0;
    transition: var(--transition);
}

.servico-card:hover .servico-overlay {
    opacity: 1;
}

.servico-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.servico-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.servico-content > p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.servico-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    flex: 1;
}

.servico-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-light);
    line-height: 1.6;
}

.servico-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 1.2rem;
}

.servico-note {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--color-light);
    border-left: 4px solid var(--color-secondary);
    border-radius: 5px;
    font-style: italic;
    color: var(--color-text);
}

.visto-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--color-light);
}

.visto-section h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.visto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.visto-item {
    background: var(--color-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--color-secondary);
    transition: var(--transition);
}

.visto-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.visto-item h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.visto-item p {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================
   CONTATO SECTION
   ============================================ */
.contato {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2a2550 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.processo-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.processo-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.processo-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
}

.processo-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.processo-number {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(215, 119, 69, 0.4);
    flex-shrink: 0;
}

.processo-content {
    flex: 1;
}

.processo-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    text-align: left;
}

.processo-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: left;
}

.processo-note {
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.processo-note strong {
    color: var(--color-secondary);
}

.contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.contato .container {
    position: relative;
    z-index: 1;
}

.contato .section-title,
.contato .section-description {
    color: var(--color-white);
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.info-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contato-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    border: 2px solid var(--color-light);
    border-radius: 8px;
    transition: var(--transition);
    background: var(--color-white);
    color: var(--color-text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(215, 119, 69, 0.1);
}

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

.contato-form .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-info {
    flex: 1;
    text-align: right;
}

.footer-contact h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-contact strong {
    color: var(--color-secondary);
    font-weight: 600;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

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

.info-card a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.info-card a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-lgpd {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    text-align: justify;
}

.footer-lgpd p {
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
}

.footer-lgpd p:last-child {
    margin-bottom: 0;
}

.footer-lgpd p + p {
    margin-top: 0.5rem;
}

.footer-lgpd strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.footer-lgpd p:first-child strong {
    margin-top: 0;
}

.footer-lgpd ul {
    list-style: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.footer-lgpd ul li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
}

.footer-lgpd ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(23, 21, 50, 0.98);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hero {
        min-height: 500px;
    }

    .hero-background {
        background-attachment: scroll;
    }

    .sobre-historia {
        margin-top: 2rem;
        margin-bottom: 3rem;
    }

    .historia-content {
        padding: 2.5rem;
    }

    .historia-content p {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .historia-content p:first-child {
        font-size: 1.2rem;
    }

    .mvv-container {
        min-height: auto;
        padding: 2rem 0;
        padding-bottom: 4rem;
    }

    .mvv-circle-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2rem;
    }

    .mvv-circle {
        width: 300px;
        height: 300px;
        grid-column: 1;
        grid-row: 2;
        margin: 0 auto;
    }

    .mvv-circle::before {
        width: 240px;
        height: 240px;
    }

    .mvv-segment-content {
        font-size: 1rem;
    }

    .mvv-arrow {
        width: 30px;
        height: 30px;
    }

    .mvv-text-item {
        width: 100%;
        max-width: 100%;
    }

    .mvv-text-missao {
        grid-column: 1;
        grid-row: 1;
        justify-self: center;
    }

    .mvv-text-visao {
        grid-column: 1;
        grid-row: 3;
        justify-self: center;
    }

    .mvv-text-valores {
        grid-column: 1;
        grid-row: 4;
        justify-self: center;
    }

    .mvv-text-missao:hover,
    .mvv-text-visao:hover,
    .mvv-text-valores:hover {
        transform: scale(1.02) !important;
    }

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

    .servicos-grid {
        flex-direction: column;
    }

    .servico-card {
        flex-direction: column;
    }

    .servico-card-large {
        flex-direction: column;
    }

    .servico-image {
        width: 100%;
        min-width: 100%;
        height: 250px;
    }

    .servico-image img {
        min-height: 250px;
    }

    .servico-badge {
        top: 15px;
        right: 15px;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .servico-featured .servico-content h3 {
        font-size: 1.8rem;
    }

    .servico-featured-intro {
        font-size: 1.1rem;
    }

    .servico-featured .servico-image {
        height: 250px;
    }

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

    .contato-wrapper {
        grid-template-columns: 1fr;
    }

    .processo-grid {
        flex-direction: column;
    }

    .processo-item {
        flex-direction: column;
        text-align: center;
    }

    .processo-number {
        margin: 0 auto 1.5rem;
    }

    .processo-item h4,
    .processo-item p {
        text-align: center;
    }

    .processo-item {
        padding: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        text-align: center;
        margin-top: 2rem;
    }

    .footer-lgpd {
        font-size: 0.7rem;
        text-align: left;
        padding: 1.5rem 1rem 0;
    }

    .footer-lgpd p {
        font-size: 0.7rem;
    }

    .footer-lgpd strong {
        font-size: 0.75rem;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .sobre-card,
    .servico-content,
    .contato-form-wrapper {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--color-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
    overflow: hidden;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    width: auto;
    padding: 0 20px;
    border-radius: 30px;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-icon svg {
    width: 100%;
    height: 100%;
}

.whatsapp-text {
    display: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-left: 10px;
    white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-text {
    display: inline-block;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }

    .whatsapp-float:hover {
        width: auto;
        padding: 0 15px;
    }

    .whatsapp-text {
        font-size: 0.85rem;
    }
}

