@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');

body {
    font-family: "Fjalla One", sans-serif;
    font-style: normal;
    margin: 0;
    background-color: #f0f0f0;
}

html {
    scroll-behavior: smooth;
}

header {
    position: fixed;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(255, 255, 255);
    padding: 15px 4vw;
    border-radius: 50px;
    border: 2px solid rgb(0, 0, 0);
    box-sizing: border-box;
}

.logo {
    font-size: 3rem;
    font-weight: bold;
    text-decoration: none;
    color: #000000;
}

nav {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgb(0, 0, 0), rgb(19, 18, 18));
    border-radius: 50px;
    padding: 8px 20px;
}

.nav-item {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    color: #5c5a5a;
    padding: 10px 15px;
    margin: 0 5px;
    border: 2px solid transparent;
    border-radius: 80px;
    transition: border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-item:hover,
.nav-item.active {
    border-color: rgb(172, 172, 172);
    color: #ffffff;
}

.contact-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    display: flex;
    align-items: center;
    padding: 10px 10px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1001;
}

.contact-fab:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}


/* ============================================
   MENU MOBILE - Botão toggle
   ============================================ */

.menu-toggle {
    display: none;
    background: none;
    border: 2px solid #252525;
    border-radius: 8px;
    padding: 8px 20px;
    font-family: "Fjalla One", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #302e2e;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background-color: #252525;
    color: #fff;
}

/* ============================================
   MENU MOBILE - Overlay
   ============================================ */

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1998;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ============================================
   MENU MOBILE - Painel
   ============================================ */

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    right: 20px;
    width: 280px;
    z-index: 1999;
    background: #ffffff;
    border: 1.5px solid #252525;
    border-radius: 20px;
    padding: 30px 25px;
    flex-direction: column;
    align-items: flex-end;
    transform: translateX(30px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
    display: flex;
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 25px;
    align-self: flex-end;
}

/* ============================================
   MENU MOBILE - Itens de navegação
   ============================================ */

.mobile-menu-items {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    gap: 5px;
    margin-bottom: 30px;
}

.mobile-nav-item {
    text-decoration: none;
    color: #302e2e;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 0;
    text-align: right;
    position: relative;
    transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    transform: scaleX(0);
    width: 100%;
    height: 1.5px;
    background-color: #252525;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: right;
}

.mobile-nav-item:hover::after,
.mobile-nav-item.active::after {
    transform: scaleX(1);
}

.mobile-nav-item:hover {
    color: #000;
}

/* ============================================
   MENU MOBILE - Redes sociais
   ============================================ */

.mobile-menu-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    align-self: center;
    width: 100%;
}

.social-link {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-size: 0.85rem;
    transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-link:hover {
    color: #000;
}

/* ============================================
   MENU MOBILE - Localização
   ============================================ */

.mobile-menu-location {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    align-self: center;
}

.mobile-menu-location:hover {
    color: #000;
}

@media (max-width: 1100px) {

    /* Header mobile */
    nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    header {
        padding: 12px 5vw;
    }

    .logo {
        font-size: 1.6rem;
    }
}


/* ═══════════════════════════════════
       HERO SECTION
    ═══════════════════════════════════ */

.service-hero {
    position: relative;
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 7vw, 7rem);
    background: linear-gradient(135deg, #0a3a66 0%, #1e5a96 25%, #2d7fbd 50%, #3a9fd6 75%, #2b6fa8 100%);
    color: #ffffff;
    overflow: hidden;
    margin-top: 30px;
}



.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.144) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.247) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    pointer-events: none;
}

.service-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    top: -100px;
    right: -150px;
    pointer-events: none;
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeUp 0.9s ease both;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
    color: #ffffff;
}

.hero-title {
    font-family: "Fjalla One", sans-serif;
    font-size: clamp(2.6rem, 4.5vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-title em {
    font-style: italic;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
}

.hero-desc {
    font-size: clamp(1rem, 1.15vw, 1.05rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2.5rem;
    background: #ffffff;
    color: #1a1a1a;
    font-family: "Fjalla One", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: fit-content;
}

.btn-hero:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.2);
}

.btn-hero svg {
    transition: transform 0.3s ease;
}

.btn-hero:hover svg {
    transform: translateX(4px);
}

.hero-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.hero-image {
    position: relative;
    animation: fadeUp 0.9s 0.2s ease both;
}

.hero-image-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    pointer-events: none;
}

