/* Unified stylesheet for all pages */

/* ABOUT */
/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

:root {
    /* Colors */
    --bg-primary: #0b0f14;
    --bg-secondary: #1a1a2e;
    --cyan: #00d9ff;
    --blue: #0066ff;
    --purple: #6366f1;
    --purple-dark: #8b5cf6;
    --green: #10b981;
    --green-dark: #22c55e;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-tertiary: #6b7280;

    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 1rem;
}

@media (min-width: 640px) {
    body.page-about {
        --section-padding: 8rem 0;
        --container-padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    body.page-about {
        --container-padding: 0 2rem;
    }
}

body > main {
    padding-top: 50px;
}

html body.page-about {
    scroll-behavior: smooth;
}

body.page-about {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
body.page-about .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
}

body.page-about .container-fluid {
    width: 100%;
    padding: var(--container-padding);
}

/* Gradient Text */
body.page-about .gradient-text {
    background: linear-gradient(to right, var(--cyan), var(--blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.page-about .text-white {
    color: var(--text-primary);
}

/* Tech Background */
body.page-about .tech-background {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

body.page-about .animated-grid {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(0, 217, 255, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.5) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: about_gridMove 20s linear infinite;
}

@keyframes about_gridMove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(60px);
    }
}

body.page-about .wave-pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

body.page-about .wave-1 {
    animation: about_waveMove 15s ease-in-out infinite;
}

body.page-about .wave-2 {
    animation: about_waveMove 20s ease-in-out infinite reverse;
}

@keyframes about_waveMove {

    0%,
    100% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(-100px) translateY(-20px);
    }
}

body.page-about .gradient-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(80px);
}

body.page-about .orb-1 {
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.3) 0%, transparent 70%);
    animation: about_float 25s ease-in-out infinite;
}

body.page-about .orb-2 {
    bottom: 0;
    right: 0;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    animation: about_float 30s ease-in-out infinite reverse;
}

body.page-about .orb-3 {
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    animation: about_float 28s ease-in-out infinite;
    transform: translate(-50%, -50%);
}

@keyframes about_float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(50px, -50px);
    }

    66% {
        transform: translate(-50px, 50px);
    }
}


/* Buttons */
.btn-whatsapp,
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-whatsapp {
    background: linear-gradient(to right, var(--green), var(--green-dark));
    color: white;
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.4);
}

.btn-whatsapp:hover {
    transform: scale(1.05);
}

.btn-primary {
    background: linear-gradient(to right, var(--cyan), var(--blue));
    color: white;
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.4);
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--cyan);
    color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 217, 255, 0.1);
    transform: scale(1.05);
}

body.page-about .btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

body.page-about .btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2;
}

/* Hero Section */
body.page-about .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
    padding-bottom: 8rem;
    overflow: hidden;
}

body.page-about .hero-animation {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

body.page-about .tv-panel-container {
    position: relative;
    transform-style: preserve-3d;
    animation: about_tvRotate 8s ease-in-out infinite;
}

@keyframes about_tvRotate {

    0%,
    100% {
        transform: rotateY(-5deg) rotateX(2deg);
    }

    50% {
        transform: rotateY(5deg) rotateX(-2deg);
    }
}

body.page-about .tv-panel {
    position: relative;
    width: 300px;
    height: 170px;
    background: linear-gradient(135deg, #1a1a2e 0%, #111 50%, #1a1a2e 100%);
    border-radius: 1rem;
    border: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow:
        0 0 60px rgba(0, 217, 255, 0.3),
        inset 0 0 40px rgba(0, 217, 255, 0.1);
    overflow: hidden;
}

@media (min-width: 640px) {
    body.page-about .tv-panel {
        width: 500px;
        height: 280px;
    }
}

@media (min-width: 1024px) {
    body.page-about .tv-panel {
        width: 700px;
        height: 400px;
    }
}

body.page-about .screen-reflection {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2) 0%, transparent 50%, rgba(139, 92, 246, 0.1) 100%);
    animation: about_reflectionMove 6s linear infinite;
}

@keyframes about_reflectionMove {

    0%,
    100% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }
}

body.page-about .circuit-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

body.page-about .circuit-line-1 {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: about_drawLine 3s ease-in-out infinite;
}

body.page-about .circuit-line-2 {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: about_drawLine 3s ease-in-out infinite 1s;
}

@keyframes about_drawLine {

    0%,
    100% {
        stroke-dashoffset: 1000;
    }

    50% {
        stroke-dashoffset: 0;
    }
}

body.page-about .electronic-components {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 2rem;
    opacity: 0;
    animation: about_componentsReveal 4s ease-in-out infinite 2s;
}

@keyframes about_componentsReveal {

    0%,
    85%,
    100% {
        opacity: 0;
    }

    10%,
    75% {
        opacity: 0.6;
    }
}

body.page-about .component {
    width: 100%;
    height: 2rem;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    border-radius: 0.25rem;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
    animation: about_componentPulse 3s ease-in-out infinite;
}

@media (min-width: 640px) {
    body.page-about .component {
        height: 3rem;
    }
}

body.page-about .component:nth-child(even) {
    animation-delay: 0.3s;
}

@keyframes about_componentPulse {

    0%,
    100% {
        transform: scale(0.8) rotate(0deg);
    }

    50% {
        transform: scale(1) rotate(180deg);
    }
}

body.page-about .tv-glow {
    position: absolute;
    inset: 0;
    filter: blur(80px);
    opacity: 0.5;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.4) 0%, rgba(99, 102, 241, 0.3) 50%, transparent 70%);
    z-index: -1;
}

body.page-about .particles {
    position: absolute;
    inset: 0;
}

body.page-about .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--cyan);
    border-radius: 50%;
    animation: about_particleFloat 3s ease-in-out infinite;
}

@keyframes about_particleFloat {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px);
    }
}

body.page-about .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

body.page-about .hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    body.page-about .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    body.page-about .hero-title {
        font-size: 4.5rem;
    }
}

body.page-about .hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

@media (min-width: 640px) {
    body.page-about .hero-subtitle {
        font-size: 1.25rem;
    }
}

body.page-about .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    body.page-about .hero-buttons {
        flex-direction: row;
    }
}

body.page-about .trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    body.page-about .trust-badges {
        grid-template-columns: repeat(4, 1fr);
    }
}

body.page-about .trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 0.5rem;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.1);
    transition: transform 0.3s;
}

body.page-about .trust-badge:hover {
    transform: scale(1.05) translateY(-5px);
}

body.page-about .badge-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--cyan);
    flex-shrink: 0;
    stroke-width: 2;
}

body.page-about .trust-badge span {
    font-weight: 500;
    font-size: 0.875rem;
}

body.page-about .hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    pointer-events: none;
}

/* Animation Classes */
body.page-about .animate-fade-up {
    opacity: 0;
    animation: about_fadeUp 1s ease-out forwards;
}

body.page-about .delay-1 {
    animation-delay: 0.2s;
}

body.page-about .delay-2 {
    animation-delay: 0.4s;
}

body.page-about .delay-3 {
    animation-delay: 0.6s;
}

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

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

/* Glowing Divider */
body.page-about .glowing-divider {
    position: relative;
    height: 2px;
    width: 100%;
    margin: 4rem 0;
    overflow: hidden;
    background: linear-gradient(to right, transparent, rgba(0, 217, 255, 0.2), transparent);
}

body.page-about .glow-line {
    position: absolute;
    height: 100%;
    width: 33.333%;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
    animation: about_glowTravel 3s linear infinite;
}

@keyframes about_glowTravel {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(300%);
    }
}

/* Section Styles */
body.page-about .section {
    position: relative;
    padding: var(--section-padding);
}

body.page-about .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

body.page-about .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    body.page-about .section-title {
        font-size: 3.75rem;
    }
}

body.page-about .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 48rem;
    margin: 0 auto;
}

body.page-about .section-cta {
    text-align: center;
    margin-top: 4rem;
}

body.page-about .cta-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Fade in on scroll */
body.page-about .fade-in-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s, transform 0.6s;
    transition-delay: calc(var(--delay, 0) * 1s);
}

body.page-about .fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Services Grid */
body.page-about .services-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    body.page-about .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    body.page-about .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

body.page-about .service-card {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

body.page-about .service-card:hover {
    transform: translateY(-10px) rotateX(5deg) scale(1.02);
    border-color: rgba(0, 217, 255, 0.5);
}

body.page-about .service-card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

body.page-about .service-card:hover .service-card-glow {
    opacity: 1;
    box-shadow: 0 0 50px rgba(0, 217, 255, 0.3);
}

body.page-about .service-icon {
    position: relative;
    z-index: 10;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
}

body.page-about .service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

body.page-about .service-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
    stroke-width: 2;
}

body.page-about .gradient-cyan {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

body.page-about .gradient-blue {
    background: linear-gradient(135deg, var(--blue), var(--purple));
}

body.page-about .gradient-purple {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
}

body.page-about .gradient-pink {
    background: linear-gradient(135deg, #ec4899, #ef4444);
}

body.page-about .gradient-orange {
    background: linear-gradient(135deg, #f97316, #eab308);
}

body.page-about .gradient-green {
    background: linear-gradient(135deg, var(--green), var(--cyan));
}

body.page-about .service-title {
    position: relative;
    z-index: 10;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

body.page-about .service-card:hover .service-title {
    color: var(--cyan);
}

body.page-about .service-description {
    position: relative;
    z-index: 10;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

body.page-about .service-link {
    position: relative;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    color: var(--cyan);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

body.page-about .service-link:hover {
    color: #33e0ff;
}

body.page-about .service-link .arrow {
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.3s;
    animation: about_arrowBounce 1.5s ease-in-out infinite;
}

@keyframes about_arrowBounce {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

/* Timeline */
body.page-about .timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    body.page-about .timeline {
        flex-direction: row;
        gap: 1rem;
    }
}

body.page-about .timeline-line {
    display: none;
}

@media (min-width: 1024px) {
    body.page-about .timeline-line {
        display: block;
        position: absolute;
        top: 6rem;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(to right, rgba(0, 217, 255, 0.2), rgba(0, 217, 255, 0.5), rgba(0, 217, 255, 0.2));
    }
}

body.page-about .timeline-progress {
    display: none;
}

@media (min-width: 1024px) {
    body.page-about .timeline-progress {
        display: block;
        position: absolute;
        top: 6rem;
        left: 0;
        height: 1px;
        background: linear-gradient(to right, var(--cyan), var(--blue));
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
        animation: about_timelineProgress 2s ease-out 0.5s forwards;
    }
}

@keyframes about_timelineProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

body.page-about .timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

body.page-about .timeline-badge {
    position: relative;
    z-index: 10;
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow:
        0 0 40px rgba(0, 217, 255, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    transition: transform 0.5s;
}

body.page-about .timeline-step:hover .timeline-badge {
    transform: scale(1.1) rotate(360deg);
}

body.page-about .badge-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--cyan);
    animation: about_badgePulse 2s ease-out infinite;
}

@keyframes about_badgePulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

body.page-about .timeline-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

body.page-about .timeline-step:hover .timeline-card {
    transform: translateY(-5px) scale(1.03);
    border-color: rgba(0, 217, 255, 0.5);
}

body.page-about .timeline-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

body.page-about .timeline-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Benefits Grid */
body.page-about .benefits-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    body.page-about .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    body.page-about .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

body.page-about .benefit-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    transition: all 0.3s;
}

body.page-about .benefit-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(0, 217, 255, 0.5);
}

body.page-about .benefit-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
    animation: about_iconRotate 10s linear infinite;
}

@keyframes about_iconRotate {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

body.page-about .benefit-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
    stroke-width: 2;
}

body.page-about .benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

body.page-about .benefit-description {
    color: var(--text-secondary);
}

/* Reviews Section */
body.page-about .reviews-section {
    overflow: hidden;
}

body.page-about .reviews-marquee {
    position: relative;
    width: 100%;
}

body.page-about .marquee-track {
    display: flex;
    gap: 1.5rem;
    animation: about_marqueeScroll 40s linear infinite;
}

body.page-about .marquee-track:hover {
    animation-play-state: paused;
}

@keyframes about_marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

body.page-about .review-card {
    flex-shrink: 0;
    width: 400px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s;
}

body.page-about .review-card:hover {
    border-color: rgba(139, 92, 246, 0.5);
}

body.page-about .quote-icon {
    width: 2rem;
    height: 2rem;
    color: var(--purple-dark);
    margin-bottom: 1rem;
    stroke-width: 2;
}

body.page-about .review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

body.page-about .star {
    color: #fbbf24;
    font-size: 1rem;
}

body.page-about .review-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.page-about .review-author {
    padding-top: 1rem;
    border-top: 1px solid rgba(107, 114, 128, 0.3);
}

body.page-about .author-name {
    font-weight: 600;
    color: white;
}

body.page-about .author-location {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* FAQ Accordion */
body.page-about .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

body.page-about .faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s;
}

body.page-about .faq-item:hover {
    border-color: rgba(0, 217, 255, 0.4);
}

body.page-about .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s;
}

body.page-about .faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

body.page-about .faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--cyan);
    flex-shrink: 0;
    stroke-width: 2;
    transition: transform 0.3s;
}

