/* ======== VARIAVEIS DO TEMA E RESET ======== */
:root {
    --bg-color: #0d0d0f;
    --text-main: #fcfcfc;
    --text-muted: #9ca3af;
    --accent: #ff3366;
    --font-primary: 'Outfit', -apple-system, sans-serif;
    --glass-bg: rgba(20, 20, 25, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ======== TYPOGRAPHY ======== */
h1,
h2,
h3,
h4,
h5 {
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    line-height: 1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    max-width: 560px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 40px;
}

/* ======== LAYOUT ======== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4vw;
}

/* ======== HEADER / NAVBAR ======== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 4vw;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: all 0.4s ease;
}

header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 14px 4vw;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.brand span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent);
}

/* ======== HERO LEGADO (mantido para project.php etc.) ======== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0.12;
    top: 20%;
    left: -10%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

/* ======== PORTFOLIO GRID LEGADO ======== */
.portfolio-section {
    padding: 100px 0;
}

.filters {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 9px 22px;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--accent);
    color: var(--text-main);
}

.filter-btn.active {
    background: rgba(255, 51, 102, 0.1);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* ======== CARDS LEGADO ======== */
.project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    cursor: pointer;
    aspect-ratio: 4/5;
}

.project-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 768px) {
    .project-card.featured {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: auto;
        min-height: 400px;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.project-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover .project-img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 8px;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.project-title {
    font-size: 1.5rem;
    color: white;
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s ease;
}

.project-card:hover .project-category,
.project-card:hover .project-title {
    transform: translateY(0);
    opacity: 1;
}

/* ======== REVEAL ANIMATION ======== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ======== FOOTER ======== */
footer {
    padding: 60px 4vw 40px;
    border-top: 1px solid var(--glass-border);
    margin-top: 60px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    color: var(--text-muted);
    font-size: 24px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
}

/* ======== SINGLE PROJECT ======== */
.project-header {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}

.project-header-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    z-index: -2;
    width: 100%;
    height: 100%;
}

.project-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-color) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

.project-meta-info {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

.meta-item span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.meta-item strong {
    font-size: 1.1rem;
}

.project-content {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: #d1d5db;
}

.project-content p {
    margin-bottom: 24px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin: 60px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.video-container iframe,
.video-container video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
    }

    .nav-links.nav-active {
        right: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.toggle span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 5px);
    }

    .mobile-menu-btn.toggle span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.toggle span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -5px);
    }
}

/* ================================================================
   HERO MODULAR — Nova estrutura completa
================================================================ */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    /* hero-inner cresce, hero-metrics fica no fundo */
    overflow: hidden;
    background: var(--bg-color);
}

/* Fundo / Banner */
.hero-banner {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-banner-gradient-bg {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 60% 50% at 18% 40%, rgba(255, 51, 102, 0.20) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 80% 60%, rgba(139, 92, 246, 0.10) 0%, transparent 60%),
        var(--bg-color);
}

.hero-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    z-index: 1;
    pointer-events: none;
}

/* Conteudo principal */
.hero-inner {
    position: relative;
    z-index: 2;
    flex: 1;
    /* cresce para ocupar espaco disponivel */
    display: flex;
    align-items: flex-end;
    /* texto no rodape do hero */
    padding-top: 130px;
    padding-bottom: 80px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 4vw;
    padding-right: 4vw;
    box-sizing: border-box;
}

/* Texto */
.hero-text {
    max-width: 720px;
    position: relative;
    z-index: 3;
}

.text-inside-left {
    align-self: flex-end;
    text-align: left;
    margin-right: auto;
}

.text-inside-center {
    align-self: flex-end;
    text-align: center;
    margin: 0 auto;
}

.text-inside-right {
    align-self: flex-end;
    text-align: right;
    margin-left: auto;
}

.text-below-left {
    align-self: flex-end;
    text-align: left;
    margin-right: auto;
}

.text-below-center {
    align-self: flex-end;
    text-align: center;
    margin: 0 auto;
}

/* Foto */
.hero-photo {
    position: absolute;
    z-index: 3;
    flex-shrink: 0;
}

.hero-photo img {
    border-radius: 50%;
    border: 3px solid var(--accent);
    object-fit: cover;
    width: 130px;
    height: 130px;
    display: block;
}

.photo-inside-left {
    bottom: 80px;
    left: 4vw;
}

.photo-inside-center {
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
}

.photo-inside-right {
    bottom: 80px;
    right: 4vw;
}

.photo-edge-left {
    bottom: -55px;
    left: 4vw;
}

.photo-edge-center {
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%);
}

.photo-edge-right {
    bottom: -55px;
    right: 4vw;
}

/* Eyebrow */
.hero-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--accent);
    margin-bottom: 14px;
    font-weight: 700;
}

/* Botoes do hero */
.hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 36px;
    align-items: center;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--accent);
    color: white;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 51, 102, 0.35);
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.85);
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-hero-ghost:hover {
    border-color: var(--accent);
    color: white;
}