/* ═══════════════════════════════════
       PAIN POINTS SECTION
    ═══════════════════════════════════ */

.pain-section {
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 7vw, 7rem);
    background: #ffffff;
    position: relative;
}

.pain-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(20, 18, 16, 0.05) 0%, transparent 70%);
    filter: blur(50px);
    top: -80px;
    left: -50px;
    pointer-events: none;
}

.pain-inner {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.section-header h2 {
    font-family: "Fjalla One", sans-serif;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: #1A1614;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: clamp(0.95rem, 1.1vw, 1rem);
    line-height: 1.7;
    color: #5A504A;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pain-card {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    padding: clamp(1.8rem, 2.5vw, 2.5rem);
    border-radius: 8px;
    border: 1.5px solid #686565;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.377);
    transition: all 0.4s ease;
    animation: fadeUp 0.9s ease both;
    position: relative;
    overflow: hidden;
}

.pain-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pain-card:nth-child(2) {
    animation-delay: 0.15s;
}

.pain-card:nth-child(3) {
    animation-delay: 0.2s;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #000000 0%, transparent 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.pain-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.pain-card:hover::before {
    transform: scaleX(1);
}

.pain-icon {
    width: 48px;
    height: 48px;
    background: transparent;
    border-radius: 50%;
    border: 1px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

.pain-icon:hover {
    background-color: #000000;
    color: #ffffff;
}

.pain-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1A1614;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.pain-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #222121;
}

/* ═══════════════════════════════════
       SERVIÇOS SECTION
    ═══════════════════════════════════ */

.services-section {
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 7vw, 7rem);
    background: #ffffff;
}

.services-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.service-main {
    margin-bottom: 4rem;
    animation: fadeUp 0.9s ease both;
}

.service-main-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.service-main-title {
    font-family: "Fjalla One", sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: #1A1614;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.service-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: #1a1a1a;
}

.service-main-text {
    font-size: 1rem;
    line-height: 1.85;
    color: #5A504A;
    margin-bottom: 1.5rem;
}

.service-main-text strong {
    color: #1A1614;
    font-weight: 600;
}

.service-image-small {
    border-radius: 8px;
    overflow: hidden;
}

.service-image-small img {
    width: 100%;
    height: auto;
    display: block;
}

/* Subserviços */
.subservices {
    margin-top: 3rem;
}

.subservices-title {
    font-family: "Fjalla One", sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 400;
    color: #1A1614;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
}

.subservices-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #1426c9 0%, transparent 100%);
}

.subservices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.subservice-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 30px;
    border: 1px solid #cbcdd1;
    transition: all 0.3s ease;
    animation: fadeUp 0.9s ease both;
}

.subservice-card:nth-child(1) {
    animation-delay: 0.1s;
}

.subservice-card:nth-child(2) {
    animation-delay: 0.15s;
}

.subservice-card:nth-child(3) {
    animation-delay: 0.2s;
}

.subservice-card:nth-child(4) {
    animation-delay: 0.25s;
}

.subservice-card:nth-child(5) {
    animation-delay: 0.3s;
}

.subservice-card:nth-child(6) {
    animation-delay: 0.35s;
}

.subservice-card:hover {
    background: #ffffff;
    border: 1px solid #000;
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.subservice-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1A1614;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.subservice-card h4::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #1a1a1a;
    border-radius: 50%;
    flex-shrink: 0;
}

.subservice-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #5A504A;
}

/* ═══════════════════════════════════
       PROCESSO SECTION
    ═══════════════════════════════════ */

.process-section {
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 7vw, 7rem);
    background: linear-gradient(135deg, #0a3a66 0%, #1e5a96 25%, #2d7fbd 50%, #3a9fd6 75%, #2b6fa8 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.116) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
    pointer-events: none;
}

.process-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.process-header h2 {
    font-family: "Fjalla One", sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 1rem;
}

.process-header p {
    font-size: clamp(0.95rem, 1.1vw, 1rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    animation: fadeUp 0.9s ease both;
}

.process-step:nth-child(1) {
    animation-delay: 0.1s;
}

.process-step:nth-child(2) {
    animation-delay: 0.15s;
}

.process-step:nth-child(3) {
    animation-delay: 0.2s;
}

.process-step:nth-child(4) {
    animation-delay: 0.25s;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Fjalla One", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.process-step p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* ═══════════════════════════════════
       FINAL CTA SECTION
    ═══════════════════════════════════ */

.final-cta {
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 7vw, 7rem);
    background: #ffffff;
    text-align: center;
}

.final-cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-family: "Fjalla One", sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: #1A1614;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.final-cta p {
    font-size: clamp(0.95rem, 1.1vw, 1rem);
    line-height: 1.8;
    color: #5A504A;
    margin-bottom: 2.5rem;
}