body.page-about .faq-item.active .faq-icon {
    transform: rotate(180deg);
}

body.page-about .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

body.page-about .faq-item.active .faq-answer {
    max-height: 500px;
}

body.page-about .faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Booking Form */
body.page-about .booking-form-container {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

body.page-about .booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

body.page-about .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

body.page-about .form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

body.page-about .form-group input,
body.page-about .form-group select,
body.page-about .form-group textarea {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

body.page-about .form-group input::placeholder,
body.page-about .form-group textarea::placeholder {
    color: rgba(156, 163, 175, 0.5);
}

body.page-about .form-group input:focus,
body.page-about .form-group select:focus,
body.page-about .form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 2px rgba(0, 217, 255, 0.2);
}

body.page-about .form-group select {
    cursor: pointer;
}

body.page-about .form-group select option {
    background: #1a1a2e;
    color: white;
}

body.page-about .form-group textarea {
    resize: none;
}

body.page-about .error-message {
    font-size: 0.875rem;
    color: #ef4444;
    display: none;
}

body.page-about .form-group.error .error-message {
    display: block;
}

body.page-about .form-group.error input,
body.page-about .form-group.error select,
body.page-about .form-group.error textarea {
    border-color: #ef4444;
}

body.page-about .btn-submit {
    width: 100%;
}

body.page-about .success-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.5rem;
    color: var(--green);
}

body.page-about .success-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2;
}

body.page-about .whatsapp-alternative {
    margin-top: 2rem;
    text-align: center;
}

body.page-about .alternative-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

/* CTA Section */
body.page-about .cta-section {
    position: relative;
    padding: var(--section-padding);
    overflow: hidden;
}

body.page-about .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 50%, var(--purple) 100%);
    opacity: 0.1;
    animation: about_gradientMove 15s linear infinite;
}

@keyframes about_gradientMove {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

body.page-about .cta-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: rgba(0, 217, 255, 0.1);
    pointer-events: none;
    animation: about_ctaPulse 3s ease-in-out infinite;
}

@keyframes about_ctaPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

body.page-about .cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    body.page-about .cta-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    body.page-about .cta-title {
        font-size: 3.75rem;
    }
}

body.page-about .cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

@media (min-width: 640px) {
    body.page-about .cta-subtitle {
        font-size: 1.5rem;
    }
}

body.page-about .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    body.page-about .cta-buttons {
        flex-direction: row;
    }
}

body.page-about .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
}

@media (min-width: 640px) {
    body.page-about .contact-info {
        flex-direction: row;
    }
}

body.page-about .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

body.page-about .contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--cyan);
    stroke-width: 2;
}

body.page-about .contact-divider {
    display: none;
    color: var(--cyan);
}

@media (min-width: 640px) {
    body.page-about .contact-divider {
        display: inline;
    }
}


/* Sticky WhatsApp */
body.page-about .sticky-whatsapp {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem;
    background: rgba(11, 15, 20, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.3s;
}

@media (min-width: 1024px) {
    body.page-about .sticky-whatsapp {
        display: none;
    }
}

body.page-about .sticky-whatsapp.visible {
    transform: translateY(0);
}

body.page-about .sticky-whatsapp .btn-whatsapp {
    width: 100%;
}


/* CONTACT */
/* Contact Page Styles - Futuristic Dark Theme */

body.page-contact {
    --bg-primary: #0b0f14;
    --bg-secondary: #1a1a2e;
    --cyan: #00d9ff;
    --blue: #0066ff;
    --purple: #6366f1;
    --purple-dark: #8b5cf6;
    --green: #10b981;
    --green-dark: #22c55e;
    --pink: #ec4899;
    --orange: #f97316;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-tertiary: #6b7280;
}

html body.page-contact {
    scroll-behavior: smooth;
}

body.page-contact {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 64px;
}

body.page-contact .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    body.page-contact .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    body.page-contact .container {
        padding: 0 2rem;
    }
}

/* Gradient Text */
body.page-contact .gradient-text {
    background: linear-gradient(to right, var(--cyan), var(--blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.page-contact .gradient-text-purple {
    background: linear-gradient(to right, var(--purple), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Tech Background - Same as main page */
body.page-contact .tech-background {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

body.page-contact .animated-grid {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(0, 217, 255, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.5) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: contact_gridMove 20s linear infinite;
}

@keyframes contact_gridMove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(60px);
    }
}

body.page-contact .wave-pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

body.page-contact .wave-1 {
    animation: contact_waveMove 15s ease-in-out infinite;
}

body.page-contact .wave-2 {
    animation: contact_waveMove 20s ease-in-out infinite reverse;
}

@keyframes contact_waveMove {

    0%,
    100% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(-100px) translateY(-20px);
    }
}

body.page-contact .gradient-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(80px);
}

body.page-contact .orb-1 {
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.3) 0%, transparent 70%);
    animation: contact_float 25s ease-in-out infinite;
}

body.page-contact .orb-2 {
    bottom: 0;
    right: 0;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    animation: contact_float 30s ease-in-out infinite reverse;
}

body.page-contact .orb-3 {
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    animation: contact_float 28s ease-in-out infinite;
    transform: translate(-50%, -50%);
}

@keyframes contact_float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(50px, -50px);
    }

    66% {
        transform: translate(-50px, 50px);
    }
}


/* Buttons */
body.page-contact .btn-whatsapp,
body.page-contact .btn-secondary,
body.page-contact .btn-submit,
body.page-contact .btn-directions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

body.page-contact .btn-whatsapp {
    background: linear-gradient(to right, var(--green), var(--green-dark));
    color: white;
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.4);
}

body.page-contact .btn-whatsapp:hover {
    transform: scale(1.05);
}

body.page-contact .btn-secondary {
    background: transparent;
    border: 2px solid var(--cyan);
    color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

body.page-contact .btn-secondary:hover {
    background: rgba(0, 217, 255, 0.1);
    transform: scale(1.05);
}

body.page-contact .btn-submit {
    width: 100%;
    background: linear-gradient(to right, var(--cyan), var(--blue));
    color: white;
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.4);
    font-size: 1rem;
}

body.page-contact .btn-submit:hover {
    transform: scale(1.02);
}

body.page-contact .btn-directions {
    padding: 0.75rem 1.5rem;
    background: rgba(0, 217, 255, 0.2);
    border: 1px solid rgba(0, 217, 255, 0.4);
    color: var(--cyan);
    font-size: 0.875rem;
}

body.page-contact .btn-directions:hover {
    background: rgba(0, 217, 255, 0.3);
}

body.page-contact .btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2;
}

/* Hero Section */
body.page-contact .hero-section {
    position: relative;
    padding: 5rem 0 8rem;
}

@media (min-width: 640px) {
    body.page-contact .hero-section {
        padding: 8rem 0 10rem;
    }
}

body.page-contact .hero-content {
    text-align: center;
    margin-bottom: 4rem;
}

body.page-contact .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    margin-bottom: 1.5rem;
}

body.page-contact .badge-icon {
    width: 1rem;
    height: 1rem;
    color: var(--cyan);
    stroke-width: 2;
}

body.page-contact .hero-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cyan);
}

body.page-contact .hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    body.page-contact .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    body.page-contact .hero-title {
        font-size: 4.5rem;
    }
}

body.page-contact .hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.8;
}

@media (min-width: 640px) {
    body.page-contact .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Contact Cards Grid */
body.page-contact .contact-cards-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 5rem;
}

@media (min-width: 768px) {
    body.page-contact .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    body.page-contact .contact-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

body.page-contact .contact-card {
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

body.page-contact .contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 217, 255, 0.5);
}

body.page-contact .contact-card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

body.page-contact .contact-card:hover .contact-card-glow {
    opacity: 1;
    box-shadow: 0 0 50px rgba(0, 217, 255, 0.3);
}

body.page-contact .contact-card-icon {
    position: relative;
    z-index: 10;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
    transition: transform 0.3s;
}

body.page-contact .contact-card:hover .contact-card-icon {
    transform: scale(1.1);
}

body.page-contact .contact-card-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
    stroke-width: 2;
}

