/* ================================================
   NARCISO FERNANDES — Design System
   Premium · Minimal · Award-Worthy
   ================================================ */

/* ---- Design Tokens ---- */
:root {
    /* Colors */
    --bg-primary: #FAFAF8;
    --bg-secondary: #F2F2F0;
    --bg-dark: #0D0D0D;
    --bg-card: #FFFFFF;

    --text-primary: #0D0D0D;
    --text-secondary: #6B6B6B;
    --text-tertiary: #999999;
    --text-inverse: #FFFFFF;

    --accent: #2A9D8F;
    --accent-light: #3DBFB0;
    --accent-dark: #1F7A6E;

    --border: #E8E8E6;
    --border-light: #F0F0EE;

    --gold: #C9A96E;

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'DM Serif Display', 'Bodoni Moda', Georgia, serif;

    /* Spacing */
    --section-padding: 140px;
    --container-width: 1280px;
    --container-padding: 40px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 100px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --duration: 0.5s;
    --duration-fast: 0.3s;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

body.loading {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-fast) var(--ease);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul,
ol {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ---- Typography ---- */
h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 400;
}

/* ---- Shared Components ---- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-title {
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--text-inverse);
    border: 1.5px solid var(--text-primary);
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
    color: var(--text-inverse);
    border: 1.5px solid var(--accent);
}

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(42, 157, 143, 0.3);
}

.btn-arrow {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    transition: all var(--duration-fast) var(--ease);
    flex-shrink: 0;
}

.btn:hover .btn-arrow {
    background: var(--text-inverse);
    border-color: var(--text-inverse);
    color: var(--text-primary);
}

/* ---- Scroll Animations ---- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* ================================================
   1. PRELOADER
   ================================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 300px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: preloaderFadeIn 0.8s var(--ease) 0.2s forwards;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-bar-inner {
    height: 100%;
    width: 0;
    background: var(--accent);
    border-radius: 2px;
    animation: preloaderProgress 1.8s var(--ease) 0.4s forwards;
}

@keyframes preloaderFadeIn {
    to {
        opacity: 1;
    }
}

@keyframes preloaderProgress {
    to {
        width: 100%;
    }
}

/* ================================================
   2. HEADER / NAV
   ================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--duration) var(--ease);
}

.header.scrolled {
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

.header-logo img {
    height: 70px;
    width: auto;
    transition: opacity var(--duration-fast) var(--ease);
}

.header-logo .logo-scrolled {
    display: none;
    height: 90px;
}

.header-logo .logo-default {
    display: block;
}

.header.scrolled .header-logo .logo-default {
    display: none;
}

.header.scrolled .header-logo .logo-scrolled {
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-nav a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-inverse);
    position: relative;
    padding: 4px 0;
    letter-spacing: 0.01em;
}

.header.scrolled .header-nav a {
    color: var(--text-primary);
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width var(--duration-fast) var(--ease);
}

.header-nav a:hover::after,
.header-nav a.active::after {
    width: 100%;
}

.header-cta {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 12px 28px;
    background: var(--text-primary);
    color: var(--text-inverse);
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--duration-fast) var(--ease);
    border: 1.5px solid var(--text-primary);
}

.header-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-1px);
}

.header-cta svg {
    transition: transform var(--duration-fast) var(--ease);
}

.header-cta:hover svg {
    transform: translateX(3px);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--duration-fast) var(--ease);
    transform-origin: center;
}

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

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

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

/* ================================================
   3. HERO SECTION
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg,
            rgba(13, 13, 13, 0.45) 0%,
            rgba(13, 13, 13, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    padding-bottom: 80px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(42, 157, 143, 0.15);
    border: 1px solid rgba(42, 157, 143, 0.3);
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-light);
    margin-bottom: 28px;
    opacity: 0;
    animation: heroFadeUp 0.8s var(--ease-out) 2.4s forwards;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero h1 {
    max-width: 720px;
    margin-bottom: 24px;
    color: var(--text-inverse);
    opacity: 0;
    animation: heroFadeUp 0.8s var(--ease-out) 2.6s forwards;
}

.hero-subtitle {
    max-width: 580px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    opacity: 0;
    animation: heroFadeUp 0.8s var(--ease-out) 2.8s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
    opacity: 0;
    animation: heroFadeUp 0.8s var(--ease-out) 3s forwards;
}

.hero-stats {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    background: rgba(13, 13, 13, 0.6);
    backdrop-filter: blur(12px);
    overflow: hidden;
    opacity: 0;
    animation: heroFadeUp 0.8s var(--ease-out) 3.2s forwards;
}

.hero-stat {
    padding: 24px 32px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat-number {
    font-size: 1.6rem;
    color: var(--text-inverse);
    line-height: 1.2;
    margin-bottom: 4px;
    font-weight: 600;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-stat-number {
    font-size: 1.6rem;
    color: var(--text-inverse);
    line-height: 1.2;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.02em;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================
   4. SERVIÇOS — Alternating Matte Cards
   ================================================ */
.servicos {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.servicos-header {
    text-align: center;
    margin-bottom: 72px;
}

.servicos-header .section-subtitle {
    margin: 0 auto;
}

/* Horizontal card row */
.servicos-row {
    display: flex;
    gap: 16px;
}

.servicos-carousel-nav {
    display: none;
}

/* Base Card Design */
.servico-card {
    flex: 1;
    border-radius: 20px;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
}

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

/* ---- Light Matte Card ---- */
.servico-card-light {
    background: #EFEFED;
    border: 1px solid #E2E2DF;
}

.servico-card-light h4 {
    color: #111111;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 14px;
}

.servico-card-light p {
    color: #555555;
    font-size: 0.86rem;
    line-height: 1.65;
    font-weight: 400;
}

.servico-card-light .servico-card-number {
    color: #888888;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
}

.servico-card-light .servico-card-btn {
    background: #111111;
    color: #FFFFFF;
}

/* ---- Soft Dark Matte Card ---- */
.servico-card-dark {
    background: #242528;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.servico-card-dark h4 {
    color: #FFFFFF;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 14px;
}

.servico-card-dark p {
    color: #B4B6BD;
    font-size: 0.86rem;
    line-height: 1.65;
    font-weight: 400;
}

.servico-card-dark .servico-card-number {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
}

.servico-card-dark .servico-card-btn {
    background: #FFFFFF;
    color: #111111;
}

/* ---- Card Footer ---- */
.servico-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(128, 128, 128, 0.12);
}

.servico-card-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
}