.btn-final-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.8rem;
    background: #1a1a1a;
    color: #ffffff;
    font-family: "Fjalla One", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-final-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.btn-final-cta svg {
    transition: transform 0.3s ease;
}

.btn-final-cta:hover svg {
    transform: translateX(4px);
}



/* ═══════════════════════════════════
       ANIMAÇÕES
    ═══════════════════════════════════ */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════
       RESPONSIVO
    ═══════════════════════════════════ */

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-main-header {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .header-nav {
        display: none;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .subservices-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════
     FOOTER
  ═══════════════════════════════════ */

.footer-main {
    position: relative;
    padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 7vw, 7rem) clamp(2rem, 4vw, 3rem);
    background: #ffffff;
    color: #1A1614;
    overflow: hidden;
}

/* Padrão de linhas de fundo */
.footer-lines-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, #e8e4df 1px, transparent 1px),
        linear-gradient(#e8e4df 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
    animation: linesMove 8s linear infinite;
    pointer-events: none;
}

@keyframes linesMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(40px, 40px);
    }
}

.footer-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(3rem, 5vw, 4rem);
    position: relative;
    z-index: 1;
}

/* Coluna 1: Brand (desalinhado para cima) */
.footer-col-1 {
    grid-column: 1 / 4;
    margin-top: -1.5rem;
}

.footer-brand {
    font-family: "Fjalla One", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #1A1614;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.footer-brand-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #5A504A;
    margin-bottom: 0.5rem;
}

.footer-brand-desc.small {
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.8;
}

/* Coluna 2: Links (centro) */
.footer-col-2 {
    grid-column: 5 / 7;
}

/* Coluna 3: Serviços (desalinhado para baixo) */
.footer-col-3 {
    grid-column: 7 / 9;
    margin-top: 1.5rem;
}

/* Coluna 4: Contato (desalinhado para cima) */
.footer-col-4 {
    grid-column: 9 / 13;
    margin-top: -1rem;
}

.footer-col-title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1A1614;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: #1a1a1a;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: #5A504A;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #3574fa;
    transform: translateX(4px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #5A504A;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-item:hover {
    color: #3574fa;
    transform: translateX(4px);
}

.contact-item:hover i {
    color: #3574fa;
}

.contact-item i {
    font-size: 1.1rem;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

/* Sociais desalinhadas */
.footer-social-section {
    max-width: 1400px;
    margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
    position: relative;
    z-index: 1;
    padding-left: 8%;
}

.social-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #5A504A;
    margin-bottom: 1rem;
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 18, 16, 0.06);
    color: #1a1a1a;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-whatsapp::before {
    background: #25D366;
}

.social-instagram::before {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-facebook::before {
    background: #1877F2;
}

.social-btn:hover {
    transform: translateY(-6px) scale(1.12);
    background: transparent;
    color: #ffffff;
}

.social-btn:hover::before {
    opacity: 1;
}

.social-btn i {
    position: relative;
    z-index: 1;
}

/* Divisor criativo */
.footer-divider {
    max-width: 1400px;
    margin: 0 auto clamp(2rem, 4vw, 2.5rem);
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #1a1a1a 25%, #1a1a1a 75%, transparent 100%);
    position: relative;
    z-index: 1;
}

/* Bottom */
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom-left {
    flex: 1;
    min-width: 250px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #5A504A;
    margin-bottom: 0.3rem;
}

.footer-oab {
    font-size: 0.75rem;
    color: #9A8F87;
    font-weight: 500;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-link-policy {
    font-size: 0.8rem;
    color: #5A504A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-policy:hover {
    color: #000000;
}

.footer-separator {
    color: #9A8F87;
}

/* ═══════════════════════════════════
     ANIMAÇÕES
  ═══════════════════════════════════ */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════
     RESPONSIVO
  ═══════════════════════════════════ */

@media (max-width: 1024px) {
    .footer-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col-1,
    .footer-col-2,
    .footer-col-3,
    .footer-col-4 {
        grid-column: auto;
        margin-top: 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }


}