body.page-contact .gradient-cyan {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

body.page-contact .gradient-blue {
    background: linear-gradient(135deg, var(--blue), var(--purple));
}

body.page-contact .gradient-purple {
    background: linear-gradient(135deg, var(--purple), var(--pink));
}

body.page-contact .gradient-pink {
    background: linear-gradient(135deg, var(--pink), var(--orange));
}

body.page-contact .contact-card-title {
    position: relative;
    z-index: 10;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

body.page-contact .contact-card-info {
    position: relative;
    z-index: 10;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Main Contact Section */
body.page-contact .main-contact-section {
    position: relative;
    padding: 3rem 0 5rem;
}

@media (min-width: 640px) {
    body.page-contact .main-contact-section {
        padding: 5rem 0 8rem;
    }
}

body.page-contact .contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    body.page-contact .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Form Column */
body.page-contact .form-column {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

body.page-contact .form-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

body.page-contact .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

body.page-contact .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

body.page-contact .form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

body.page-contact .form-group input,
body.page-contact .form-group select,
body.page-contact .form-group textarea {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

body.page-contact .form-group input::placeholder,
body.page-contact .form-group textarea::placeholder {
    color: rgba(156, 163, 175, 0.5);
}

body.page-contact .form-group input:focus,
body.page-contact .form-group select:focus,
body.page-contact .form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 2px rgba(0, 217, 255, 0.2);
}

body.page-contact .form-group select {
    cursor: pointer;
}

body.page-contact .form-group select option {
    background: #1a1a2e;
    color: white;
}

body.page-contact .form-group textarea {
    resize: none;
}

body.page-contact .error-message {
    font-size: 0.875rem;
    color: #ef4444;
    display: none;
}

body.page-contact .form-group.error .error-message {
    display: block;
}

body.page-contact .form-group.error input,
body.page-contact .form-group.error select,
body.page-contact .form-group.error textarea {
    border-color: #ef4444;
}

body.page-contact .success-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.5rem;
    color: var(--green);
}

body.page-contact .success-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2;
}

/* Info Column */
body.page-contact .info-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

body.page-contact .info-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border-radius: 1rem;
    padding: 2rem;
    overflow: hidden;
}

body.page-contact .quick-contact {
    border: 1px solid rgba(139, 92, 246, 0.3);
}

body.page-contact .info-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

body.page-contact .quick-contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

body.page-contact .quick-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

body.page-contact .quick-link.whatsapp {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

body.page-contact .quick-link.whatsapp:hover {
    background: rgba(16, 185, 129, 0.2);
    transform: translateX(5px);
}

body.page-contact .quick-link.phone {
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
}

body.page-contact .quick-link.phone:hover {
    background: rgba(0, 217, 255, 0.2);
    transform: translateX(5px);
}

body.page-contact .quick-link.email {
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
}

body.page-contact .quick-link.email:hover {
    background: rgba(0, 102, 255, 0.2);
    transform: translateX(5px);
}

body.page-contact .quick-link-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    stroke-width: 2;
}

body.page-contact .quick-link.whatsapp .quick-link-icon {
    color: var(--green);
}

body.page-contact .quick-link.phone .quick-link-icon {
    color: var(--cyan);
}

body.page-contact .quick-link.email .quick-link-icon {
    color: var(--blue);
}

body.page-contact .quick-link-text {
    flex: 1;
}

body.page-contact .quick-link-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

body.page-contact .quick-link-value {
    font-weight: 600;
    color: white;
}

body.page-contact .arrow-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2;
    opacity: 0;
    transition: opacity 0.3s;
}

body.page-contact .quick-link:hover .arrow-icon {
    opacity: 1;
}

body.page-contact .quick-link.whatsapp .arrow-icon {
    color: var(--green);
}

body.page-contact .quick-link.phone .arrow-icon {
    color: var(--cyan);
}

body.page-contact .quick-link.email .arrow-icon {
    color: var(--blue);
}

body.page-contact .social-media {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(107, 114, 128, 0.3);
}

body.page-contact .social-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

body.page-contact .social-icons {
    display: flex;
    gap: 0.75rem;
}

body.page-contact .social-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

body.page-contact .social-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

body.page-contact .social-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

body.page-contact .social-icon.facebook {
    background: linear-gradient(to right, var(--blue), #0066ff);
}

body.page-contact .social-icon.instagram {
    background: linear-gradient(to right, var(--pink), var(--purple));
}

body.page-contact .social-icon.linkedin {
    background: linear-gradient(to right, #0066ff, var(--cyan));
}

/* Map Card */
body.page-contact .map-card {
    position: relative;
    border: 1px solid rgba(0, 217, 255, 0.3);
    height: 20rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.page-contact .map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

body.page-contact .map-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

body.page-contact .map-icon {
    width: 3rem;
    height: 3rem;
    color: var(--cyan);
    margin: 0 auto 1rem;
    stroke-width: 2;
}

body.page-contact .map-address {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

body.page-contact .map-city {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Why Card */
body.page-contact .why-card {
    border: 1px solid rgba(0, 102, 255, 0.3);
}

body.page-contact .why-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

body.page-contact .why-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

body.page-contact .why-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

body.page-contact .why-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: linear-gradient(to right, var(--cyan), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

body.page-contact .why-icon svg {
    width: 1rem;
    height: 1rem;
    color: white;
    stroke-width: 2;
}

body.page-contact .why-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Bottom CTA Section */
body.page-contact .bottom-cta-section {
    position: relative;
    padding: 5rem 0;
}

body.page-contact .cta-card {
    position: relative;
    background: linear-gradient(to right, rgba(0, 217, 255, 0.1), rgba(0, 102, 255, 0.1), rgba(99, 102, 241, 0.1));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

body.page-contact .cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    body.page-contact .cta-title {
        font-size: 2.25rem;
    }
}

body.page-contact .cta-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    body.page-contact .cta-subtitle {
        font-size: 1.25rem;
    }
}

body.page-contact .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

/* Machines Page */
body.page-machines {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', 'Segoe UI', sans-serif;
    background: radial-gradient(circle at 20% 20%, #121826, var(--bg-main) 60%);
    color: var(--text-paragraph);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.7;
    position: relative;
}

body.page-machines::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(62, 166, 255, 0.11), transparent 36%),
        radial-gradient(circle at 82% 80%, rgba(139, 124, 255, 0.09), transparent 38%),
        radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(9, 12, 17, 0.62) 100%);
    z-index: 0;
    pointer-events: none;
    animation: machines-ambient-float 18s ease-in-out infinite alternate;
}

body.page-machines::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.45;
}

body.page-machines h1,
body.page-machines h2,
body.page-machines h3,
body.page-machines h4,
body.page-machines h5,
body.page-machines h6 {
    font-family: inherit;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-heading);
}

body.page-machines .machines-page {
    position: relative;
    z-index: 2;
}

body.page-machines .machines-hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

body.page-machines .machines-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 17, 34, 0.82), rgba(6, 15, 30, 0.35));
}

body.page-machines .machines-hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    color: #ffffff;
}

body.page-machines .machines-hero-content h1 {
    font-size: 3.25rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

body.page-machines .machines-hero-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

body.page-machines .machines-marquee {
    background: #1868d6;
    color: #fff;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

body.page-machines .machines-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    padding: 0.55rem 0;
    animation: machines-marquee 42s linear infinite;
}

body.page-machines .machines-marquee-track span {
    font-size: 0.78rem;
    font-weight: 600;
}

@keyframes machines-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

body.page-machines .machines-about {
    padding: 5.5rem 0 3.5rem;
}

body.page-machines .machines-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

body.page-machines .machines-about-text h2 {
    color: var(--text-heading);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

body.page-machines .machines-about-text p {
    color: var(--text-paragraph);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.6rem;
    max-width: 850px;
}

body.page-machines .machines-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

body.page-machines .machines-stat-item {
    text-align: center;
}

body.page-machines .machines-stat-item h3 {
    color: var(--blue-400);
    font-size: clamp(2rem, 3.2vw, 3.25rem);
    margin-bottom: 0.4rem;
    line-height: 1;
}

body.page-machines .machines-stat-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

body.page-machines .machines-support {
    padding: 2rem 0 5rem;
}

body.page-machines .machines-support-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

body.page-machines .machines-support-image {
    width: 100%;
    border-radius: 10px;
    display: block;
    box-shadow: 0 14px 35px rgba(5, 13, 26, 0.45);
}

body.page-machines .machines-support-content h2 {
    color: var(--text-heading);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

body.page-machines .machines-support-content p {
    color: var(--text-paragraph);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 1.15rem;
}

body.page-machines .machines-support-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

body.page-machines .machines-support-content li {
    color: var(--text-heading);
    font-size: 1.1rem;
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

body.page-machines .machines-support-content li::before {
    content: '●';
    color: var(--blue-400);
    font-size: 0.85rem;
    flex-shrink: 0;
}

@keyframes machines-ambient-float {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        transform: translate3d(0, -20px, 0) scale(1.02);
    }
}

@media (max-width: 991px) {
    body.page-machines .machines-hero {
        min-height: 520px;
    }

    body.page-machines .machines-hero-content h1 {
        font-size: 2.3rem;
    }

    body.page-machines .machines-about,
    body.page-machines .machines-support {
        padding-top: 3.25rem;
    }

    body.page-machines .machines-about-grid,
    body.page-machines .machines-support-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    body.page-machines .machines-stats {
        max-width: 420px;
    }
}

@media (min-width: 640px) {
    body.page-contact .cta-buttons {
        flex-direction: row;
    }
}


/* Sticky WhatsApp */
body.page-contact .sticky-whatsapp {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem;
    background: rgba(11, 15, 20, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.3s;
}

@media (min-width: 1024px) {
    body.page-contact .sticky-whatsapp {
        display: none;
    }
}

body.page-contact .sticky-whatsapp.visible {
    transform: translateY(0);
}

body.page-contact .sticky-whatsapp .btn-whatsapp {
    width: 100%;
}

/* Animations */
body.page-contact .fade-in-up {
    opacity: 0;
    animation: contact_fadeInUp 0.8s ease-out forwards;
}

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

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

body.page-contact .fade-in-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s, transform 0.6s;
    transition-delay: calc(var(--delay, 0) * 1s);
}

body.page-contact .fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


/* HOME */

/* Reset & Variables */
:root {
    --bg-main: #0B0F14;
    --bg-secondary: #0E131A;
    --bg-deep: #090C11;
    --glass-overlay: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --accent-primary: #3EA6FF;
    --accent-hover: #6BBEFF;
    --accent-glow: rgba(62, 166, 255, 0.35);
    --accent-violet: #8B7CFF;
    --text-heading: #EAF2FF;
    --text-paragraph: #A9B4C2;
    --text-muted: #6B7785;
    --text-icon: #C7D0DC;
}

html body.page-home {
    scroll-behavior: smooth;
}

body.page-home {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', 'Segoe UI', sans-serif;
    background: radial-gradient(circle at 20% 20%, #121826, var(--bg-main) 60%);
    color: var(--text-paragraph);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.7;
    position: relative;
}

body.page-home::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(62, 166, 255, 0.08), transparent 35%),
        radial-gradient(circle at 85% 85%, rgba(139, 124, 255, 0.06), transparent 35%),
        radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(9, 12, 17, 0.6) 100%);
    z-index: 0;
    pointer-events: none;
}

body.page-home::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

body.page-home h1,
body.page-home h2,
body.page-home h3,
body.page-home h4,
body.page-home h5,
body.page-home h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-heading);
}

/* Background Effects */
.bg-effects {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.ambient-light {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(60px);
}

.ambient-blue {
    background: radial-gradient(circle, rgba(62, 166, 255, 0.08), transparent 70%);
    top: 5%;
    left: 5%;
    animation: home_float-blue 16s ease-in-out infinite;
}

.ambient-violet {
    background: radial-gradient(circle, rgba(139, 124, 255, 0.06), transparent 70%);
    bottom: 5%;
    right: 5%;
    animation: home_float-violet 18s ease-in-out infinite;
}

@keyframes home_float-blue {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(0, 60px) scale(1.15);
        opacity: 0.5;
    }
}

@keyframes home_float-violet {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }

    50% {
        transform: translate(0, -60px) scale(1.2);
        opacity: 0.4;
    }
}

body.page-home .particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: home_particle-home_float 15s ease-in-out infinite;
}

@keyframes home_particle-float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.1;
    }

    50% {
        transform: translateY(-150px) translateX(var(--drift, 0px));
        opacity: 0.3;
    }
}

