/* ============================================
   GlowingUniverse v2 — Dark Immersive
   Totalmente diferente da v1
   ============================================ */

:root {
    --bg-deep: #0a1628;
    --bg-surface: #131f33;
    --bg-card: #1a2740;
    --bg-card-hover: #1f3050;
    --text-primary: #f0f0f0;
    --text-secondary: #9599a3;
    --text-muted: #5c606a;
    --border-subtle: rgba(255,255,255,0.06);
    --border-visible: rgba(255,255,255,0.10);

    --pool-blue: #0091FF;
    --pool-blue-glow: rgba(0,145,255,0.30);
    --pool-blue-soft: rgba(0,145,255,0.10);

    --ac-green: #00E676;
    --ac-green-glow: rgba(0,230,118,0.30);
    --ac-green-soft: rgba(0,230,118,0.10);

    --sr-orange: #FF8F00;
    --sr-orange-glow: rgba(255,143,0,0.30);
    --sr-orange-soft: rgba(255,143,0,0.10);
    --gold: #D4A017;
    --gold-glow: rgba(212,160,23,0.30);
    --gold-soft: rgba(212,160,23,0.08);

    --white-soft: rgba(255,255,255,0.04);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1.2);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg-deep);
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: var(--text-primary);
    background: var(--bg-deep);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ========== Menu Button (Floating) ========== */

/* ========== Top Header — Company Name ========== */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, rgba(10,22,40,0.95) 60%, rgba(10,22,40,0) 100%);
    backdrop-filter: blur(6px);
}

.company-name {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-decoration: none;
    background: linear-gradient(135deg, #D4A017 0%, #F0D060 40%, #E5B830 70%, #C8960C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(212,160,23,0.35));
    transition: all 0.3s ease;
}

.company-name:hover {
    filter: drop-shadow(0 2px 16px rgba(212,160,23,0.55));
    transform: translateY(-1px);
}
.menu-btn {
    position: fixed;
    top: 28px;
    right: 28px;
    z-index: 2000;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(26,39,64,0.85);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-visible);
    cursor: pointer;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all var(--transition);
}

.menu-btn:hover {
    background: rgba(31,48,80,0.9);
    border-color: rgba(255,255,255,0.18);
}

.menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========== Menu Overlay ========== */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1500;
    background: rgba(10,22,40,0.96);
    backdrop-filter: blur(30px);
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.menu-inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.menu-link {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}

.menu-link:hover {
    color: var(--text-primary);
    transform: scale(1.05);
}

.menu-cta {
    color: var(--sr-orange);
    font-size: 2rem;
}

.menu-cta:hover {
    color: var(--sr-orange);
    text-shadow: 0 0 40px var(--sr-orange-glow);
}

/* ========== HERO v2 ========== */
.hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    overflow: hidden;
}

.hero-v2-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    animation: orbFloat 12s ease-in-out infinite;
}

.orb-blue {
    width: 600px;
    height: 600px;
    background: var(--pool-blue);
    top: -200px;
    left: -150px;
    animation-delay: 0s;
}

.orb-orange {
    width: 400px;
    height: 400px;
    background: var(--sr-orange);
    bottom: -100px;
    right: -100px;
    animation-delay: -4s;
}

.orb-green {
    width: 300px;
    height: 300px;
    background: var(--ac-green);
    top: 50%;
    right: 20%;
    animation-delay: -8s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-v2-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

.hero-v2-left {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
}

.hero-eyebrow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ac-green);
    box-shadow: 0 0 12px var(--ac-green-glow);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-v2-left h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.h1-line {
    display: block;
    color: var(--text-primary);
}

.h1-accent {
    background: linear-gradient(135deg, #C8960C 0%, #F0D060 40%, #E5B830 70%, #D4A017 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-v2-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.7;
}

.hero-v2-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 8px;
}

/* Buttons v2 */
.btn-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

.btn-v2-primary {
    background: var(--sr-orange);
    color: #fff;
}

.btn-v2-primary:hover {
    background: #ff8122;
    box-shadow: 0 0 40px var(--sr-orange-glow);
    transform: translateY(-2px);
}

.btn-v2-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-visible);
}

.btn-v2-ghost:hover {
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.04);
}

.btn-v2-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 16px;
}

.hstat {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.hstat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.hstat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hstat-div {
    width: 1px;
    height: 32px;
    background: var(--border-visible);
}

/* Hero Right — Image */
.hero-v2-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
}

.hero-img-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.hero-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-img-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pool-blue-glow), transparent 60%);
    pointer-events: none;
}

.hero-floating-card {
    position: absolute;
    bottom: 24px;
    left: -20px;
    background: rgba(26,39,64,0.9);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-visible);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hfc-icon {
    font-size: 1.8rem;
}

.hero-floating-card strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 700;
}

.hero-floating-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: scrollBounce 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ========== SERVIÇOS v2 ========== */
.servicos-v2 {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.v2-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    border: 1px solid var(--border-visible);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.servicos-v2-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-primary);
}

.text-glow-blue {
    color: var(--pool-blue);
    text-shadow: 0 0 40px var(--pool-blue-glow);
}

.text-glow-orange {
    color: var(--sr-orange);
    text-shadow: 0 0 40px var(--sr-orange-glow);
}

.text-glow-green {
    color: var(--ac-green);
    text-shadow: 0 0 40px var(--ac-green-glow);
}

.text-glow-gold {
    color: var(--gold);
    text-shadow: 0 0 40px var(--gold-glow);
}

