/* ============================================
   FOX SOFTWARE - Futuristic Website Styles
   Colors: Black, White, Neon Green (#39ff14)
   ============================================ */

:root {
    --neon: #39ff14;
    --neon-dark: #2bcc10;
    --neon-glow: rgba(57, 255, 20, 0.4);
    --neon-subtle: rgba(57, 255, 20, 0.1);
    --black: #000000;
    --dark: #0a0a0a;
    --dark-2: #111111;
    --dark-3: #1a1a1a;
    --dark-card: #0d0d0d;
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #cccccc;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Exo 2', 'Rajdhani', sans-serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--neon) var(--dark);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--neon);
    border-radius: 4px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============= PARTICLES ============= */

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--neon);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* ============= NAVIGATION ============= */

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
    background: transparent;
}

#navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(57, 255, 20, 0.15);
    box-shadow: 0 4px 30px rgba(57, 255, 20, 0.1);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--neon);
    box-shadow: 0 0 15px var(--neon-glow);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.neon {
    color: var(--neon);
    text-shadow: 0 0 10px var(--neon-glow), 0 0 20px var(--neon-glow);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon);
    box-shadow: 0 0 10px var(--neon-glow);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--neon);
    text-shadow: 0 0 10px var(--neon-glow);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--neon);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px var(--neon-glow);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============= HERO SECTION ============= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(57, 255, 20, 0.03) 0%, transparent 70%);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(0deg); }
    100% { transform: perspective(500px) rotateX(0deg) translateY(-60px); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 20px;
}

.hero-logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.hero-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--neon);
    box-shadow: 0 0 40px var(--neon-glow), 0 0 80px rgba(57, 255, 20, 0.2);
    animation: logoPulse 3s ease-in-out infinite;
}

.glow-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid transparent;
    border-top-color: var(--neon);
    border-radius: 50%;
    animation: ringRotate 3s linear infinite;
}

@keyframes ringRotate {
    100% { transform: rotate(360deg); }
}

@keyframes logoPulse {
    0%, 100% { box-shadow: 0 0 40px var(--neon-glow), 0 0 80px rgba(57, 255, 20, 0.2); }
    50% { box-shadow: 0 0 60px var(--neon-glow), 0 0 120px rgba(57, 255, 20, 0.3); }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 8px;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
}

/* Glitch Effect */
.glitch {
    position: relative;
    animation: glitchMain 5s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    color: var(--neon);
    z-index: -1;
    animation: glitch1 3s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
    color: #00ffff;
    z-index: -2;
    animation: glitch2 3s infinite;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch1 {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(5px, -3px); }
    94% { transform: translate(-5px, 3px); }
    96% { transform: translate(3px, 1px); }
    98% { transform: translate(-3px, -1px); }
}

@keyframes glitch2 {
    0%, 90%, 100% { transform: translate(0); }
    91% { transform: translate(-5px, 3px); }
    93% { transform: translate(5px, -3px); }
    95% { transform: translate(-3px, -1px); }
    97% { transform: translate(3px, 1px); }
}

@keyframes glitchMain {
    0%, 90%, 100% { text-shadow: none; }
    92% { text-shadow: 2px 0 var(--neon), -2px 0 #00ffff; }
    94% { text-shadow: -2px 0 var(--neon), 2px 0 #00ffff; }
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--gray-light);
    letter-spacing: 3px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 35px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-neon {
    background: var(--neon);
    color: var(--black);
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    box-shadow: 0 0 20px var(--neon-glow);
}

.btn-neon:hover {
    background: var(--white);
    box-shadow: 0 0 40px var(--neon-glow), 0 0 80px rgba(57, 255, 20, 0.2);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--neon);
    border: 2px solid var(--neon);
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.btn-outline:hover {
    background: var(--neon);
    color: var(--black);
    box-shadow: 0 0 30px var(--neon-glow);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--neon);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--neon);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

/* ============= SECTIONS ============= */

.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-dark {
    background: var(--dark-2);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    font-family: 'Courier New', monospace;
    color: var(--neon);
    font-size: 0.85rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
    opacity: 0.7;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.title-line {
    width: 80px;
    height: 3px;
    background: var(--neon);
    margin: 20px auto 0;
    box-shadow: 0 0 10px var(--neon-glow);
    position: relative;
}

.title-line::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--neon);
    border-radius: 50%;
    top: -3.5px;
    left: -5px;
    box-shadow: 0 0 10px var(--neon-glow);
    animation: dotMove 3s ease-in-out infinite;
}