/* Header */
.header {
    position: fixed;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 100;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    animation: home_slideDown 0.6s ease-out;
    padding: 0px 10px;
}

.header::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

@keyframes home_slideDown {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.2rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 12px;
}

.logo-icon .site-logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading, var(--text-primary, #EAF2FF));
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-paragraph, var(--text-secondary, #A9B4C2));
    transition: color 0.3s;
    position: relative;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-primary, var(--cyan, #3EA6FF));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-link:hover {
    color: var(--text-heading, var(--text-primary, #EAF2FF));
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.mobile-menu-btn {
    display: flex;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 12px;
    color: var(--text-icon, var(--text-primary, #C7D0DC));
    cursor: pointer;
}

.header .btn.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary, var(--cyan, #3EA6FF)), var(--accent-violet, var(--blue, #8B7CFF)));
    color: #fff;
    border: none;
}

.btn-desktop-only {
    display: none;
}

.mobile-menu {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
    animation: home_slideDown 0.3s ease-out;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.header .mobile-nav .btn.btn-primary {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 14px;
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--bg-main);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 20px 40px var(--accent-glow);
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: #CFE6FF;
    border: 1px solid var(--accent-primary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(62, 166, 255, 0.1);
    transform: scale(1.05);
}

/* Hero Dashboard */
body.page-home .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1rem 5rem;
    z-index: 10;
}

body.page-home .dashboard-panel {
    position: relative;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    animation: home_fadeInUp 1s ease-out, home_float 6s ease-in-out infinite 1s;
}

@keyframes home_fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }

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

@keyframes home_float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

body.page-home .shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(62, 166, 255, 0.1) 50%, transparent 70%);
    animation: home_shimmer 8s linear infinite;
    pointer-events: none;
}

@keyframes home_shimmer {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(200%);
    }
}

body.page-home .dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
}

@media (min-width: 1024px) {
    body.page-home .dashboard-grid {
        grid-template-columns: 1fr 2fr 1fr;
        padding: 3rem;
    }
}

body.page-home .widget {
    border-radius: 24px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

body.page-home .widget:hover {
    transform: scale(1.03);
}

/* Hero Content */
body.page-home .hero-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
}

body.page-home .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(62, 166, 255, 0.1);
    border: 1px solid rgba(62, 166, 255, 0.2);
    color: #CFE6FF;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

body.page-home .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: home_fadeInUp 0.8s ease-out 0.4s both;
}

body.page-home .gradient-text {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.page-home .hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 42rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    animation: home_fadeInUp 0.8s ease-out 0.5s both;
}

body.page-home .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    animation: home_fadeInUp 0.8s ease-out 0.6s both;
}

body.page-home .home-hero-visual {
    position: relative;
    width: min(100%, 560px);
    height: clamp(250px, 34vw, 360px);
    margin: 1.25rem 0 1.75rem;
    border-radius: 20px;
    overflow: hidden;
}

body.page-home .home-hero-visual::before,
body.page-home .home-hero-visual::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

body.page-home .home-hero-visual::before {
    width: 320px;
    height: 320px;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(91, 184, 255, 0.4), rgba(91, 184, 255, 0));
    filter: blur(20px);
}

body.page-home .home-hero-visual::after {
    inset: 10% 12%;
    border: 1px solid rgba(152, 215, 255, 0.2);
    box-shadow: 0 0 36px rgba(84, 184, 255, 0.2);
}

body.page-home .home-hero-orbit {
    position: absolute;
    left: 50%;
    top: 55%;
    border-radius: 50%;
    border: 1px solid rgba(130, 205, 255, 0.38);
    box-shadow: 0 0 24px rgba(66, 167, 255, 0.25), inset 0 0 16px rgba(141, 212, 255, 0.16);
    transform-origin: center;
}

body.page-home .home-hero-orbit-primary {
    width: clamp(190px, 28vw, 320px);
    height: clamp(76px, 9vw, 110px);
    transform: translate(-50%, -50%) rotate(12deg);
    animation: home_orbitSpin 12s linear infinite;
}

body.page-home .home-hero-orbit-secondary {
    width: clamp(165px, 23vw, 280px);
    height: clamp(66px, 8vw, 96px);
    opacity: 0.65;
    transform: translate(-50%, -50%) rotate(-8deg);
    animation: home_orbitSpinReverse 10s linear infinite;
}

body.page-home .home-hero-object {
    position: absolute;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 36px rgba(2, 5, 29, 0.68));
}

body.page-home .home-hero-object-main {
    width: clamp(170px, 23vw, 300px);
    left: 50%;
    top: 58%;
    transform: translate(-50%, -50%) rotate(-9deg);
    animation: home_floatCore 6s ease-in-out infinite, home_objectRotateMain 14s linear infinite;
    z-index: 3;
}

body.page-home .home-hero-object-panel {
    width: clamp(142px, 20vw, 255px);
    left: clamp(8%, 9vw, 16%);
    top: clamp(15%, 17%, 22%);
    transform: rotate(-6deg);
    animation: home_floatPanel 7s ease-in-out infinite, home_objectRotatePanel 11s linear infinite;
    z-index: 2;
}

body.page-home .home-hero-object-board {
    width: clamp(105px, 14vw, 210px);
    right: clamp(6%, 9vw, 14%);
    top: clamp(10%, 13%, 16%);
    transform: rotate(10deg);
    animation: home_floatBoard 6.5s ease-in-out infinite, home_objectRotateBoard 9s linear infinite;
    z-index: 2;
}

@keyframes home_orbitSpin {
    from {
        transform: translate(-50%, -50%) rotate(12deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(372deg);
    }
}

@keyframes home_orbitSpinReverse {
    from {
        transform: translate(-50%, -50%) rotate(-8deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(-368deg);
    }
}

@keyframes home_floatCore {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(-9deg) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) rotate(-7deg) translateY(-10px);
    }
}

@keyframes home_floatPanel {

    0%,
    100% {
        transform: rotate(-6deg) translateY(0);
    }

    50% {
        transform: rotate(-4deg) translateY(-10px);
    }
}

@keyframes home_floatBoard {

    0%,
    100% {
        transform: rotate(10deg) translateY(0);
    }

    50% {
        transform: rotate(8deg) translateY(-8px);
    }
}

@keyframes home_objectRotateMain {
    from {
        rotate: 0deg;
    }

    to {
        rotate: 360deg;
    }
}

@keyframes home_objectRotatePanel {
    from {
        rotate: 0deg;
    }

    to {
        rotate: -360deg;
    }
}

@keyframes home_objectRotateBoard {
    from {
        rotate: 0deg;
    }

    to {
        rotate: 360deg;
    }
}

@media (max-width: 767px) {
    body.page-home .home-hero-visual {
        height: clamp(230px, 72vw, 320px);
        margin: 1rem 0 1.5rem;
    }
}

/* Status Circle */
body.page-home .status-circle {
    position: relative;
    width: 128px;
    height: 128px;
    margin: 0 auto 1rem;
}

body.page-home .progress-ring {
    transform: rotate(-90deg);
}

body.page-home .progress-ring-bg {
    stroke: rgba(62, 166, 255, 0.15);
    stroke-width: 8;
    fill: none;
}

body.page-home .progress-ring-fill {
    stroke: #3EA6FF;
    stroke-width: 8;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 352;
    stroke-dashoffset: 352;
    animation: home_fillRing 2s ease-out 0.5s forwards;
}

@keyframes home_fillRing {
    to {
        stroke-dashoffset: 44;
    }
}

body.page-home .status-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-heading);
}

body.page-home .progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 0.5rem;
}

body.page-home .progress-fill {
    height: 100%;
    background: var(--accent-primary);
    border-radius: 4px;
    width: 0;
    animation: home_fillProgress 1.5s ease-out 0.5s forwards;
}

@keyframes home_fillProgress {
    to {
        width: 75%;
    }
}

body.page-home .indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    animation: home_pulse 2s ease-in-out infinite;
}

@keyframes home_pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(0.9);
    }
}

body.page-home .service-icon-small {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-violet));
    flex-shrink: 0;
}

/* Sections */
body.page-home .section {
    position: relative;
    padding: 8rem 1rem;
    z-index: 10;
}

body.page-home .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

body.page-home .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

body.page-home .section-description {
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
}

/* Services */
body.page-home .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

body.page-home .service-card {
    position: relative;
    border-radius: 24px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px) rotateX(-10deg);
}

body.page-home .service-card.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

body.page-home .service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

body.page-home .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(110deg, transparent 30%, rgba(62, 166, 255, 0.05) 50%, transparent 70%);
    opacity: 0;
}

body.page-home .service-card:hover::before {
    animation: home_shimmer 2s ease-in-out;
}

body.page-home .service-icon-large {
    display: inline-flex;
    padding: 1rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

body.page-home .service-card:hover .service-icon-large {
    transform: scale(1.1) rotate(5deg);
}

body.page-home .icon-blue {
    background: var(--accent-primary);
}

body.page-home .icon-violet {
    background: var(--accent-violet);
}

body.page-home .service-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* Products */
body.page-home .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

body.page-home .product-card {
    position: relative;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
    filter: blur(20px);
}

body.page-home .product-card.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

body.page-home .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

body.page-home .product-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

body.page-home .product-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(62, 166, 255, 0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    pointer-events: none;
    z-index: 10;
}

body.page-home .product-card:hover .product-shine {
    animation: home_shine 0.8s ease-in-out;
}

@keyframes home_shine {
    to {
        transform: translateX(200%);
    }
}

body.page-home .product-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

body.page-home .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.page-home .product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 15, 20, 0.9), transparent);
}

body.page-home .product-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.75rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
    transition: transform 0.3s;
}

body.page-home .product-card:hover .product-icon {
    transform: scale(1.1) rotate(10deg);
}

body.page-home .product-content {
    padding: 1.5rem;
}

body.page-home .product-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

/* Workflow */
body.page-home .workflow-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

body.page-home .workflow-line {
    position: absolute;
    top: 6rem;
    left: 0;
    right: 0;
    height: 1px;
    display: none;
}

@media (min-width: 1024px) {
    body.page-home .workflow-line {
        display: block;
    }
}

body.page-home .workflow-line-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(62, 166, 255, 0.2), rgba(139, 124, 255, 0.2));
}

body.page-home .workflow-line-glow {
    position: absolute;
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, transparent 0%, #3EA6FF 50%, transparent 100%);
    animation: home_lineGlow 4s linear infinite;
}

@keyframes home_lineGlow {
    from {
        left: 0%;
    }

    to {
        left: 80%;
    }
}

body.page-home .workflow-dot {
    position: absolute;
    top: 6rem;
    left: 10%;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    border-radius: 50%;
    background: #3EA6FF;
    box-shadow: 0 0 20px rgba(62, 166, 255, 0.8);
    animation: home_dotTravel 5s linear infinite;
    display: none;
}

@media (min-width: 1024px) {
    body.page-home .workflow-dot {
        display: block;
    }
}

@keyframes home_dotTravel {
    from {
        left: 10%;
    }

    to {
        left: 90%;
    }
}

body.page-home .workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

body.page-home .workflow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: scale(0.8) translateY(30px);
}