.servico-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.servico-card:hover .servico-card-btn {
    transform: scale(1.15);
}

/* ---- Scroll Reveal for Service Cards ---- */
.servico-reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.96);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.servico-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}


/* ================================================
   5. QUEM SOMOS
   ================================================ */
.sobre {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.sobre::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sobre-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sobre-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.sobre .section-label {
    justify-content: flex-start;
}

.sobre-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.01em;
    font-weight: 300;
    margin-bottom: 24px;
}

.sobre-text strong {
    color: var(--text-inverse);
    font-weight: 500;
}

.sobre-highlight {
    color: var(--accent-light);
    font-weight: 400;
}

.sobre-more-text {
    display: block;
}

.sobre-read-more-btn {
    display: none;
}

.sobre-year {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(13, 13, 13, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-pill);
}

.sobre-year-number {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--accent);
}

.sobre-year-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ================================================
   6. PROJETOS
   ================================================ */
.projetos {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.projetos-carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 32px;
}

.projetos-header-desc {
    font-size: 0.95rem;
    font-style: italic;
    color: rgba(13, 13, 13, 0.65);
    font-weight: 300;
    max-width: 380px;
    line-height: 1.65;
    border-left: 2px solid var(--accent);
    padding-left: 16px;
}

.projetos-mobile-desc {
    display: none;
}

/* Carousel Track & Wrapper */
.projetos-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 24px;
}

.projetos-carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 4px 16px;
}

.projetos-carousel-track::-webkit-scrollbar {
    display: none;
}

.index-carousel-card {
    flex: 0 0 calc(25% - 18px);
    min-width: 270px;
    aspect-ratio: 3 / 4;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    display: block;
}

.index-carousel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.index-carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--ease-out);
}

.index-carousel-card:hover img {
    transform: scale(1.06);
}

.index-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 18px 18px;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 18, 14, 0.4) 40%, rgba(8, 18, 14, 0.88) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 4px;
}

.index-card-title {
    color: #FFFFFF;
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    font-weight: 600;
    font-family: var(--font-body);
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.index-card-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.84rem;
    font-weight: 400;
}

/* Footer: CTA + Arrow Nav */
.projetos-carousel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    gap: 20px;
}

.index-projetos-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: #08120E;
    color: #FFFFFF;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s var(--ease);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(8, 18, 14, 0.15);
}

.index-projetos-pill-btn:hover {
    background: var(--accent);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(42, 157, 143, 0.3);
}

.index-projetos-pill-btn svg {
    transition: transform 0.25s var(--ease);
}

.index-projetos-pill-btn:hover svg {
    transform: translateX(4px);
}