@keyframes dotMove {
    0%, 100% { left: -5px; }
    50% { left: calc(100% - 5px); }
}

/* ============= SERVICES ============= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 340px));
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: var(--dark-card);
    border: 1px solid rgba(57, 255, 20, 0.1);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon);
    box-shadow: 0 20px 60px rgba(57, 255, 20, 0.15);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(57, 255, 20, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 1;
}

.card-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover .card-border {
    opacity: 1;
}

.service-img-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(40%) brightness(0.7);
}

.service-card:hover .service-img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(0.9);
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, var(--dark-card));
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--dark);
    border: 2px solid var(--neon);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--neon);
    margin: -30px auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px var(--neon-glow);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--neon);
    color: var(--black);
    transform: rotate(10deg) scale(1.1);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    padding: 0 25px;
    margin-bottom: 15px;
    color: var(--white);
}

.service-card > p {
    color: var(--gray);
    font-size: 0.9rem;
    padding: 0 25px;
    text-align: center;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0 25px;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--gray-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.service-features li i {
    color: var(--neon);
    font-size: 0.75rem;
}

.btn-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 25px;
    text-decoration: none;
    color: var(--neon);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-top: 1px solid rgba(57, 255, 20, 0.1);
    transition: all 0.4s ease;
}

.btn-card:hover {
    background: var(--neon);
    color: var(--black);
}

.btn-card i {
    transition: transform 0.3s ease;
}

.btn-card:hover i {
    transform: translateX(5px);
}

/* ============= STATS ============= */

.stats-section {
    padding: 80px 0;
    background: var(--dark-2);
    border-top: 1px solid rgba(57, 255, 20, 0.1);
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.stat-item {
    text-align: center;
}

/* ============= PORTFOLIO BANNER ============= */

.portfolio-banner {
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.06), rgba(57, 255, 20, 0.02));
    border-top: 1px solid rgba(57, 255, 20, 0.15);
    border-bottom: 1px solid rgba(57, 255, 20, 0.15);
    position: relative;
    z-index: 1;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.banner-tag {
    display: inline-block;
    padding: 5px 15px;
    background: var(--neon);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.banner-text h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.banner-text p {
    color: var(--gray);
    font-size: 0.95rem;
}

.btn-portfolio {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: var(--neon);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 10px;
    box-shadow: 0 0 25px var(--neon-glow);
    transition: all 0.4s ease;
    white-space: nowrap;
    animation: bannerPulse 2s ease-in-out infinite;
}

.btn-portfolio:hover {
    background: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px var(--neon-glow), 0 10px 30px rgba(57, 255, 20, 0.2);
}

@keyframes bannerPulse {
    0%, 100% { box-shadow: 0 0 25px var(--neon-glow); }
    50% { box-shadow: 0 0 40px var(--neon-glow), 0 0 60px rgba(57, 255, 20, 0.15); }
}

/* ============= STATS (continued) ============= */

.stat-icon {
    font-size: 2rem;
    color: var(--neon);
    margin-bottom: 15px;
    text-shadow: 0 0 20px var(--neon-glow);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
}

.stat-plus, .stat-percent {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--neon);
    font-weight: 700;
}

.stat-item p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============= ABOUT ============= */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.about-img-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
}

.about-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid var(--neon);
    box-shadow: 0 0 40px var(--neon-glow);
}