body.page-home .workflow-node.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition: all 0.6s ease-out;
}

body.page-home .node-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s;
}

body.page-home .node-wrapper:hover {
    transform: scale(1.15);
}

body.page-home .node-glow {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(62, 166, 255, 0.3), rgba(139, 124, 255, 0.3));
    filter: blur(24px);
    animation: home_glowPulse 3s ease-in-out infinite;
}

@keyframes home_glowPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

body.page-home .node-circle {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}

body.page-home .node-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-violet));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(62, 166, 255, 0.4);
}

body.page-home .node-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

body.page-home .node-description {
    font-size: 0.875rem;
}

/* Contact Form */
body.page-home .contact-panel {
    max-width: 42rem;
    margin: 0 auto;
    border-radius: 28px;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
    position: relative;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
}

body.page-home .contact-panel.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.8s ease-out;
    animation: home_contactFloat 5s ease-in-out infinite 0.8s;
}

@keyframes home_contactFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

body.page-home .contact-panel::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 28px 28px 0 0;
}

body.page-home .form-group {
    margin-bottom: 1.5rem;
}

body.page-home .form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

body.page-home .input-wrapper {
    position: relative;
}

body.page-home .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

body.page-home .input-icon.textarea-icon {
    top: 1rem;
    transform: none;
}

body.page-home .form-control {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    color: var(--text-heading);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

body.page-home .form-control:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.08);
}

body.page-home textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

body.page-home select.form-control {
    cursor: pointer;
}

body.page-home select.form-control option {
    background: var(--bg-secondary);
}

/* Footer */
.footer {
    padding: 4rem 1rem;
    position: relative;
    z-index: 10;
}

.footer-panel {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 28px;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.footer-panel.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
    animation: home_footerFloat 5s ease-in-out infinite 0.8s;
}

@keyframes home_footerFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.footer-panel::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 28px 28px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s;
    animation: home_fadeIn 1s ease-out 1s both, home_bounce 2s ease-in-out infinite 2s;
}

@keyframes home_fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes home_bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.space-y-6>*+* {
    margin-top: 1.5rem;
}

.space-y-3>*+* {
    margin-top: 0.75rem;
}

.space-y-2>*+* {
    margin-top: 0.5rem;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

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

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

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

.w-full {
    width: 100%;
}

.block {
    display: block;
}

/* Scrollbar */
body.page-home ::-webkit-scrollbar {
    width: 10px;
}

body.page-home ::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

body.page-home ::-webkit-scrollbar-thumb {
    background: rgba(62, 166, 255, 0.3);
    border-radius: 5px;
}

body.page-home ::-webkit-scrollbar-thumb:hover {
    background: rgba(62, 166, 255, 0.5);
}

/* Responsive */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .btn-desktop-only {
        display: inline-flex;
    }
}

@media (max-width: 767px) {
    .btn-desktop-only {
        display: none;
    }

    body.page-home .floating-whatsapp {
        width: 56px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    body.page-home .section {
        padding: 4rem 1rem;
    }

    body.page-home .dashboard-panel {
        padding: 1.5rem;
    }

    body.page-home .contact-panel,
    .footer-panel {
        padding: 2rem 1.5rem;
    }
}


/* PRODUCT */
/* Reset and Base Styles */

body.page-product-details {
    --bg-dark: #0B0F14;
    --bg-dark-alt: #0E131A;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --violet-400: #a78bfa;
    --violet-500: #8b5cf6;
    --violet-600: #7c3aed;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --yellow-400: #facc15;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --orange-500: #f97316;
    --red-400: #f87171;
    --white: #ffffff;
}

body.page-product-details {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(to bottom right, var(--bg-dark), var(--bg-dark-alt), var(--bg-dark));
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 70px;
}

/* Particle Background */
body.page-product-details .particle-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

body.page-product-details .vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
}

body.page-product-details .particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

body.page-product-details .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(96, 165, 250, 0.2);
    border-radius: 50%;
    animation: product_float 15s infinite ease-in-out;
}

body.page-product-details .grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 50px 50px;
}

@keyframes product_float {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.2;
    }

    50% {
        transform: translateY(-30px);
        opacity: 0.5;
    }
}

/* Container */
body.page-product-details .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}


/* Icons */
body.page-product-details .icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

body.page-product-details .icon-lg {
    width: 1.5rem;
    height: 1.5rem;
}

body.page-product-details .icon-xl {
    width: 2rem;
    height: 2rem;
}

body.page-product-details .icon-xxl {
    width: 3rem;
    height: 3rem;
}

/* Buttons */
body.page-product-details button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s;
}

body.page-product-details .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(to right, var(--blue-500), var(--blue-600));
    color: var(--white);
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

body.page-product-details .btn-primary:hover {
    background: linear-gradient(to right, var(--blue-600), var(--blue-600));
    transform: scale(1.05);
}

body.page-product-details .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

body.page-product-details .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

body.page-product-details .btn-large {
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    width: 100%;
}

body.page-product-details .btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    width: 100%;
}

body.page-product-details .btn-gradient {
    background: linear-gradient(to right, var(--blue-500), var(--violet-500));
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.5);
}

body.page-product-details .btn-gradient:hover {
    background: linear-gradient(to right, var(--blue-600), var(--violet-600));
}

body.page-product-details .btn-warning {
    background: linear-gradient(to right, var(--amber-500), var(--orange-500));
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
    padding: 5px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

body.page-product-details .btn-warning:hover {
    background: linear-gradient(to right, #d97706, #ea580c);
}

body.page-product-details .btn-whatsapp {
    background: linear-gradient(to right, var(--green-500), var(--green-600));
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

body.page-product-details .btn-whatsapp:hover {
    background: linear-gradient(to right, var(--green-600), var(--green-600));
}

body.page-product-details .btn-glow {
    position: relative;
    overflow: hidden;
}

body.page-product-details .btn-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(96, 165, 250, 0.3);
    filter: blur(20px);
    animation: product_pulse 2s infinite;
}

/* Glass Panel */
body.page-product-details .glass-panel {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

/* Main Content */
body.page-product-details .main-content {
    position: relative;
    z-index: 10;
    padding: 2rem 1rem;
}

/* Product Section */
body.page-product-details .product-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    body.page-product-details .product-section {
        grid-template-columns: 1fr 1fr;
    }
}

/* Product Viewer */
body.page-product-details .product-viewer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

body.page-product-details .main-image-container {
    position: relative;
}

body.page-product-details .image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 20px;
    filter: blur(40px);
    opacity: 0.5;
    transition: opacity 0.3s;
}

body.page-product-details .main-image-container:hover .image-glow {
    opacity: 1;
}

body.page-product-details .main-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: zoom-in;
    transition: transform 0.3s;
}

body.page-product-details .main-image:hover {
    transform: scale(1.02);
}

body.page-product-details .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

body.page-product-details .main-image.zoomed img {
    transform: scale(1.5);
}

body.page-product-details .reflection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    background-size: 200% 200%;
    animation: product_reflection 3s infinite alternate;
    pointer-events: none;
}

@keyframes product_reflection {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

body.page-product-details .zoom-indicator {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity 0.3s;
}

body.page-product-details .main-image:hover .zoom-indicator {
    opacity: 1;
}

/* Thumbnails */
body.page-product-details .thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

body.page-product-details .thumbnail {
    position: relative;
    aspect-ratio: 1;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    transition: all 0.3s;
    padding: 0;
}

body.page-product-details .thumbnail:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

body.page-product-details .thumbnail.active {
    border-color: var(--blue-500);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.5);
}

body.page-product-details .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
body.page-product-details .product-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

body.page-product-details .product-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

body.page-product-details .badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

body.page-product-details .badge {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
}

body.page-product-details .badge-new {
    background: linear-gradient(to right, var(--green-500), var(--green-600));
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

body.page-product-details .badge-stock {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--green-400);
}

body.page-product-details .badge-success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: var(--green-400);
}

body.page-product-details .badge-warning {
    background: rgba(234, 179, 8, 0.2);
    border: 1px solid rgba(234, 179, 8, 0.5);
    color: var(--yellow-400);
}

body.page-product-details .product-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-height: 220px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(96, 165, 250, 0.85) rgba(255, 255, 255, 0.08);
}

body.page-product-details .product-description::-webkit-scrollbar {
    width: 10px;
}

body.page-product-details .product-description::-webkit-scrollbar-track {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border-radius: 999px;
}

body.page-product-details .product-description::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--blue-400), var(--violet-500));
    border-radius: 999px;
    border: 2px solid rgba(11, 15, 20, 0.6);
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

body.page-product-details .product-description::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--blue-500), var(--violet-400));
}

body.page-product-details .product-description,
body.page-product-details .spec-content {
    word-break: break-word;
}

body.page-product-details .product-description p,
body.page-product-details .spec-content p {
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 0.9rem;
    line-height: 1.8;
}

body.page-product-details .product-description h1,
body.page-product-details .spec-content h1,
body.page-product-details .product-description h2,
body.page-product-details .spec-content h2,
body.page-product-details .product-description h3,
body.page-product-details .spec-content h3,
body.page-product-details .product-description h4,
body.page-product-details .spec-content h4,
body.page-product-details .product-description h5,
body.page-product-details .spec-content h5,
body.page-product-details .product-description h6,
body.page-product-details .spec-content h6 {
    color: var(--white);
    font-weight: 700;
    line-height: 1.3;
    margin: 1.1rem 0 0.7rem;
}

body.page-product-details .product-description h1,
body.page-product-details .spec-content h1 {
    font-size: clamp(1.35rem, 3.2vw, 1.85rem);
}

body.page-product-details .product-description h2,
body.page-product-details .spec-content h2 {
    font-size: clamp(1.2rem, 2.7vw, 1.55rem);
}

body.page-product-details .product-description h3,
body.page-product-details .spec-content h3 {
    font-size: clamp(1.05rem, 2.3vw, 1.3rem);
}

body.page-product-details .product-description h4,
body.page-product-details .spec-content h4,
body.page-product-details .product-description h5,
body.page-product-details .spec-content h5,
body.page-product-details .product-description h6,
body.page-product-details .spec-content h6 {
    font-size: clamp(0.95rem, 2vw, 1.12rem);
}

body.page-product-details .product-description ul,
body.page-product-details .spec-content ul,
body.page-product-details .product-description ol,
body.page-product-details .spec-content ol {
    margin: 0 0 1rem;
    padding-left: 1.2rem;
}

body.page-product-details .product-description li,
body.page-product-details .spec-content li {
    margin: 0.35rem 0;
    color: rgba(255, 255, 255, 0.8);
}

body.page-product-details .product-description a,
body.page-product-details .spec-content a {
    color: var(--blue-400);
    text-decoration: underline;
    text-underline-offset: 2px;
}

body.page-product-details .product-description a:hover,
body.page-product-details .spec-content a:hover {
    color: var(--violet-400);
}

body.page-product-details .product-description strong,
body.page-product-details .spec-content strong {
    color: var(--white);
}

body.page-product-details .product-description hr,
body.page-product-details .spec-content hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 1rem 0;
}

