:root {
    --primary-rgb: 0, 255, 204;
    --secondary-rgb: 0, 176, 255;
    --accent-rgb: 255, 145, 0;
    --bg-dark: #050508;
    --bg-card: rgba(12, 18, 26, 0.9);
    --text-primary: #ffffff;
    --text-secondary: #8899aa;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Orbitron', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

.rgb-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #0a0a14;
    overflow: hidden;
}

.rgb-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(255, 0, 0, 0.4) 0%, transparent 35%),
        radial-gradient(circle at 85% 35%, rgba(0, 255, 0, 0.4) 0%, transparent 35%),
        radial-gradient(circle at 50% 85%, rgba(0, 0, 255, 0.35) 0%, transparent 35%),
        radial-gradient(circle at 30% 60%, rgba(255, 0, 255, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 70% 70%, rgba(0, 255, 255, 0.2) 0%, transparent 25%);
    animation: rgbPulse 4s ease-in-out infinite;
}

@keyframes rgbPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.rgb-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 30px 30px;
}

.led-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.led-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: ledBlink 1s ease-in-out infinite;
}

.led-dot.red { background: #ff3333; box-shadow: 0 0 20px #ff3333, 0 0 40px #ff0000, 0 0 60px #ff0000; }
.led-dot.green { background: #33ff33; box-shadow: 0 0 20px #33ff33, 0 0 40px #00ff00, 0 0 60px #00ff00; }
.led-dot.blue { background: #3399ff; box-shadow: 0 0 20px #3399ff, 0 0 40px #0066ff, 0 0 60px #0066ff; }
.led-dot.cyan { background: #33ffcc; box-shadow: 0 0 20px #33ffcc, 0 0 40px #00ffcc, 0 0 60px #00ffcc; }
.led-dot.magenta { background: #ff33aa; box-shadow: 0 0 20px #ff33aa, 0 0 40px #ff00aa, 0 0 60px #ff00aa; }
.led-dot.yellow { background: #ffdd00; box-shadow: 0 0 20px #ffdd00, 0 0 40px #ffaa00, 0 0 60px #ffaa00; }

@keyframes ledBlink {
    0%, 100% { opacity: 0.15; transform: scale(0.7); }
    50% { opacity: 1; transform: scale(1); }
}

.scan-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(0, 255, 204, 0.25) 50%, 
        transparent 100%
    );
    animation: scanMove 2.5s linear infinite;
    pointer-events: none;
}

@keyframes scanMove {
    0% { top: -100px; }
    100% { top: 100%; }
}

.led-panel-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    opacity: 0.4;
    pointer-events: none;
}

.cabinet-grid {
    position: absolute;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem;
}

.led-cabinet {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, rgba(12, 15, 22, 0.8) 0%, rgba(20, 28, 38, 0.7) 100%);
    border: 1px solid rgba(0, 255, 204, 0.12);
    border-radius: 3px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2px;
    padding: 3px;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.05);
    position: relative;
}

.led-module {
    background: linear-gradient(145deg, rgba(8, 12, 18, 0.6) 0%, rgba(16, 22, 30, 0.5) 100%);
    border: 1px solid rgba(0, 255, 204, 0.08);
    border-radius: 1px;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(10, 1fr);
    gap: 0.5px;
    padding: 1px;
    position: relative;
    overflow: hidden;
}

@keyframes cabinetPulse {
    0%, 100% { }
    50% { }
}

@keyframes moduleShine {
    0%, 100% { }
    50% { }
}

.pixel-dot {
    border-radius: 50%;
    transition: background 0.15s ease, box-shadow 0.15s ease;
}

@keyframes dotGlow {
    0%, 100% { opacity: 0.85; }
    50% { opacity: 1; }
}

.module-corner {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #2a3040;
    border-radius: 1px;
}

.module-corner.tl { top: 1px; left: 1px; }
.module-corner.tr { top: 1px; right: 1px; }
.module-corner.bl { bottom: 1px; left: 1px; }
.module-corner.br { bottom: 1px; right: 1px; }

.ic-chip {
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 12px;
    height: 6px;
    background: #1a1f2a;
    border: 1px solid #2a3040;
    border-radius: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3px;
    color: #4a5568;
    font-family: monospace;
}

.scanline {
    display: none;
}

@keyframes scanline {
    0% { top: -4px; }
    100% { top: 100%; }
}

@keyframes pixelGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.cabinet-glare {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.03) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    pointer-events: none;
    border-radius: 2px;
}

.circuit-lines {
    display: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent,
        rgba(0, 255, 204, 0.5),
        transparent
    );
    height: 1px;
    animation: circuitPulse 4s ease-in-out infinite;
}

.circuit-line.v1 { top: 18%; width: 22%; left: -22%; animation-delay: 0s; }
.circuit-line.v2 { top: 55%; width: 18%; right: -18%; left: auto; animation-delay: 1.5s; }

@keyframes circuitPulse {
    0%, 100% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
}

.corner-marks {
    display: none;
}

.data-stream {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.data-bit {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: rgba(0, 255, 204, 0.3);
    animation: dataFlow 20s linear infinite;
    white-space: nowrap;
}

@keyframes dataFlow {
    0% { transform: translateX(-100%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(100vw); opacity: 0; }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.2);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.logo-sub {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: rgb(var(--primary-rgb));
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.98);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.2);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
    padding: 1rem 0;
}