/* Showcase Cards */
.servicos-showcase {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.showcase-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.showcase-card:hover {
    border-color: var(--border-visible);
}

.showcase-card.reverse .sc-visual {
    order: 2;
}

.showcase-card.reverse .sc-body {
    order: 1;
}

.sc-visual {
    position: relative;
    height: 100%;
    min-height: 360px;
    overflow: hidden;
}

.sc-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.showcase-card:hover .sc-visual img {
    transform: scale(1.06);
}

.sc-visual-overlay {
    position: absolute;
    inset: 0;
}

.sc-piscinas .sc-visual-overlay {
    background: linear-gradient(to left, rgba(10,22,40,0.4), transparent 60%);
}

.sc-ar .sc-visual-overlay {
    background: linear-gradient(to left, rgba(10,22,40,0.4), transparent 60%);
}

.sc-serralheria .sc-visual-overlay {
    background: linear-gradient(to left, rgba(10,22,40,0.4), transparent 60%);
}

.sc-number {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255,255,255,0.12);
    line-height: 1;
}

.sc-body {
    padding: 40px 48px 40px 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

.reverse .sc-body {
    padding: 40px 0 40px 48px;
}

.sc-icon {
    font-size: 2.4rem;
}

.sc-body h3 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.sc-piscinas .sc-body h3 {
    color: var(--pool-blue);
    text-shadow: 0 0 30px var(--pool-blue-glow);
}

.sc-ar .sc-body h3 {
    color: var(--ac-green);
    text-shadow: 0 0 30px var(--ac-green-glow);
}

.sc-serralheria .sc-body h3 {
    color: var(--sr-orange);
    text-shadow: 0 0 30px var(--sr-orange-glow);
}

.sc-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 4px;
}

.sc-body > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.sc-list {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    margin: 8px 0;
}

.sc-list li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.sc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.sc-piscinas .sc-list li::before {
    background: var(--pool-blue);
    box-shadow: 0 0 8px var(--pool-blue-glow);
}

.sc-ar .sc-list li::before {
    background: var(--ac-green);
    box-shadow: 0 0 8px var(--ac-green-glow);
}

.sc-serralheria .sc-list li::before {
    background: var(--sr-orange);
    box-shadow: 0 0 8px var(--sr-orange-glow);
}

.sc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: 8px;
    transition: gap 0.3s ease;
}

.sc-link:hover {
    gap: 12px;
}

.sc-piscinas .sc-link {
    color: var(--pool-blue);
}

.sc-ar .sc-link {
    color: var(--ac-green);
}

.sc-serralheria .sc-link {
    color: var(--sr-orange);
}

/* ========== PORTEFÓLIO v2 ========== */
.portfolio-v2 {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-v2-header {
    text-align: center;
    margin-bottom: 56px;
}

.portfolio-v2-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-primary);
}

.portfolio-v2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    grid-auto-rows: 260px;
}

.pv2-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-subtle);
}

.pv2-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.pv2-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.pv2-item:hover img {
    transform: scale(1.08);
}

.pv2-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.6) 50%, transparent 100%);
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    transform: translateY(40%);
    transition: transform 0.4s ease;
}

.pv2-item:hover .pv2-caption {
    transform: translateY(0);
}

.pv2-cat {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.pv2-cat-pool,
.pv2-cat-ac,
.pv2-cat-sr {
    color: var(--gold);
}

.pv2-caption strong {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.pv2-caption span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== GALERIA v2 ========== */
.galeria-v2 {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.galeria-v2-header {
    text-align: center;
    margin-bottom: 56px;
}

.galeria-v2-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-primary);
}

.galeria-v2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.gv2-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-subtle);
}

.gv2-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gv2-item:hover img {
    transform: scale(1.08);
}

.gv2-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,22,40,0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gv2-item:hover .gv2-overlay {
    opacity: 1;
}

.gv2-zoom {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--sr-orange);
    color: #fff;
    font-size: 1.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
}

/* ========== CONTACTO v2 ========== */
.contacto-v2 {
    padding: 100px 40px 120px;
    max-width: 700px;
    margin: 0 auto;
}

.contacto-v2-header {
    text-align: center;
    margin-bottom: 48px;
}

.contacto-v2-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contacto-v2-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contacto-v2-form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--sr-orange);
    box-shadow: 0 0 0 3px var(--sr-orange-soft);
}

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

.form-submit {
    margin-top: 8px;
}

/* ========== FOOTER v2 ========== */
.footer-v2 {
    border-top: 1px solid var(--border-subtle);
    padding: 40px;
    text-align: center;
}

.footer-v2-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-v2-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.footer-v2-logo img {
    width: 32px;
    height: 32px;
}

.footer-v2-logo span {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.footer-v2 p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-v2-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 4px;
}

.footer-v2-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-v2-links a:hover {
    color: var(--sr-orange);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-v2-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-v2-desc {
        max-width: 100%;
    }

    .hero-v2-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-v2-right {
        order: -1;
    }

    .hero-img-frame {
        max-width: 380px;
    }

    .hero-floating-card {
        display: none;
    }

    .showcase-card,
    .showcase-card.reverse {
        grid-template-columns: 1fr;
    }

    .showcase-card.reverse .sc-visual {
        order: -1;
    }

    .showcase-card.reverse .sc-body {
        order: 1;
    }

    .sc-body {
        padding: 32px !important;
    }

    .sc-number {
        font-size: 3rem;
        top: 16px;
        left: 16px;
    }

    .portfolio-v2-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pv2-featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-v2 {
        padding: 100px 20px 60px;
    }

    .servicos-v2,
    .portfolio-v2,
    .galeria-v2,
    .contacto-v2 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-stats {
        gap: 12px;
    }

    .hstat-num {
        font-size: 1.2rem;
    }

    .portfolio-v2-grid {
        grid-template-columns: 1fr;
    }

    .pv2-featured {
        grid-column: span 1;
    }

    .contacto-v2-form {
        padding: 24px;
    }

    .menu-link {
        font-size: 1.6rem;
    }
}