body.page-product-details .product-description img,
body.page-product-details .spec-content img,
body.page-product-details .product-description video,
body.page-product-details .spec-content video,
body.page-product-details .product-description iframe,
body.page-product-details .spec-content iframe,
body.page-product-details .product-description embed,
body.page-product-details .spec-content embed,
body.page-product-details .product-description object,
body.page-product-details .spec-content object {
    display: block;
    width: 100%;
    max-width: 100%;
    border: 0;
    border-radius: 0.75rem;
    margin: 0.9rem 0;
}

body.page-product-details .product-description iframe,
body.page-product-details .spec-content iframe,
body.page-product-details .product-description video,
body.page-product-details .spec-content video,
body.page-product-details .product-description embed,
body.page-product-details .spec-content embed,
body.page-product-details .product-description object,
body.page-product-details .spec-content object {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 180px;
}

body.page-product-details .product-description table,
body.page-product-details .spec-content table {
    width: 100%;
    max-width: 100%;
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
    margin: 1rem 0;
}

body.page-product-details .product-description th,
body.page-product-details .spec-content th,
body.page-product-details .product-description td,
body.page-product-details .spec-content td {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.55rem 0.65rem;
    color: rgba(255, 255, 255, 0.82);
    white-space: nowrap;
}

body.page-product-details .product-description blockquote,
body.page-product-details .spec-content blockquote {
    margin: 0.9rem 0;
    padding: 0.7rem 0.9rem;
    border-left: 3px solid var(--blue-400);
    background: rgba(59, 130, 246, 0.08);
    color: rgba(255, 255, 255, 0.82);
    border-radius: 0.5rem;
}

@media (max-width: 640px) {

    body.page-product-details .product-description,
    body.page-product-details .spec-content {
        font-size: 0.94rem;
    }

    body.page-product-details .product-description iframe,
    body.page-product-details .spec-content iframe,
    body.page-product-details .product-description video,
    body.page-product-details .spec-content video,
    body.page-product-details .product-description embed,
    body.page-product-details .spec-content embed,
    body.page-product-details .product-description object,
    body.page-product-details .spec-content object {
        min-height: 170px;
    }
}

body.page-product-details .compatibility h3 {
    font-size: 1.125rem;
    color: var(--blue-400);
    margin-bottom: 0.75rem;
}

body.page-product-details .compatibility-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

body.page-product-details .compatibility-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

body.page-product-details .compatibility-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--blue-400);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Order Panel */
body.page-product-details .order-panel {
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-color: rgba(59, 130, 246, 0.3);
}

body.page-product-details .price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

body.page-product-details .label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

body.page-product-details .price {
    font-size: 1.5rem;
    color: var(--blue-400);
    display: flex;
    flex-direction: column;
}

body.page-product-details .price del {
    color: #525252;
    font-size: 1.1rem;
}

body.page-product-details .price ins {
    font-weight: bold;
}


body.page-product-details .stock-status {
    font-size: 1.125rem;
    color: var(--green-400);
}

body.page-product-details .text-right {
    text-align: right;
}

body.page-product-details .delivery-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

body.page-product-details .action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Quick Info */
body.page-product-details .quick-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

body.page-product-details .quick-info-item {
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s;
}

body.page-product-details .quick-info-item:hover {
    transform: scale(1.05);
}

body.page-product-details .quick-info-item .icon-lg {
    color: var(--blue-400);
    margin: 0 auto 0.5rem;
}

/* Specifications Panel */
body.page-product-details .specification-panel {
    padding: 0;
    margin-bottom: 2rem;
    overflow: hidden;
}

body.page-product-details .spec-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: transparent;
    color: var(--white);
    text-align: left;
    transition: background 0.3s;
}

body.page-product-details .spec-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

body.page-product-details .spec-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

body.page-product-details .accent-bar {
    width: 4px;
    height: 2rem;
    background: linear-gradient(to bottom, var(--blue-500), var(--violet-500));
    border-radius: 2px;
}

body.page-product-details .spec-title h2 {
    font-size: 1.25rem;
}

body.page-product-details .chevron {
    color: var(--blue-400);
    transition: transform 0.3s;
}

body.page-product-details .chevron.rotated {
    transform: rotate(180deg);
}

body.page-product-details .spec-content {
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(96, 165, 250, 0.85) rgba(255, 255, 255, 0.08);
}

body.page-product-details .spec-content.collapsed {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
}

body.page-product-details .spec-content::-webkit-scrollbar {
    width: 10px;
}

body.page-product-details .spec-content::-webkit-scrollbar-track {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border-radius: 999px;
}

body.page-product-details .spec-content::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--blue-400), var(--violet-500));
    border-radius: 999px;
    border: 2px solid rgba(11, 15, 20, 0.6);
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

body.page-product-details .spec-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--blue-500), var(--violet-400));
}

body.page-product-details .spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.page-product-details .spec-item:last-child {
    border-bottom: none;
}

body.page-product-details .spec-item span:first-child {
    color: rgba(255, 255, 255, 0.6);
}

body.page-product-details .spec-value {
    font-weight: 500;
    color: var(--blue-400);
}

/* Help Section */
body.page-product-details .help-section {
    background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.1), rgba(249, 115, 22, 0.1));
    border-color: rgba(245, 158, 11, 0.3);
    margin-bottom: 2rem;
}

body.page-product-details .help-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

body.page-product-details .help-icon {
    flex-shrink: 0;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

body.page-product-details .help-icon .icon-xl {
    color: var(--amber-400);
}

body.page-product-details .help-text h3 {
    font-size: 1.25rem;
    color: var(--amber-400);
    margin-bottom: 0.5rem;
}

body.page-product-details .help-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Trust Badges */
body.page-product-details .trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

body.page-product-details .trust-badge {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s;
}

body.page-product-details .trust-badge:hover {
    transform: translateY(-5px);
}

body.page-product-details .badge-icon {
    display: inline-block;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.3);
    margin-bottom: 0.75rem;
    transition: transform 0.6s;
}

body.page-product-details .trust-badge:hover .badge-icon {
    transform: rotate(360deg);
}

body.page-product-details .badge-icon .icon-lg {
    color: var(--blue-400);
}

body.page-product-details .trust-badge h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

body.page-product-details .trust-badge p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* CTA Section */
body.page-product-details .cta-section {
    position: relative;
    margin-bottom: 3rem;
    overflow: hidden;
}

body.page-product-details .cta-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    filter: blur(60px);
}

body.page-product-details .cta-content {
    position: relative;
    background: linear-gradient(to right, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    text-align: center;
    padding: 3rem 2rem;
}

body.page-product-details .cta-icon {
    display: inline-block;
    padding: 1rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.3);
    margin-bottom: 1.5rem;
}

body.page-product-details .cta-icon .icon-xxl {
    color: var(--blue-400);
}

body.page-product-details .gradient-text {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--blue-400), var(--violet-400));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.page-product-details .cta-content>p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
    line-height: 1.8;
}

body.page-product-details .cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
}

/* Related Products */
body.page-product-details .related-products {
    margin-bottom: 3rem;
}

body.page-product-details .section-header {
    margin-bottom: 1.5rem;
}

body.page-product-details .section-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

body.page-product-details .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

body.page-product-details .products-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

body.page-product-details .products-scroll.dragging,
body.page-product-details .products-scroll.dragging * {
    user-select: none;
    -webkit-user-select: none;
}

body.page-product-details .products-scroll.dragging {
    cursor: grabbing;
}

body.page-product-details .products-scroll::-webkit-scrollbar {
    display: none;
}

body.page-product-details .product-card {
    flex-shrink: 0;
    width: 280px;
    scroll-snap-align: start;
    transition: all 0.3s;
    padding: 0;
    overflow: hidden;
}

body.page-product-details .product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.5);
}

body.page-product-details .product-card:hover .product-image img {
    transform: scale(1.1);
}

body.page-product-details .product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

body.page-product-details .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

body.page-product-details .availability-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(20px);
    font-size: 0.75rem;
    font-weight: 500;
}

body.page-product-details .product-card-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

body.page-product-details .product-model {
    font-size: 0.875rem;
    color: var(--blue-400);
}

body.page-product-details .product-card-content h3 {
    font-size: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.page-product-details .scroll-hint {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 1rem;
}


/* WhatsApp Float */
body.page-product-details .whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 100;
}

body.page-product-details .whatsapp-popup {
    position: absolute;
    bottom: 5rem;
    right: 0;
    width: 320px;
    backdrop-filter: blur(20px);
    background: rgba(11, 15, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transition: all 0.3s;
}

body.page-product-details .whatsapp-popup.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

body.page-product-details .popup-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem;
    background: transparent;
    color: var(--white);
    border-radius: 0.5rem;
    transition: background 0.3s;
}

body.page-product-details .popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

body.page-product-details .whatsapp-popup h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

body.page-product-details .whatsapp-popup>p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

body.page-product-details .whatsapp-popup .btn-whatsapp {
    width: 100%;
    margin-bottom: 1rem;
    justify-content: center;
}

body.page-product-details .popup-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.page-product-details .whatsapp-button {
    position: relative;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(to right, var(--green-500), var(--green-600));
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

body.page-product-details .whatsapp-button:hover {
    transform: scale(1.1);
    background: linear-gradient(to right, var(--green-600), var(--green-600));
}

body.page-product-details .whatsapp-button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(34, 197, 94, 0.3);
    filter: blur(20px);
    animation: product_pulse 2s infinite;
}

body.page-product-details .notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 1.25rem;
    height: 1.25rem;
    background: var(--red-400);
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    animation: product_pulse 1s infinite;
}

/* Modal */
body.page-product-details .modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

body.page-product-details .modal.active {
    opacity: 1;
    pointer-events: auto;
}

body.page-product-details .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    transition: all 0.3s;
}

body.page-product-details .modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(90deg);
}

body.page-product-details .modal-content {
    position: relative;
    max-width: 1200px;
    width: 100%;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s;
}

body.page-product-details .modal.active .modal-content {
    transform: scale(1);
}

body.page-product-details .modal-content img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
}

/* Animations */
@keyframes product_pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes product_slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

body.page-product-details .fade-in-left {
    animation: product_fadeInLeft 0.6s ease-out;
}

body.page-product-details .fade-in-right {
    animation: product_fadeInRight 0.6s ease-out;
}

body.page-product-details .fade-in-up {
    animation: product_fadeInUp 0.6s ease-out;
}

@keyframes product_fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes product_fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@keyframes product_fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

body.page-product-details .pulse {
    animation: product_pulse 2s infinite;
}

/* Responsive */
body.page-product-details .hide-mobile {
    display: inline;
}

@media (max-width: 640px) {
    body.page-product-details .hide-mobile {
        display: none;
    }

    body.page-product-details .product-title {
        font-size: 1.5rem;
    }

    body.page-product-details .gradient-text {
        font-size: 1.5rem;
    }

    body.page-product-details .cta-content {
        padding: 2rem 1rem;
    }

    body.page-product-details .help-content {
        flex-direction: column;
    }

    body.page-product-details .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    body.page-product-details .whatsapp-popup {
        width: calc(100vw - 3rem);
        right: 0;
    }

}


/* SHOP */
/* Reset and Base Styles */

body.page-shop {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: linear-gradient(to bottom right, #0B0F14, #0E131A, #0B0F14);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    padding-top: 50px;
}

body.page-shop .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

body.page-shop .icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2;
}

/* Background Effects */
body.page-shop .bg-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