/* Metricas — barra glassmorfismo no fundo do hero */
.hero-metrics {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metrics-row {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4vw;
    box-sizing: border-box;
}

.metric-item {
    flex: 1;
    text-align: center;
    padding: 24px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.metric-value {
    display: block;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -0.04em;
}

.metric-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 3px;
}

.metric-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 16px 0;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hero-inner {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-section {
        min-height: 78vh;
    }

    .metrics-row {
        flex-wrap: wrap;
    }

    .metric-item {
        flex: 1 1 44%;
        padding: 14px 8px;
    }

    .metric-divider {
        display: none;
    }
}

/* Presets de Layout */
/* Layout 2: centralizado */
.hero-layout-2 .hero-inner {
    justify-content: center;
}

.hero-layout-2 .hero-text {
    text-align: center;
    margin: 0 auto;
}

.hero-layout-2 .hero-cta-row {
    justify-content: center;
}

/* Layout 3: foto grande a direita */
.hero-layout-3 .hero-inner {
    justify-content: space-between;
    align-items: flex-end;
}

.hero-layout-3 .hero-photo {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    width: 200px;
    height: 200px;
    align-self: flex-end;
}

.hero-layout-3 .hero-photo img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Layout 4: foto ao lado */
.hero-layout-4 .hero-inner {
    align-items: center;
    gap: 60px;
    padding-bottom: 100px;
}

.hero-layout-4 .hero-photo {
    position: relative;
    bottom: auto;
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    align-self: auto;
}

.hero-layout-4 .hero-photo img {
    width: 100%;
    height: 100%;
}

/* Layout 5: foto acima centralizado */
.hero-layout-5 .hero-inner {
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 80px;
}

.hero-layout-5 .hero-photo {
    position: relative;
    bottom: auto;
    width: 140px;
    height: 140px;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.hero-layout-5 .hero-photo img {
    width: 100%;
    height: 100%;
}

.hero-layout-5 .hero-text {
    text-align: center;
}

.hero-layout-5 .hero-cta-row {
    justify-content: center;
}

@media (max-width: 768px) {

    .hero-layout-3 .hero-photo,
    .hero-layout-4 .hero-photo {
        display: none;
    }

    .hero-layout-4 .hero-inner {
        padding-bottom: 60px;
    }
}

/* ================================================================
   BLOCOS DA HOME
================================================================ */
.home-block {
    padding: 90px 0;
}

.block-header {
    margin-bottom: 48px;
}

.block-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: white;
    margin-bottom: 10px;
}

.block-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
}

/* Work Cards */
.works-grid {
    display: grid;
    gap: 24px;
}

.works-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.works-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.works-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
    .works-grid.cols-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 860px) {

    .works-grid.cols-3,
    .works-grid.cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .works-grid {
        grid-template-columns: 1fr !important;
    }
}

.work-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
}

.work-card.is-featured {
    border-color: rgba(255, 51, 102, 0.35);
}

.wc-thumb-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #111;
}

.wc-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-card:hover .wc-thumb {
    transform: scale(1.05);
}

.wc-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #1a1a1f, #222);
    color: rgba(255, 255, 255, 0.2);
    font-size: 2rem;
    width: 100%;
    height: 100%;
}

.wc-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-card:hover .wc-overlay {
    opacity: 1;
}

.wc-play-icon {
    font-size: 3rem;
    color: white;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.6));
    transform: scale(0.8);
    transition: transform 0.25s ease;
}

.work-card:hover .wc-play-icon {
    transform: scale(1);
}

.wc-featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.wc-type-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.85);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.wc-info {
    padding: 14px 16px 16px;
}

.wc-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.wc-channel,
.wc-views,
.wc-date {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Faixa de Clientes */
.block-clients-strip {
    overflow: hidden;
    padding: 32px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.clients-strip-mask {
    display: flex;
    overflow: hidden;
    position: relative;
}

.clients-strip-mask::before,
.clients-strip-mask::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 120px;
    z-index: 2;
}

.clients-strip-mask::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.clients-strip-mask::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.clients-strip {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-left: 40px;
    animation: stripSlide 30s linear infinite;
    white-space: nowrap;
}

.clients-strip:hover {
    animation-play-state: paused;
}

@keyframes stripSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-33.33% - 13.33px));
    }
}

.c-strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    padding: 8px 18px;
    border-radius: 50px;
    transition: all 0.25s;
    border: 1px solid transparent;
}

.c-strip-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.04);
}

.c-strip-item img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.c-strip-avatar-ph {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
}

.c-strip-info {
    display: flex;
    flex-direction: column;
}

.c-strip-info strong {
    font-size: 14px;
    color: white;
    font-weight: 600;
}

.c-strip-info span {
    font-size: 11px;
    color: var(--text-muted);
}

/* Metricas em Cards */
.block-metrics {
    background: rgba(255, 255, 255, 0.015);
}

.metrics-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .metrics-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .metrics-cards-row {
        grid-template-columns: 1fr;
    }
}

.metric-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}

.metric-card:hover {
    border-color: rgba(255, 51, 102, 0.4);
    transform: translateY(-3px);
}

.metric-card-value {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 10px;
}

.metric-card-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* Skills */
.block-skills {
    padding: 80px 0;
}

.skills-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.skill-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--chip-color, white);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    cursor: default;
}

.skill-chip i {
    font-size: 16px;
}

.skill-chip:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-2px);
}

/* Sobre Mim */
.block-about {
    padding: 90px 0;
}

.about-inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-photo img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.about-text {
    flex: 1;
}

.about-body {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.9;
    max-width: 700px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .about-inner {
        flex-direction: column;
        gap: 30px;
    }

    .about-photo img {
        width: 100%;
        height: auto;
    }
}

/* CTA */
.block-cta {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, rgba(255, 51, 102, 0.08), transparent 70%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: white;
    margin-bottom: 16px;
}

.cta-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
}

.cta-social {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-social a {
    font-size: 22px;
    color: var(--text-muted);
    transition: color 0.2s, transform 0.2s;
}

.cta-social a:hover {
    color: var(--accent);
    transform: scale(1.15);
}

/* Footer atualizado */
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    flex-wrap: wrap;
    gap: 16px;
}

/* Load More */
.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-load-more:hover {
    border-color: var(--accent);
    color: var(--accent);
}