.hex-border {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 25px;
    animation: hexPulse 3s ease-in-out infinite;
}

@keyframes hexPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

.about-tech-lines span {
    position: absolute;
    background: linear-gradient(90deg, var(--neon), transparent);
    height: 1px;
    opacity: 0.3;
}

.about-tech-lines span:nth-child(1) { width: 100px; top: 30%; right: -120px; }
.about-tech-lines span:nth-child(2) { width: 80px; top: 50%; right: -100px; }
.about-tech-lines span:nth-child(3) { width: 120px; top: 70%; right: -140px; }

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.about-content > p {
    color: var(--gray-light);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background: rgba(57, 255, 20, 0.03);
    border-left: 3px solid var(--neon);
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(57, 255, 20, 0.08);
    transform: translateX(5px);
}

.value-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(57, 255, 20, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon);
    font-size: 1.1rem;
}

.value-item h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    margin-bottom: 3px;
    letter-spacing: 1px;
}

.value-item p {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ============= GALLERY ============= */

.gallery-section {
    background: var(--dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(57, 255, 20, 0.1);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(50%) brightness(0.6);
}

.gallery-item:hover img {
    transform: scale(1.15);
    filter: grayscale(0%) brightness(0.8);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--neon);
    margin-bottom: 10px;
    text-shadow: 0 0 20px var(--neon-glow);
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============= CONTACT ============= */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--dark);
    border: 1px solid rgba(57, 255, 20, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.contact-card:hover {
    border-color: var(--neon);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(57, 255, 20, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(57, 255, 20, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--neon);
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
    background: var(--neon);
    color: var(--black);
    box-shadow: 0 0 30px var(--neon-glow);
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-card > p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-neon-sm {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: var(--neon);
    text-decoration: none;
    border: 2px solid var(--neon);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.btn-neon-sm:hover {
    background: var(--neon);
    color: var(--black);
    box-shadow: 0 0 25px var(--neon-glow);
    transform: translateY(-3px);
}

/* ============= BUDGET FORM ============= */

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark-card);
    border: 1px solid rgba(57, 255, 20, 0.15);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.form-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: rgba(57, 255, 20, 0.05);
}

.cl1 { width: 1px; height: 100%; left: 25%; }
.cl2 { width: 1px; height: 100%; left: 75%; }
.cl3 { width: 100%; height: 1px; top: 50%; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group label i {
    color: var(--neon);
    margin-right: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(57, 255, 20, 0.15);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--neon);
    background: rgba(57, 255, 20, 0.03);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-group select option {
    background: var(--dark);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--neon);
    transform: translateX(-50%);
    transition: width 0.4s ease;
    border-radius: 0 0 10px 10px;
}

.form-group input:focus ~ .input-line,
.form-group select:focus ~ .input-line,
.form-group textarea:focus ~ .input-line {
    width: 100%;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--neon), var(--neon-dark));
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(57, 255, 20, 0.3);
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-submit:hover .btn-glow {
    opacity: 1;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px;
}

.form-success.hidden {
    display: none;
}

.success-icon {
    font-size: 4rem;
    color: var(--neon);
    margin-bottom: 20px;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--neon);
}

.form-success p {
    color: var(--gray);
}

/* ============= WHATSAPP FLOAT ============= */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.4s ease;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* ============= INSTAGRAM FLOAT ============= */

.instagram-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
    transition: all 0.4s ease;
}

.instagram-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(225, 48, 108, 0.5);
}

/* ============= FOOTER ============= */

.footer {
    background: var(--dark);
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(57, 255, 20, 0.1);
}

.footer-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(57, 255, 20, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 255, 20, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    position: relative;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--neon);
    margin-bottom: 15px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--neon);
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon);
    padding-left: 5px;
}

.footer-services li {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-contact p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--neon);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
    position: relative;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon), transparent);
    opacity: 0.3;
    margin-bottom: 25px;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Footer Flags */