body.page-shop .particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: shop_pulse 3s ease-in-out infinite;
}

body.page-shop .particle-1 {
    top: 25%;
    left: 25%;
    width: 16rem;
    height: 16rem;
    background: rgba(6, 182, 212, 0.05);
}

body.page-shop .particle-2 {
    bottom: 25%;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(59, 130, 246, 0.05);
    animation-delay: 1s;
}

body.page-shop .particle-3 {
    top: 50%;
    right: 33%;
    width: 18rem;
    height: 18rem;
    background: rgba(168, 85, 247, 0.05);
    animation-delay: 0.5s;
}

body.page-shop .bg-vignette {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(11, 15, 20, 0.4) 100%);
    z-index: 0;
}

@keyframes shop_pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}


/* Main Content */
body.page-shop .main-content {
    position: relative;
    padding-top: 7rem;
    padding-bottom: 3rem;
    z-index: 1;
}

body.page-shop .main-content>.container>*+* {
    margin-top: 2rem;
}

/* Hero Banner */
body.page-shop .shop-hero-banner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    overflow: hidden;
    border-radius: 28px;
    padding: clamp(1.25rem, 2vw, 2rem);
    background:
        radial-gradient(circle at 72% 55%, rgba(44, 130, 255, 0.35), rgba(44, 130, 255, 0) 45%),
        radial-gradient(circle at 58% 70%, rgba(15, 188, 255, 0.22), rgba(15, 188, 255, 0) 50%),
        linear-gradient(145deg, #060f2f 0%, #071844 40%, #030718 100%);
    border: 1px solid rgba(125, 190, 255, 0.28);
    box-shadow: 0 30px 70px rgba(2, 12, 37, 0.85), inset 0 0 0 1px rgba(117, 190, 255, 0.08);
}

body.page-shop .shop-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 60%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    pointer-events: none;
}

body.page-shop .shop-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 34rem;
}

body.page-shop .shop-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(120, 201, 255, 0.4);
    background: rgba(9, 29, 83, 0.66);
    color: #a8d9ff;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

body.page-shop .shop-hero-copy h1 {
    margin: 0;
    font-size: clamp(1.6rem, 2.2vw, 2.35rem);
    line-height: 1.2;
    color: #f2f8ff;
    text-wrap: balance;
}

body.page-shop .shop-hero-copy p {
    margin: 0.8rem 0 0;
    max-width: 32rem;
    color: rgba(219, 238, 255, 0.86);
    line-height: 1.65;
}

body.page-shop .shop-hero-tags {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

body.page-shop .shop-hero-tags span {
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.78rem;
    border: 1px solid rgba(172, 219, 255, 0.34);
    background: rgba(8, 20, 62, 0.62);
    color: #d8ecff;
}

body.page-shop .shop-hero-visual {
    position: relative;
    height: clamp(290px, 40vw, 460px);
    border-radius: 20px;
    overflow: hidden;
}

body.page-shop .shop-hero-visual::before,
body.page-shop .shop-hero-visual::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

body.page-shop .shop-hero-visual::before {
    width: 390px;
    height: 390px;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(91, 184, 255, 0.45), rgba(91, 184, 255, 0));
    filter: blur(18px);
}

body.page-shop .shop-hero-visual::after {
    inset: 8% 10%;
    border: 1px solid rgba(152, 215, 255, 0.18);
    box-shadow: 0 0 45px rgba(84, 184, 255, 0.25);
}

body.page-shop .shop-hero-orbit {
    position: absolute;
    left: 50%;
    top: 55%;
    border-radius: 50%;
    border: 1px solid rgba(130, 205, 255, 0.42);
    box-shadow: 0 0 32px rgba(66, 167, 255, 0.32), inset 0 0 20px rgba(141, 212, 255, 0.2);
    transform-origin: center;
}

body.page-shop .shop-hero-orbit-primary {
    width: clamp(190px, 29vw, 350px);
    height: clamp(78px, 10vw, 120px);
    transform: translate(-50%, -50%) rotate(12deg);
    animation: shop_orbitSpin 12s linear infinite;
}

body.page-shop .shop-hero-orbit-secondary {
    width: clamp(165px, 24vw, 300px);
    height: clamp(66px, 8vw, 104px);
    opacity: 0.65;
    transform: translate(-50%, -50%) rotate(-8deg);
    animation: shop_orbitSpinReverse 10s linear infinite;
}

body.page-shop .shop-hero-object {
    position: absolute;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 22px 40px rgba(2, 5, 29, 0.72));
}

body.page-shop .shop-hero-object-main {
    width: clamp(170px, 24vw, 325px);
    left: 50%;
    top: 58%;
    transform: translate(-50%, -50%) rotate(-9deg);
    animation: shop_floatCore 6s ease-in-out infinite;
    z-index: 3;
}

body.page-shop .shop-hero-object-panel {
    width: clamp(150px, 20vw, 285px);
    left: clamp(8%, 10vw, 18%);
    top: clamp(16%, 18%, 22%);
    transform: rotate(-6deg);
    animation: shop_floatPanel 7s ease-in-out infinite;
    z-index: 2;
}

body.page-shop .shop-hero-object-board {
    width: clamp(110px, 15vw, 230px);
    right: clamp(6%, 10vw, 14%);
    top: clamp(10%, 14%, 17%);
    transform: rotate(10deg);
    animation: shop_floatBoard 6.5s ease-in-out infinite;
    z-index: 2;
}

@media (min-width: 992px) {
    body.page-shop .shop-hero-banner {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        align-items: center;
    }

    body.page-shop .shop-hero-copy {
        padding-left: 0.5rem;
    }
}

@media (max-width: 767px) {
    body.page-shop .shop-hero-banner {
        padding: 1rem;
        border-radius: 20px;
    }

    body.page-shop .shop-hero-copy h1 {
        font-size: 1.45rem;
    }

    body.page-shop .shop-hero-copy p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    body.page-shop .shop-hero-visual {
        height: clamp(270px, 74vw, 360px);
    }

    body.page-shop .shop-hero-object-board {
        right: clamp(10%, 14vw, 18%);
        top: clamp(14%, 18%, 22%);
    }
}

@keyframes shop_orbitSpin {
    from {
        transform: translate(-50%, -50%) rotate(12deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(372deg);
    }
}

@keyframes shop_orbitSpinReverse {
    from {
        transform: translate(-50%, -50%) rotate(-8deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(-368deg);
    }
}

@keyframes shop_floatCore {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(-9deg) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) rotate(-7deg) translateY(-10px);
    }
}

@keyframes shop_floatPanel {

    0%,
    100% {
        transform: rotate(-6deg) translateY(0);
    }

    50% {
        transform: rotate(-4deg) translateY(-12px);
    }
}

@keyframes shop_floatBoard {

    0%,
    100% {
        transform: rotate(10deg) translateY(0);
    }

    50% {
        transform: rotate(8deg) translateY(-9px);
    }
}

/* Control Panel */
body.page-shop .control-panel {
    position: relative;
    backdrop-filter: blur(24px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

body.page-shop .control-panel-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

body.page-shop .control-panel-header .icon {
    color: #22d3ee;
}

body.page-shop .control-panel-header h2 {
    font-size: 1.125rem;
    color: white;
}

body.page-shop .control-panel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    body.page-shop {
        padding-top: 0px;
    }
}

@media (min-width: 768px) {
    body.page-shop .control-panel-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    body.page-shop .control-panel-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

body.page-shop .search-box {
    position: relative;
}

body.page-shop .search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

body.page-shop .search-box input {
    width: 100%;
    padding: 0.625rem 0.625rem 0.625rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    outline: none;
    transition: all 0.3s;
}

body.page-shop .search-box input::placeholder {
    color: #6b7280;
}

body.page-shop .search-box input:focus {
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2);
}

body.page-shop .control-panel-grid select {
    width: 100%;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    outline: none;
    cursor: pointer;
    transition: all 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1.5rem;
    padding-right: 2.5rem;
}

body.page-shop .control-panel-grid select option {
    background: #1f2937;
    color: white;
}

body.page-shop .control-panel-grid select:focus {
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2);
}

body.page-shop .filter-row {
    display: flex;
    gap: 0.5rem;
}

body.page-shop .filter-row select {
    flex: 1;
}

body.page-shop .btn-stock-toggle {
    padding: 0.625rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

body.page-shop .btn-stock-toggle.active {
    background: rgba(6, 182, 212, 0.2);
    border-color: rgba(34, 211, 238, 0.5);
    color: #22d3ee;
}

body.page-shop .btn-stock-toggle:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Category Panel */
body.page-shop .category-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    body.page-shop .category-panel {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    body.page-shop .category-panel {
        grid-template-columns: repeat(8, 1fr);
    }
}

body.page-shop .category-tile {
    position: relative;
    backdrop-filter: blur(24px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0;
    animation: shop_fadeInUp 0.5s forwards;
}

body.page-shop .category-tile:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.1);
}

body.page-shop .category-tile.active {
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.2), rgba(37, 99, 235, 0.2));
    border: 2px solid rgba(34, 211, 238, 0.5);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.2);
}

body.page-shop .category-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

body.page-shop .category-tile:hover::before,
body.page-shop .category-tile.active::before {
    opacity: 1;
}

body.page-shop .category-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

body.page-shop .category-icon {
    color: #9ca3af;
    transition: color 0.3s;
}

body.page-shop .category-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

body.page-shop .category-tile:hover .category-icon,
body.page-shop .category-tile.active .category-icon {
    color: #22d3ee;
}

body.page-shop .category-name {
    font-size: 0.875rem;
    text-align: center;
    color: #d1d5db;
    transition: color 0.3s;
}

body.page-shop .category-tile:hover .category-name,
body.page-shop .category-tile.active .category-name {
    color: white;
}