.projetos-carousel-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.carousel-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #08120E;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.carousel-nav-btn:hover {
    background: #08120E;
    color: #FFFFFF;
    border-color: #08120E;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .index-carousel-card {
        flex: 0 0 calc(33.333% - 16px);
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .projetos-carousel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 28px;
    }

    .projetos-header-right {
        display: block;
        width: 100%;
    }

    .projetos-header-desc {
        max-width: 100%;
        margin-top: 4px;
        border-left: 2px solid var(--accent);
        padding-left: 14px;
    }

    .index-carousel-card {
        flex: 0 0 260px;
        aspect-ratio: 3 / 4;
        border-radius: 20px;
    }

    .projetos-carousel-track {
        gap: 16px;
    }
}

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

.projeto-overlay-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(42, 157, 143, 0.9);
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
    margin-bottom: 12px;
    width: fit-content;
}

.projeto-overlay h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.projeto-overlay-details {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    margin-bottom: 12px;
}

.projeto-overlay-details span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.projeto-overlay p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Bottom bar under each project (visible by default) */
.projeto-info {
    padding: 20px 0;
}

.projeto-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.projeto-info-meta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.projeto-info-meta span {
    font-size: 0.82rem;
    color: var(--text-tertiary);
}

.projeto-info-meta span::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text-tertiary);
    margin-right: 8px;
    vertical-align: middle;
}

.projeto-info-meta span:first-child::before {
    display: none;
}

.projetos-cta {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}

/* ================================================
   7. DEPOIMENTOS
   ================================================ */
.depoimentos {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.depoimentos-header {
    text-align: center;
    margin-bottom: 64px;
}

.depoimentos-header .section-label {
    justify-content: center;
}

.depoimentos-header .section-subtitle {
    margin: 0 auto;
}

/* Static Depoimentos Grid */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.depoimento-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all var(--duration-fast) var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.depoimento-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.depoimento-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}

.depoimento-stars svg {
    color: var(--gold);
}

.depoimento-quote {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
    opacity: 0.3;
}

.depoimento-texto {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-style: italic;
    flex: 1;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
}

.depoimento-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.depoimento-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
}

.depoimento-info span {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* ================================================
   8. CONTATO
   ================================================ */
.contato {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contato-info-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.contato-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contato-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(42, 157, 143, 0.08);
    color: var(--accent);
    flex-shrink: 0;
}

.contato-info-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.contato-info-item p,
.contato-info-item a {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contato-info-item a:hover {
    color: var(--accent);
}

.contato-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--text-primary);
    color: var(--text-inverse);
    border: 1.5px solid var(--text-primary);
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 40px;
    transition: all var(--duration-fast) var(--ease);
}

.contato-whatsapp:hover {
    background: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
}

/* Contact right side — Map/Visual */
.contato-visual {
    background: var(--bg-dark);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contato-visual::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.contato-visual-logo {
    width: 300px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.contato-visual h3 {
    color: var(--text-inverse);
    font-size: 1.6rem;
    margin-bottom: 16px;
    line-height: 1.3;
}

.contato-visual p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
    line-height: 1.7;
}

.contato-visual-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.contato-visual-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}

/* ================================================
   9. FOOTER
   ================================================ */
.footer {
    background: var(--bg-dark);
    padding: 80px 0 0;
    color: var(--text-inverse);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-top: 20px;
    max-width: 320px;
}

.footer-brand-logo {
    height: 70px;
    width: auto;
    opacity: 0.9;
}