.footer-flags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-flag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-light);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-flag img {
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

.footer-flag-divider {
    color: var(--neon);
    opacity: 0.5;
    font-size: 0.8rem;
}

/* About Flags */
.about-flags {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.about-flag-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(57, 255, 20, 0.04);
    border: 1px solid rgba(57, 255, 20, 0.12);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--gray-light);
    transition: all 0.3s ease;
}

.about-flag-item:hover {
    border-color: rgba(57, 255, 20, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(57, 255, 20, 0.05);
}

.about-flag-item img {
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.about-flag-item strong {
    color: var(--neon);
}

/* ============= PORTFOLIO PESSOAL AD ============= */

.portfolio-ad-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.portfolio-ad-card-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-ad-hint {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 15px;
    text-align: center;
}

.portfolio-ad-hint i {
    color: var(--neon);
    margin-right: 6px;
    animation: adPointerBounce 1.2s ease infinite;
}

@keyframes adPointerBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Flip Card */
.flip-card-ad {
    width: 300px;
    height: 420px;
    perspective: 1200px;
    cursor: pointer;
}

.flip-card-ad-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card-ad:hover .flip-card-ad-inner,
.flip-card-ad.flipped .flip-card-ad-inner {
    transform: rotateY(180deg);
}

.flip-card-ad-front,
.flip-card-ad-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(57, 255, 20, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(57, 255, 20, 0.05);
    background: var(--dark-card);
}

.flip-card-ad-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
}

/* Front */
.fca-cover {
    position: relative;
    height: 170px;
    overflow: hidden;
}

.fca-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fca-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, var(--dark-card) 100%);
}

.fca-front-body {
    padding: 0 22px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.fca-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--neon);
    box-shadow: 0 0 20px var(--neon-glow);
    margin-bottom: 10px;
}

.fca-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fca-front-body h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.fca-role {
    font-size: 0.7rem;
    color: var(--gray);
    margin-bottom: 12px;
}

.fca-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin-bottom: 12px;
}

.fca-tags span {
    padding: 3px 10px;
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 50px;
    font-size: 0.55rem;
    color: var(--neon);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.fca-flip-hint {
    font-size: 0.55rem;
    color: var(--gray);
    letter-spacing: 1px;
    opacity: 0.5;
    margin-top: auto;
}

.fca-flip-hint i {
    color: var(--neon);
    margin-right: 4px;
    animation: adSpinHint 2s ease infinite;
}

@keyframes adSpinHint {
    0%, 80%, 100% { transform: rotate(0deg); }
    90% { transform: rotate(180deg); }
}

/* Back */
.fca-back-header {
    padding: 18px 22px 12px;
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
    text-align: center;
}

.fca-back-header h4 {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.fca-back-header h4 i {
    color: var(--neon);
    margin-right: 5px;
}

.fca-back-header p {
    font-size: 0.65rem;
    color: var(--gray);
}

.fca-back-body {
    padding: 15px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fca-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}

.fca-stat {
    text-align: center;
    padding: 8px 4px;
    background: rgba(57, 255, 20, 0.04);
    border-radius: 8px;
    border: 1px solid rgba(57, 255, 20, 0.1);
}

.fca-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--neon);
    text-shadow: 0 0 10px var(--neon-glow);
}

.fca-stat-lbl {
    font-size: 0.5rem;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fca-skills {
    margin-bottom: 15px;
}

.fca-skill {
    margin-bottom: 8px;
}

.fca-skill span {
    font-size: 0.6rem;
    color: var(--gray-light);
    margin-bottom: 3px;
    display: block;
}

.fca-bar {
    height: 5px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
}

.fca-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon), #00ff88);
    border-radius: 10px;
    width: 0;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px var(--neon-glow);
}

.fca-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
}

.fca-socials span {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.2);
    color: var(--neon);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fca-socials span:hover {
    background: var(--neon);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--neon-glow);
}