body.page-shop .machines-category-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
    body.page-shop .machines-category-panel {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    body.page-shop .machines-category-panel {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

body.page-shop .machines-category-tile {
    text-decoration: none;
    padding: 1.25rem 1rem;
    border-radius: 18px;
}

body.page-shop .machines-category-tile .category-content {
    gap: 0.45rem;
}

body.page-shop .machines-category-tile .category-name {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.01em;
    text-wrap: balance;
}

body.page-shop .machines-category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.72rem;
    color: #93c5fd;
    background: rgba(37, 99, 235, 0.16);
    border: 1px solid rgba(147, 197, 253, 0.25);
    transition: all 0.3s ease;
}

body.page-shop .machines-category-tile:hover .machines-category-count,
body.page-shop .machines-category-tile.active .machines-category-count {
    color: #dbeafe;
    background: rgba(59, 130, 246, 0.28);
    border-color: rgba(191, 219, 254, 0.45);
}

@keyframes shop_fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Info Notice */
body.page-shop .info-notice {
    backdrop-filter: blur(24px);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

body.page-shop .info-notice .icon {
    color: #60a5fa;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

body.page-shop .info-notice p {
    font-size: 0.875rem;
    color: #93c5fd;
}

body.page-shop .info-notice strong {
    font-weight: 600;
}

/* Products Section */
body.page-shop .products-section {
    margin-top: 2rem;
}

body.page-shop .machines-products-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

body.page-shop .machines-subcategory {
    scroll-margin-top: 110px;
}

body.page-shop .machines-subcategory-header {
    margin-bottom: 1rem;
}

body.page-shop .machines-subcategory-title {
    margin: 0;
}

body.page-shop .products-header {
    margin-bottom: 1.5rem;
}

body.page-shop .products-header h2 {
    font-size: 1.25rem;
    color: white;
}

body.page-shop .products-header span {
    color: #9ca3af;
    font-size: 1rem;
    margin-left: 0.5rem;
}

body.page-shop .products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 640px) {
    body.page-shop .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    body.page-shop .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    body.page-shop .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Product Card */
body.page-shop .product-card {
    position: relative;
    backdrop-filter: blur(24px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    opacity: 0;
    filter: blur(10px);
    animation: shop_fadeInCard 0.5s forwards;
}

body.page-shop .product-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.2);
}

body.page-shop .product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

body.page-shop .product-card:hover::before {
    opacity: 1;
}

body.page-shop .product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 1s;
    opacity: 0;
}

body.page-shop .product-card:hover::after {
    opacity: 1;
    transform: translateX(100%);
}

body.page-shop .product-content {
    position: relative;
    padding: 1.25rem;
}

body.page-shop .product-image {
    position: relative;
    aspect-ratio: 1;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(to bottom right, #1f2937, #111827);
}

body.page-shop .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

body.page-shop .product-card:hover .product-image img {
    transform: scale(1.1);
}

body.page-shop .stock-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    background: rgba(34, 197, 94, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(74, 222, 128, 0.3);
}

body.page-shop .stock-badge svg {
    width: 0.75rem;
    height: 0.75rem;
    color: #4ade80;
}

body.page-shop .stock-badge span {
    font-size: 0.75rem;
    color: #4ade80;
}

body.page-shop .product-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

body.page-shop .product-model {
    font-size: 0.75rem;
    color: #22d3ee;
    font-family: monospace;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.page-shop .product-name {
    color: white;
    min-height: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.page-shop .product-description {
    font-size: 0.875rem;
    color: #9ca3af;
    min-height: 2.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.page-shop .product-price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

body.page-shop .product-price-label {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

body.page-shop .product-price {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #f8fafc;
}

body.page-shop .product-price del {
    color: #94a3b8;
    opacity: 0.8;
    font-size: 0.875rem;
    font-weight: 500;
}

body.page-shop .product-price ins {
    color: #22d3ee;
    text-decoration: none;
}

body.page-shop .price-save {
    padding: 0.2rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.35);
}

body.page-shop .price-on-request {
    color: #fbbf24;
    font-weight: 600;
}

body.page-shop .condition-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    border: 1px solid;
}

body.page-shop .condition-badge svg {
    width: 0.75rem;
    height: 0.75rem;
}

body.page-shop .condition-new {
    background: linear-gradient(to right, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.2));
    border-color: rgba(74, 222, 128, 0.5);
    color: #4ade80;
}

body.page-shop .condition-used {
    background: linear-gradient(to right, rgba(249, 115, 22, 0.2), rgba(245, 158, 11, 0.2));
    border-color: rgba(251, 146, 60, 0.5);
    color: #fb923c;
}

body.page-shop .condition-tested {
    background: linear-gradient(to right, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
    border-color: rgba(96, 165, 250, 0.5);
    color: #60a5fa;
}

body.page-shop .product-actions {
    display: flex;
    gap: 0.5rem;
    padding-top: 0.5rem;
}

body.page-shop .btn-order {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: linear-gradient(to right, #22c55e, #10b981);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
    opacity: 0;
}

@media (max-width: 768px) {
    body.page-shop .btn-order {
        opacity: 1;
    }
}

body.page-shop .product-card:hover .btn-order {
    opacity: 1;
}

body.page-shop .btn-order:hover {
    background: linear-gradient(to right, #4ade80, #22c55e);
    box-shadow: 0 10px 25px rgba(74, 222, 128, 0.4);
}

body.page-shop .btn-order span {
    font-size: 0.875rem;
}

body.page-shop .btn-view-details {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d1d5db;
    border-radius: 12px;
    transition: all 0.3s;
    cursor: pointer;
}

body.page-shop .btn-view-details:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(34, 211, 238, 0.3);
    color: #22d3ee;
}

@media (max-width: 640px) {
    body.page-shop .products-grid {
        gap: 1rem;
    }

    body.page-shop .product-content {
        padding: 0.875rem;
    }

    body.page-shop .product-image {
        margin-bottom: 0.75rem;
        border-radius: 10px;
    }

    body.page-shop .product-info {
        gap: 0.6rem;
    }

    body.page-shop .product-model {
        font-size: 0.68rem;
    }

    body.page-shop .product-name {
        min-height: 2.45rem;
        font-size: 1rem;
    }

    body.page-shop .product-description {
        font-size: 0.8rem;
        min-height: 2rem;
        display: none;
    }

    body.page-shop .condition-badge {
        font-size: 0.68rem;
        padding: 0.3rem 0.55rem;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    body.page-shop .condition-badge svg {
        flex-shrink: 0;
    }

    body.page-shop .product-actions {
        gap: 0.4rem;
        padding-top: 0.35rem;
    }

    body.page-shop .btn-order,
    body.page-shop .btn-view-details {
        padding: 0.55rem 0.5rem;
    }

    body.page-shop .btn-order span {
        font-size: 0.78rem;
        white-space: nowrap;
    }
}

@keyframes shop_fadeInCard {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
}

/* No Results */
body.page-shop .no-results {
    text-align: center;
    padding: 4rem 0;
}

body.page-shop .no-results-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

body.page-shop .no-results-icon .icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #9ca3af;
}

body.page-shop .no-results h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.5rem;
}

body.page-shop .no-results p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

body.page-shop .btn-clear {
    padding: 0.625rem 1.5rem;
    background: rgba(6, 182, 212, 0.2);
    border: 1px solid rgba(34, 211, 238, 0.3);
    color: #22d3ee;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.page-shop .btn-clear:hover {
    background: rgba(6, 182, 212, 0.3);
}

/* Shop Pagination */
body.page-shop nav.pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

body.page-shop nav.pagination>.page-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

body.page-shop nav.pagination>.page-numbers .page-numbers {
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    color: #d1d5db;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.25s ease;
}

body.page-shop nav.pagination>.page-numbers a.page-numbers:hover {
    color: #22d3ee;
    border-color: rgba(34, 211, 238, 0.45);
    background: rgba(6, 182, 212, 0.18);
    transform: translateY(-1px);
}

body.page-shop nav.pagination>.page-numbers .page-numbers.current {
    color: #ffffff;
    border-color: rgba(34, 211, 238, 0.65);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.45), rgba(37, 99, 235, 0.45));
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.28);
}

body.page-shop nav.pagination>.page-numbers .page-numbers.dots {
    min-width: auto;
    height: auto;
    padding: 0 0.25rem;
    border: 0;
    background: transparent;
    color: #9ca3af;
}

body.page-shop nav.pagination>.page-numbers .page-numbers.prev,
body.page-shop nav.pagination>.page-numbers .page-numbers.next {
    min-width: auto;
    padding: 0 1rem;
}

/* CTA Section */
body.page-shop .cta-section {
    position: relative;
    backdrop-filter: blur(24px);
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.1), rgba(37, 99, 235, 0.1));
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    overflow: hidden;
    margin-top: 3rem;
}

body.page-shop .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2), rgba(168, 85, 247, 0.2));
    opacity: 0.3;
    animation: shop_pulse 3s ease-in-out infinite;
}

body.page-shop .cta-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.2), rgba(37, 99, 235, 0.2));
    border: 1px solid rgba(34, 211, 238, 0.3);
    margin-bottom: 1rem;
}

body.page-shop .cta-icon .icon {
    width: 2rem;
    height: 2rem;
    color: #22d3ee;
}

body.page-shop .cta-section h2 {
    position: relative;
    font-size: 2rem;
    color: white;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    body.page-shop .cta-section h2 {
        font-size: 2.25rem;
    }
}

body.page-shop .cta-section p {
    position: relative;
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 42rem;
    margin: 0 auto 1.5rem;
}

body.page-shop .btn-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #22c55e, #10b981);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.125rem;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

body.page-shop .btn-cta:hover {
    background: linear-gradient(to right, #4ade80, #22c55e);
    box-shadow: 0 10px 25px rgba(74, 222, 128, 0.4);
}


/* WhatsApp Widget */
body.page-shop .whatsapp-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(to right, #22c55e, #10b981);
    box-shadow: 0 25px 50px rgba(34, 197, 94, 0.5);
    transition: all 0.3s;
    animation: shop_scaleIn 0.5s 1s both;
}

body.page-shop .whatsapp-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 25px 50px rgba(74, 222, 128, 0.6);
}

body.page-shop .whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #22c55e;
    animation: shop_ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.75;
}

body.page-shop .whatsapp-widget .icon {
    position: relative;
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

body.page-shop .whatsapp-tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 1rem;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(24px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    white-space: nowrap;
    font-size: 0.875rem;
    color: white;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

body.page-shop .whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes shop_ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes shop_scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Modal */
body.page-shop .modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

body.page-shop .modal.active {
    display: flex;
}

body.page-shop .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    animation: shop_fadeIn 0.3s;
}

body.page-shop .modal-content {
    position: relative;
    width: 100%;
    max-width: 56rem;
    max-height: 90vh;
    overflow-y: auto;
    backdrop-filter: blur(48px);
    background: linear-gradient(to bottom right, rgba(11, 15, 20, 0.95), rgba(14, 19, 26, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: shop_scaleUp 0.3s;
}

body.page-shop .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.3s;
}

body.page-shop .modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

body.page-shop .modal-body {
    padding: 1.5rem;
}

@media (min-width: 640px) {
    body.page-shop .modal-body {
        padding: 2rem;
    }
}

body.page-shop .modal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    body.page-shop .modal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

body.page-shop .modal-image-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

body.page-shop .modal-image {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(to bottom right, #1f2937, #111827);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.page-shop .modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.page-shop .modal-details-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

body.page-shop .modal-title-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

body.page-shop .modal-specifications,
body.page-shop .modal-compatibility {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

body.page-shop .modal-section-title {
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

body.page-shop .modal-section-title .icon {
    color: #22d3ee;
}

body.page-shop .specs-box,
body.page-shop .compat-box {
    backdrop-filter: blur(24px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
}

body.page-shop .spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    padding: 0.25rem 0;
}

body.page-shop .spec-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

body.page-shop .spec-label {
    color: #9ca3af;
}

body.page-shop .spec-value {
    color: white;
}

body.page-shop .compat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

body.page-shop .compat-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 8px;
    font-size: 0.875rem;
    color: #22d3ee;
}

body.page-shop .modal-helper {
    backdrop-filter: blur(24px);
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 12px;
    padding: 1rem;
}

body.page-shop .modal-helper p {
    font-size: 0.875rem;
    color: #93c5fd;
}

@keyframes shop_fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes shop_scaleUp {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

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

/* Scrollbar Styling */
body.page-shop ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

body.page-shop ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

body.page-shop ::-webkit-scrollbar-thumb {
    background: rgba(34, 211, 238, 0.3);
    border-radius: 4px;
}

body.page-shop ::-webkit-scrollbar-thumb:hover {
    background: rgba(34, 211, 238, 0.5);
}