.footer-col h4 {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 0;
    transition: color var(--duration-fast) var(--ease);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-col p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    padding: 0;
    transition: all var(--duration-fast) var(--ease);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.footer-divider {
    display: none;
}

.footer-mobile-social {
    display: none;
}

.footer-bottom {
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
    color: var(--accent);
    font-weight: 500;
}

.footer-bottom a:hover {
    color: var(--accent-light);
}

/* ================================================
   FLOATING WHATSAPP BUTTON
   ================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 900;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--duration-fast) var(--ease);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

/* ================================================
   MOBILE MENU (Global Hidden)
   ================================================ */
.mobile-menu {
    display: none;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 100px;
        --container-padding: 32px;
    }

    .header-nav {
        gap: 24px;
    }

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

    .servicos-row {
        flex-wrap: wrap;
    }

    .servico-card {
        flex: 1 1 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }

    .projetos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .depoimentos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

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

    .hero-stats {
        flex-wrap: wrap;
    }

    .hero-stat {
        flex: 1 1 45%;
    }

    .hero-stat:nth-child(2) {
        border-right: none;
    }

    .hero-stat:nth-child(1),
    .hero-stat:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
        --container-padding: 24px;
    }

    /* Header mobile */
    .header-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 9999;
        background: #FFFFFF;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 24px;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--duration) var(--ease), visibility var(--duration) var(--ease);
        overflow-y: auto;
    }

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-close {
        position: absolute;
        top: 28px;
        right: 28px;
        background: none;
        border: none;
        color: #0D0D0D;
        cursor: pointer;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform var(--duration-fast) var(--ease), opacity var(--duration-fast) var(--ease);
    }

    .mobile-menu-close:hover {
        opacity: 0.6;
        transform: rotate(90deg);
    }

    .mobile-menu-inner {
        width: 100%;
        max-width: 360px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 36px;
        margin: auto 0;
    }

    .mobile-menu-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .mobile-menu-nav .mobile-link {
        font-family: var(--font-body);
        font-size: 1.45rem;
        font-weight: 600;
        color: #0D0D0D;
        letter-spacing: -0.01em;
        transition: opacity var(--duration-fast) var(--ease);
    }

    .mobile-menu-nav .mobile-link:hover {
        opacity: 0.5;
    }

    .mobile-menu-divider {
        width: 100%;
        max-width: 240px;
        height: 1px;
        background: #E8E8E6;
    }

    .mobile-menu-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        width: 100%;
    }

    .mobile-menu-phrase {
        font-family: var(--font-body);
        font-size: 0.88rem;
        font-weight: 400;
        color: #6B6B6B;
        line-height: 1.6;
        max-width: 300px;
        margin: 0 auto;
    }

    .mobile-menu-brand {
        font-family: var(--font-display);
        font-size: 1.35rem;
        font-weight: 400;
        color: #0D0D0D;
        letter-spacing: -0.01em;
    }

    .mobile-menu-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 36px;
        background: #0D0D0D;
        color: #FFFFFF;
        font-family: var(--font-body);
        font-size: 0.88rem;
        font-weight: 600;
        letter-spacing: 0.02em;
        border-radius: 100px;
        border: 1.5px solid #0D0D0D;
        transition: all var(--duration-fast) var(--ease);
        margin-top: 8px;
        width: 100%;
        max-width: 280px;
    }

    .mobile-menu-cta:hover {
        background: #FFFFFF;
        color: #0D0D0D;
        border-color: #0D0D0D;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    /* Hero */
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding-bottom: 40px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    /* Badge — move below header, shrink */
    .hero-badge {
        margin-top: 72px;
        font-size: 0.65rem;
        padding: 6px 14px;
        gap: 6px;
        letter-spacing: 0.08em;
        margin-bottom: 20px;
    }

    .hero-badge-dot {
        width: 5px;
        height: 5px;
    }

    /* CTA — compact */
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 36px;
    }

    .hero-actions .btn {
        padding: 12px 24px;
        font-size: 0.82rem;
    }

    .hero-actions .btn-arrow {
        width: 30px;
        height: 30px;
    }

    /* Stats — compact */
    .hero-stats {
        flex-direction: column;
    }

    .hero-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 14px 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        text-align: left;
    }

    .hero-stat:last-child {
        border-bottom: none;
    }

    .hero-stat-number {
        font-size: 1.2rem;
        min-width: 50px;
    }

    .hero-stat-label {
        font-size: 0.72rem;
    }
}

/* Short Viewports (Laptops 768p / DevTools / Small Heights) */
@media (max-height: 800px) and (min-width: 769px) {
    .hero-content {
        padding-bottom: 36px;
    }

    .hero-badge {
        margin-bottom: 16px;
    }

    .hero h1 {
        font-size: clamp(2rem, 3.8vw, 3.2rem);
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 22px;
        line-height: 1.6;
    }

    .hero-actions {
        margin-bottom: 32px;
    }

    .hero-stat {
        padding: 14px 18px;
    }
}