/* Info Side */
.portfolio-ad-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.portfolio-ad-desc {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.portfolio-ad-features {
    list-style: none;
    margin-bottom: 20px;
}

.portfolio-ad-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    font-size: 0.9rem;
    color: var(--gray-light);
    border-left: 2px solid var(--neon);
    margin-bottom: 6px;
    border-radius: 0 8px 8px 0;
    background: rgba(57, 255, 20, 0.02);
    transition: all 0.3s ease;
}

.portfolio-ad-features li:hover {
    background: rgba(57, 255, 20, 0.06);
    transform: translateX(5px);
}

.portfolio-ad-features li i {
    color: var(--neon);
    font-size: 0.75rem;
}

.portfolio-ad-niches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.portfolio-ad-niches span {
    padding: 6px 14px;
    background: rgba(57, 255, 20, 0.04);
    border: 1px solid rgba(57, 255, 20, 0.15);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--gray-light);
    transition: all 0.3s ease;
}

.portfolio-ad-niches span i {
    color: var(--neon);
    margin-right: 5px;
}

.portfolio-ad-niches span:hover {
    border-color: var(--neon);
    background: rgba(57, 255, 20, 0.1);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============= ANIMATIONS ============= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============= RESPONSIVE ============= */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-tech-lines { display: none; }
    
    .about-values {
        max-width: 500px;
        margin: 30px auto 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(57, 255, 20, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .nav-links a::after {
        display: none;
    }
    
    .hero-logo {
        width: 130px;
        height: 130px;
    }

    .hero h1 {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }

    .hero-buttons {
        margin-bottom: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-contact p {
        justify-content: center;
    }
    
    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .service-card h3 {
        font-size: 0.9rem;
    }

    .stats-grid {
        gap: 25px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-tech-lines {
        display: none;
    }

    .about-values {
        max-width: 500px;
        margin: 30px auto 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .portfolio-ad-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .portfolio-ad-card-wrap {
        order: -1;
    }

    .portfolio-ad-features li {
        justify-content: center;
    }

    .portfolio-ad-niches {
        justify-content: center;
    }

    .portfolio-ad-info .btn {
        margin-left: auto;
        margin-right: auto;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 100px;
        height: 100px;
    }

    .hero h1 {
        font-size: 1.6rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 30px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .section-desc {
        font-size: 0.85rem;
    }

    .container {
        padding: 0 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-item p {
        font-size: 0.7rem;
    }
    
    .about-img-wrapper {
        width: 180px;
        height: 180px;
    }

    .about-content h3 {
        font-size: 1.2rem;
    }

    .about-content > p {
        font-size: 0.85rem;
    }

    .about-flags {
        flex-direction: column;
        align-items: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 25px 20px;
    }

    .form-container {
        padding: 25px 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .flip-card-ad {
        width: 250px;
        height: 380px;
    }

    .fca-cover {
        height: 130px;
    }

    .fca-avatar {
        width: 65px;
        height: 65px;
    }

    .fca-front-body h3 {
        font-size: 0.8rem;
    }

    .fca-tags span {
        font-size: 0.5rem;
    }

    .portfolio-ad-info h3 {
        font-size: 1.1rem;
    }

    .portfolio-ad-desc {
        font-size: 0.85rem;
    }

    .portfolio-ad-features li {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .portfolio-ad-niches span {
        font-size: 0.65rem;
        padding: 5px 10px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        bottom: 20px;
        right: 15px;
    }

    .instagram-float {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        bottom: 80px;
        right: 15px;
    }

    .banner-text h3 {
        font-size: 1rem;
    }

    .banner-text p {
        font-size: 0.8rem;
    }

    .btn-portfolio {
        padding: 12px 22px;
        font-size: 0.7rem;
    }

    .nav-links {
        width: 85%;
    }

    .nav-links a {
        font-size: 0.85rem;
    }
}