.mobile-menu.active {
    transform: translateY(0);
}

.menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 2rem;
}

.menu-links li a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.menu-links li a:hover,
.menu-links li a.active {
    background: rgba(var(--primary-rgb), 0.2);
    color: rgb(var(--primary-rgb));
}

.menu-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-contact a {
    color: rgb(var(--primary-rgb));
    font-weight: 600;
}

.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 3rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
    background: rgba(6, 10, 18, 0.85);
    padding: 2rem 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 204, 0.15);
    backdrop-filter: blur(10px);
}

/* TEST LOGO */
.hero-logo-test {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-logo-img {
    max-width: 280px;
    height: auto;
    border-radius: 12px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    padding: 1rem;
}
/* END TEST LOGO */

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(var(--primary-rgb), 0.2);
    border: 1px solid rgb(var(--primary-rgb));
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(var(--primary-rgb), 0.5); }
    50% { box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.8); }
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.hero h1 .highlight {
    background: linear-gradient(90deg, rgb(var(--primary-rgb)), rgb(var(--secondary-rgb)), rgb(var(--accent-rgb)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.technician-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tech-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.tech-title {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tech-certifications {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.cert-badge {
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.15) 0%, rgba(0, 176, 255, 0.15) 100%);
    border: 1px solid rgba(0, 255, 204, 0.4);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgb(var(--primary-rgb));
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cert-badge:last-child {
    border-color: rgba(0, 176, 255, 0.4);
    color: rgb(var(--secondary-rgb));
}

.hero-phone,
.hero-email {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgb(var(--primary-rgb));
    transition: all 0.3s ease;
}

.hero-phone:hover,
.hero-email:hover {
    text-decoration: underline;
    transform: translateX(3px);
}

.hero-divider {
    color: var(--text-secondary);
    opacity: 0.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: rgb(var(--primary-rgb));
    color: var(--bg-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(var(--primary-rgb), 0.5);
}

.btn-secondary {
    background: transparent;
    color: rgb(var(--primary-rgb));
    border: 2px solid rgb(var(--primary-rgb));
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background: rgba(var(--primary-rgb), 0.1);
    transform: translateY(-2px);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(var(--secondary-rgb), 0.2);
    border: 1px solid rgb(var(--secondary-rgb));
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
}

.text-gradient {
    background: linear-gradient(90deg, rgb(var(--primary-rgb)), rgb(var(--secondary-rgb)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services {
    padding: 3rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(var(--primary-rgb), 0.03), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgb(var(--primary-rgb)), rgb(var(--secondary-rgb)));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(var(--primary-rgb), 0.1);
}

.service-card.featured {
    border-color: rgb(var(--primary-rgb));
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.05));
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    background: rgb(var(--accent-rgb));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: rgb(var(--primary-rgb));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: rgb(var(--primary-rgb));
}

.trabajos {
    padding: 3rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(var(--secondary-rgb), 0.03), transparent);
}

.trabajos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trabajo-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.trabajo-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    transform: translateY(-5px);
}

.trabajo-card.empty {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    cursor: pointer;
}

.trabajo-card.empty:hover {
    border-color: rgba(var(--primary-rgb), 0.5);
    background: rgba(var(--primary-rgb), 0.05);
}

.trabajo-media {
    width: 100%;
    height: 180px;
    background: linear-gradient(145deg, #0f1419 0%, #1a1f26 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--primary-rgb));
    overflow: hidden;
}

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

.trabajo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.trabajo-info {
    padding: 1.5rem;
}

.trabajo-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.trabajo-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.trabajo-add {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.add-icon {
    width: 50px;
    height: 50px;
    border: 2px dashed currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgb(var(--primary-rgb));
}



.footer {
    background: rgba(10, 10, 15, 0.95);
    border-top: 1px solid rgba(var(--primary-rgb), 0.2);
    padding: 2rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand .logo-icon {
    font-size: 1.5rem;
}

.footer-brand .logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-contact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.footer-tech {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-tech-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgb(var(--primary-rgb));
}

.footer-cert {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 255, 204, 0.1);
    border: 1px solid rgba(0, 255, 204, 0.3);
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgb(var(--primary-rgb));
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-cert:last-child {
    background: rgba(0, 176, 255, 0.1);
    border-color: rgba(0, 176, 255, 0.3);
    color: rgb(var(--secondary-rgb));
}

.footer-bottom {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .nav-left {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .trabajos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    z-index: 10000;
}

.modal-close:hover {
    color: rgb(var(--primary-rgb));
    transform: scale(1.2);
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content img,
.modal-content video {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0, 255, 204, 0.3);
}

.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9998;
    transition: all 0.3s ease;
}

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

.social-btn {
    position: fixed;
    right: 2rem;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    transition: all 0.3s ease;
}

.social-btn.instagram {
    bottom: 7rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
}

.social-btn.instagram:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(225, 48, 108, 0.6);
}

.social-btn.whatsapp {
    bottom: 2rem;
    background: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
}

.social-btn.whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

@media (max-width: 480px) {
    .whatsapp-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
    }
}