@media (max-height: 680px) and (min-width: 769px) {
    .hero {
        min-height: auto;
    }

    .hero-content {
        padding-bottom: 16px;
    }

    .hero-badge {
        margin-bottom: 10px;
    }

    .hero h1 {
        font-size: clamp(1.65rem, 3.5vw, 2.4rem);
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 0.88rem;
        margin-bottom: 16px;
        line-height: 1.5;
    }

    .hero-actions {
        margin-bottom: 20px;
    }

    .hero-actions .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .hero-stat {
        padding: 10px 12px;
    }

    .hero-stat-number {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {

    /* Quem somos mobile toggle */
    .sobre-more-text {
        display: none;
    }

    .sobre-more-text.active {
        display: block;
        animation: sobreFadeIn 0.35s var(--ease-out);
    }

    .sobre-read-more-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.4);
        color: #FFFFFF;
        padding: 10px 24px;
        border-radius: var(--radius-pill);
        font-size: 0.85rem;
        font-weight: 500;
        cursor: pointer;
        transition: all var(--duration-fast) var(--ease);
        margin: 16px auto 0 auto;
        width: fit-content;
    }

    .sobre-read-more-btn:hover,
    .sobre-read-more-btn:focus,
    .sobre-read-more-btn.active {
        border-color: #FFFFFF;
        color: #FFFFFF;
        background: rgba(255, 255, 255, 0.1);
    }

    .sobre-read-more-btn svg {
        transition: transform var(--duration-fast) var(--ease);
    }

    .sobre-read-more-btn.active svg {
        transform: rotate(180deg);
    }

    @keyframes sobreFadeIn {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Services Carousel Mobile */
    .servicos-row {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 8px 0 16px 0;
        align-items: stretch;
        touch-action: pan-x pan-y;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .servicos-row::-webkit-scrollbar {
        display: none;
    }

    .servico-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 290px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        overflow: hidden;
    }

    .servico-reveal,
    .servico-card:hover {
        transform: none !important;
        opacity: 1 !important;
    }

    .servicos-carousel-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-top: 32px;
        width: 100%;
    }

    .servicos-nav-btn {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #FFFFFF;
        border: 1px solid var(--border);
        color: var(--text-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        transition: all var(--duration-fast) var(--ease);
        flex-shrink: 0;
    }

    .servicos-nav-btn:hover,
    .servicos-nav-btn:active {
        background: var(--text-primary);
        color: #FFFFFF;
        border-color: var(--text-primary);
    }

    .servicos-nav-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
        background: #FFFFFF;
        color: var(--text-primary);
        border-color: var(--border);
    }

    .servicos-indicator-wrapper {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 8px 18px;
        background: #FFFFFF;
        border: 1px solid var(--border);
        border-radius: var(--radius-pill);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    }

    .servicos-indicator-num {
        font-family: var(--font-body);
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        color: var(--text-primary);
        min-width: 20px;
        text-align: center;
    }

    .servicos-indicator-num.total {
        font-weight: 500;
        color: var(--text-tertiary);
    }

    .servicos-indicator-track {
        width: 70px;
        height: 3px;
        background: var(--border);
        border-radius: 100px;
        overflow: hidden;
        position: relative;
    }

    .servicos-indicator-bar {
        height: 100%;
        width: 20%;
        background: var(--text-primary);
        border-radius: 100px;
        transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Projects */
    .projetos-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

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

    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .projeto-overlay {
        opacity: 1;
    }

    /* Contact */
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Footer Mobile (Matching Reference) */
    .footer {
        padding: 56px 0 40px 0;
        background: #08120E;
    }

    .footer-grid {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 32px;
        padding-bottom: 32px;
        border-bottom: none;
    }

    .footer-brand-logo {
        height: 60px;
        margin-bottom: 20px;
    }

    .footer-brand p {
        font-size: 0.9rem;
        line-height: 1.65;
        color: rgba(255, 255, 255, 0.65);
        margin-top: 0;
        max-width: 100%;
    }

    .footer-col-nav,
    .footer-col-social {
        display: none;
    }

    .footer-col-contato {
        width: 100%;
    }

    .footer-contato-label {
        font-size: 0.8rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.12em !important;
        color: var(--accent-light) !important;
        margin-bottom: 18px !important;
        text-transform: uppercase;
    }

    .footer-contato-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer-contact-link,
    .footer-contact-location {
        font-size: 0.92rem;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color var(--duration-fast) var(--ease);
    }

    .footer-contact-location {
        font-weight: 400;
    }

    .footer-contact-link:hover {
        color: #FFFFFF;
    }

    .footer-divider {
        display: block;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
        margin: 24px 0 32px 0;
    }

    .footer-bottom {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .footer-bottom p {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.45);
        line-height: 1.5;
    }

    .footer-credit {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.45);
    }

    .footer-credit a {
        color: rgba(255, 255, 255, 0.85);
        font-weight: 600;
        text-decoration: none;
    }

    .footer-mobile-social {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-top: 24px;
    }

    .footer-mobile-social a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.18);
        color: rgba(255, 255, 255, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--duration-fast) var(--ease);
    }

    .footer-mobile-social a:hover,
    .footer-mobile-social a:active {
        border-color: var(--accent);
        background: rgba(42, 157, 143, 0.15);
        color: #FFFFFF;
    }



}

@media (max-width: 480px) {
    :root {
        --container-padding: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .servico-card {
        padding: 24px 20px;
    }

    .contato-visual {
        padding: 40px 28px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}