
/* Reveal Mask Animation: da esquerda para a direita */
.reveal-mask {
    position: relative;
    overflow: hidden;
    --reveal-duration: 1.2s;
    --reveal-delay: 0s;
    opacity: 1;
    /* Máscara que revela da esquerda para a direita */
    -webkit-mask-image: linear-gradient(
        90deg,
        #ffffff 0%,
        #ffffff 100%
    );
    -webkit-mask-size: 0% 100%;
    -webkit-mask-position: 0% 0%;
    -webkit-mask-repeat: no-repeat;

    mask-image: linear-gradient(
        90deg,
        #ffffff 0%,
        #ffffff 100%
    );
    mask-size: 0% 100%;
    mask-position: 0% 0%;
    mask-repeat: no-repeat;
}

.reveal-mask.reveal-ready {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-transition: -webkit-mask-size var(--reveal-duration) cubic-bezier(0.77, 0, 0.175, 1);
    transition: mask-size var(--reveal-duration) cubic-bezier(0.77, 0, 0.175, 1);
}
/* Workersai - Custom Styles - Figma Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sarabun:wght@300;400;500;600;700;800&display=swap');

/* Typewriter Effects - Hide elements initially */
[data-typewriter] {
    opacity: 0 !important;
    transition: opacity 0.2s;
}

[data-typewriter].typewriter-ready {
    opacity: 1 !important;
    display: inline !important;
}

/* Fade In Effects - Hide elements initially */
[data-fadein] {
    opacity: 0 !important;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

[data-fadein].fadein-ready {
    opacity: 1 !important;
    transform: translateY(0);
}

/* Fade In + Zoom In Effects */
[data-fadein-zoom] {
    opacity: 0 !important;
    transform: scale(0.95);
    transition: all 0.8s ease-out;
}

[data-fadein-zoom].fadein-ready {
    opacity: 1 !important;
    transform: scale(1);
}

/* Fade In + Slide from Left Effects */
[data-fadein-left] {
    opacity: 0 !important;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

[data-fadein-left].fadein-ready {
    opacity: 1 !important;
    transform: translateX(0);
}

/* Fade In + Slide from Right Effects */
[data-fadein-right] {
    opacity: 0 !important;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

[data-fadein-right].fadein-ready {
    opacity: 1 !important;
    transform: translateX(0);
}

/* Benefit Cards Positioning - Custom CSS for precise control */
.home-benefit-card {
    position: absolute;
    z-index: 10;
    display: none;
}

.home-benefit-card h4 {
    font-family: 'Urbanist', sans-serif;
    line-height: 1;
}
.home-benefit-card p {
    font-family: 'Urbanist', sans-serif;
    font-size: 22px;
    line-height: 1;
}

.home-benefit-bg-purple {
    background: linear-gradient(135deg,
        #6610F2 0%,
        #9747FF 50%,
        /* #D1B4FF 75%, */
        #9c72df 75%,
        rgba(102, 16, 242, 0.4) 100%);
}

.home-benefit-bg-purple2 {
    background: linear-gradient(135deg,
        rgba(102, 16, 242, 0.7) 0%,
        rgba(151, 71, 255, 0.7) 50%,
        /* rgba(180, 130, 255, 0.6) 100% */
        rgba(102, 16, 242, 0.7) 100%
    );
}

@media (min-width: 768px) {
    .home-benefit-card {
        display: block;
    }
}

.home-benefit-card-top-left {
    top: 3rem;
    left: 2rem;
}

@media (min-width: 768px) {
    .home-benefit-card-top-left {
        top: 3rem;
        left: 4rem;
        width: 270px;
    }
}

@media (min-width: 1024px) {
    .home-benefit-card-top-left {
        top: 4rem;
        left: 280px;
        width: 255px;
    }
}

.home-benefit-card-top-right {
    top: 3rem;
    right: 2rem;
}

@media (min-width: 768px) {
    .home-benefit-card-top-right {
        top: 72px;
        right: 273px;
        width: 380px;
    }
}

@media (min-width: 1024px) {
    .home-benefit-card-top-right {
        top: 72px;
        right: 273px;
        width: 380px;
    }
}

.home-benefit-card-middle-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.home-benefit-card-middle-left > div {
    height: 130px;
}

@media (min-width: 768px) {
    .home-benefit-card-middle-left {
        left: 229px;
        top: 327px;
        width: 315px;
    }
}

@media (min-width: 1024px) {
    .home-benefit-card-middle-left {
        left: 229px;
        top: 327px;
        width: 315px;
    }
}

.home-benefit-card-middle-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

@media (min-width: 768px) {
    .home-benefit-card-middle-right {
        /* right: 2rem; */
        right: 243px;
        top: 243px;
    }
}

@media (min-width: 1024px) {
    .home-benefit-card-middle-right {
        right: 243px;
        top: 243px;
        width: 238px;
    }
}

.home-benefit-card-cac {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.home-benefit-card-cac p {
    font-size: 24px;
}

@media (min-width: 768px) {
    .home-benefit-card-cac {
        right: 255px;
        top: 361px;
        width: 283px;
        text-align: center;
    }
}

@media (min-width: 1024px) {
    .home-benefit-card-cac {
        right: 255px;
        top: 361px;
        width: 283px;
        text-align: center;
    }
}

.home-benefit-card-bottom-right {
    bottom: 3rem;
    right: 2rem;
}

@media (min-width: 768px) {
    .home-benefit-card-bottom-right {
        bottom: 325px;
        right: 223px;
        width: 220px;
    }
}

@media (min-width: 1024px) {
    .home-benefit-card-bottom-right {
        bottom: 325px;
        right: 223px;
        width: 220px;
    }
}

:root {
    --color-primary: #6366f1;
    --color-secondary: #8b5cf6;
    --color-accent: #f97316;
    --color-background: #1e1b4b;
    --color-text: #e0e7ff;
    /* Define 1rem = 16px para consistência */
    font-size: 16px;
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sarabun', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: #3F11AE;
    /* background-image: url('assets/img/background.svg'); */
    background-image: url('assets/img/background2.svg');
    /* background-size: cover; */
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Urbanist', sans-serif;
}

p, span, div, a, button, li, td, th {
    font-family: 'Sarabun', sans-serif;
}

/* Geometric Background Pattern */
.geometric-pattern {
    background-image:
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.03) 49%, rgba(255,255,255,0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.03) 49%, rgba(255,255,255,0.03) 51%, transparent 52%);
    background-size: 60px 60px;
    animation: geometricMove 20s linear infinite;
}

@keyframes geometricMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

/* Custom gradients matching Figma */
.bg-gradient-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #3730a3 100%);
}

.bg-gradient-hero {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 30%, #6366f1 70%, #8b5cf6 100%);
}

.bg-gradient-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

/* Glass morphism effects */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced animations */
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.3);
}


/* Purple glow effects */
/* classes não usadas no momento */
.purple-glow {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.purple-glow:hover {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

/* Orange glow effects */
.orange-glow {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

.orange-glow:hover {
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.5);
}
/* classes não usadas no momento fim */

/* Text gradient effects */
.text-gradient-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Enhanced button styles */
.btn-primary {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(139, 92, 246, 0.5);
    color: #c4b5fd;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: #8b5cf6;
    color: white;
    transform: translateY(-2px);
}

/* Card enhancements */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
}

.feature-card-new h4 {
    /* Para igualar as linhas */
    height: 60px;
}

.pricing-card {
    border-radius: 2rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #ea580c);
}

.pricing-card-popular {
    transform: scale(1.05);
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    position: relative;
}

.pricing-card-popular::before {
    background: linear-gradient(90deg, #f97316, #ea580c);
}

/* Logo and partner styles */
.partner-logo {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Technology cards */
.tech-card {
    background: rgba(255, 255, 255, 0.1);
    background: none;
    /* backdrop-filter: blur(10px); */
    /* border: 1px solid rgba(139, 92, 246, 0.2); */
    border: transparent;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.tech-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-3px);
}

.tech-card > div {
    height: 233px;
    /* height: 185px; */
    border-radius: 0.5rem;
    /* background: url(<path-to-image>) lightgray 0px -14.206px / 100% 119.869% no-repeat; */
    box-shadow: 0 0 45px 0 rgba(102, 16, 242, 0.45);
}

.tech-card-microsoft {
    background: linear-gradient(135deg, #0078d4 0%, #106ebe 100%);
}

.tech-card-meta {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
}

.tech-card-aws {
    background: linear-gradient(135deg, #ff9900 0%, #ec7211 100%);
}

/* FAQ Section */
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

/* Responsive design enhancements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.4;
    }

    .pricing-card-popular {
        transform: none;
        margin-top: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .tech-card {
        padding: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .mobile-padding {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .mobile-text-center {
        text-align: center;
    }
}

/* Accessibility improvements */
.focus-ring:focus {
    outline: 2px solid #f97316;
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in-up-delay-1 {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.fade-in-up-delay-2 {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.fade-in-up-delay-3 {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* Floating elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.float {
    animation: float 3s ease-in-out infinite;
}

.float-delay {
    animation: float 3s ease-in-out infinite 1.5s;
}

/* Pulse effect */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(30, 27, 75, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ea580c, #dc2626);
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .geometric-pattern {
        display: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-card,
    .tech-card,
    .faq-item {
        border-width: 2px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .geometric-pattern {
        animation: none;
    }
}

/* Main nav */
header nav {
    /* border-radius: 20px; */
    border-radius: 1.25rem;
    background: linear-gradient(89deg, #021346 -20.81%, #6610F2 39.19%, #021346 99.19%);
    position: relative;
    overflow: hidden;
}

header nav::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(120.36% 284.48% at 3.12% 182.86%, #6610F2 0%, rgba(2, 19, 70, 0.00) 100%);
    opacity: 0.7;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* Custom menu hover color */
.menu-item-hover:hover {
    /* color: #EC761F !important; */
    color: rgb(251 146 60 / var(--tw-text-opacity, 1));
    transition: color 0.3s ease;
}

span.menu-item-hover {
    cursor: default;
}

/* Custom hero button style */
.hero-button {
    width: 350px;
    height: 62px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA726 100%);
    border: none;
    border-radius: 10px;
    font-size: 25px;
    font-weight: 600;
    color: #4A1A8A;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.hero-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #FF8C42 0%, #FFA726 50%, #FFB74D 100%);
}

@media (max-width: 768px) {
 .hero-button {
    width: 100%;
    height: 50px;
    font-size: 18px;
 }
}

.header-cta-button {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA726 100%);
    color: #4A1A8A;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.header-cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #FF8C42 0%, #FFA726 50%, #FFB74D 100%);
}

/* Multi-layer button effect - Figma Design with 4 layers */
.multilayer-button {
    position: relative;
    /* Camada 1 de 4 - Base */
    /*opt origial porém não representou o fx do layout */
    /* background: linear-gradient(91deg, #FE9649 5%, #FE9649 99.15%);  */
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA726 100%);
    color: #4A1A8A;
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(254, 150, 73, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.multilayer-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Camada 2 de 4 */
    background: linear-gradient(93deg, #FE9649 5.71%, #F58B3C 51.18%, #FE9649 96.66%);
    mix-blend-mode: overlay;
    z-index: 2;
    border-radius: inherit;
    pointer-events: none;
}

.multilayer-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Camadas 3 e 4 combinadas */
    background:
        linear-gradient(115deg, rgba(102, 16, 242, 0.00) -1.32%, #D1B4FF 76.95%, rgba(108, 42, 213, 0.19) 155.22%),
        linear-gradient(254deg, rgba(102, 16, 242, 0.00) 4.78%, #D1B4FF 68.84%, rgba(108, 42, 213, 0.19) 132.9%);
    background-blend-mode: overlay;
    mix-blend-mode: overlay;
    z-index: 3;
    border-radius: inherit;
    pointer-events: none;
}

.multilayer-button > span {
    position: relative;
    z-index: 4;
    color: #4A1A8A;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.multilayer-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(254, 150, 73, 0.6);
}

.multilayer-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Footer gradient */
.footer-gradient {
    background: linear-gradient(90deg, #021346 0%, #6610F2 50%, #021346 100%);
}

/* Outbound card text styling */
.outbound-card-text {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
    color: #FFFFFF;
    max-width: 356px;
    text-align: left;
}

/* Outbound card glow effect */
.outbound-card-glow {
    box-shadow: 0 0 20px rgba(151, 71, 255, 0),
                0 0 90px rgba(209, 180, 255, 0.8),
                0 0 30px rgba(102, 16, 242, 0.32);
    background: linear-gradient(135deg,
                rgba(151, 71, 255, 0) 0%,
                rgba(209, 180, 255, 0.8) 50%,
                rgba(102, 16, 242, 0.32) 100%);
    background-blend-mode: overlay;
}

/* Toggle button styles */
.toggle-button-active {
    border-radius: 16px;
    position: relative;
    /* background: transparent; */
    background: linear-gradient(254deg, #6610F2 7.97%, #9747FF 82.92%);
    box-shadow: 0 0 30px rgba(102, 16, 242, 0.8),
                0 0 60px rgba(151, 71, 255, 0.6);
}

/* .toggle-button-active::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(247deg, rgba(151, 71, 255, 0.00) -32.48%, rgba(209, 180, 255, 0.80) 8.47%, rgba(102, 16, 242, 0.32) 49.42%);
    filter: blur(22.5px);
    z-index: -1;
} */

.inbound-card-text {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
    color: #FFFFFF;
    max-width: 356px;
    text-align: right;
    margin-left: auto;
}

.toggle-button-active::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(254deg, #6610F2 7.97%, #9747FF 82.92%);
    z-index: -2;
    opacity: 0.3;
    filter: blur(8px);
}

/* Toggle button inactive styles */
.toggle-button-inactive {
    background: linear-gradient(254deg, #6D4DBD 7.97%, #8A7CC8 82.92%);
    border-radius: 16px;
    color: rgba(59, 9, 140, 0.75);
    text-align: center;
    font-family: 'Urbanist', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    opacity: .5;
}

/* Hover states that match active states */
.toggle-button-inactive:hover {
    border-radius: 16px;
    position: relative;
    background: linear-gradient(254deg, #6610F2 7.97%, #9747FF 82.92%);
    box-shadow: 0 0 30px rgba(102, 16, 242, 0.8),
                0 0 10px rgba(151, 71, 255, 0.6);
    color: white;
    opacity: 1;
}

.toggle-button-inactive:hover::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(254deg, #6610F2 7.97%, #9747FF 82.92%);
    z-index: -2;
    opacity: 0.3;
    filter: blur(8px);
}

.toggle-button-disabled {
    background: linear-gradient(254deg, #6D4DBD 7.97%, #8A7CC8 82.92%);
    border-radius: 16px;
    /* color: rgba(59, 9, 140, 0.75); */
    color: rgba(0, 0, 0, 1);
    text-align: center;
    font-family: 'Urbanist', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    opacity: 0.25;
}

.toggle-button-active:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(102, 16, 242, 1),
                0 0 10px rgba(151, 71, 255, 0.8);
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .dark-mode-text {
        color: #f8fafc;
    }

    .dark-mode-bg {
        background-color: #0f172a;
    }
}

/* Highlight class for keywords */
.highlight {
    color: #FE9649;
    font-weight: 500;
}

/* About page background */
.sobre-page-bg {
    /* background-color: #3F11AE;
    background-image: url('assets/img/bgs/background-sobre.jpg');
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    overflow-x: hidden;
    background-size: 100% auto;
    background-position: center top; */
    margin-top: -105px;
}

/* About hero section with rectangle pattern */
.about-hero-section {
    position: relative;
    background-color: #fff;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.about-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background-image: url('./assets/img/sobre/rectangle.png');
    background-repeat: repeat-y;
    background-position: right top;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.about-hero-section > * {
    position: relative;
    z-index: 2;
}

/* Presence Section Styles */
.presence-section {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    /* height: calc(690px * 0.6); */
    height: auto;
    min-height: calc(690px * 0.6);
    display: flex;
    align-items: center;
}

.presence-client-card {
    background: rgba(102, 16, 242, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(102, 16, 242, 0.3);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    transition: all 0.3s ease;
}

.presence-client-card:hover {
    background: rgba(102, 16, 242, 0.25);
    border-color: rgba(102, 16, 242, 0.5);
    transform: translateY(-2px);
}

.presence-map-container {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 690px;
    z-index: 1;
    opacity: .85;
}

.presence-map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(102, 16, 242, 0.4) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(255, 165, 0, 0.2) 100%);
    z-index: 2;
    pointer-events: none;
    /* Removendo o efeito de overlay para melhor visibilidade do mapa */
    opacity: 0;
}

.presence-map-container img {
    width: 690px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(102, 16, 242, 0.3));
}

/* Ensure content is above the map */
.presence-section .container {
    position: relative;
    z-index: 2;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1200px) {
    .presence-map-container {
        width: 500px;
    }

    .presence-map-container img {
        width: 500px;
    }

    .presence-section {
        height: calc(500px * 0.6);
        min-height: calc(500px * 0.6);
    }
}

@media (max-width: 768px) {
    .presence-map-container {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        transform: none;
        opacity: 0.3;
        z-index: 1;
    }

    .presence-map-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .presence-section {
        height: auto;
        min-height: 400px;
        padding: 3rem 0;
    }

    .presence-section .container {
        position: relative;
        z-index: 3;
    }

    .presence-section .max-w-6xl {
        max-width: 100%;
        width: 100%;
    }

    .presence-section .max-w-2xl {
        max-width: 100%;
        width: 100%;
    }

    /* Ajustar grid de clientes para mobile */
    .presence-section .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .presence-client-card {
        background: rgba(102, 16, 242, 0.65);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(102, 16, 242, 0.3);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;

        height: 50px;
        padding: 12px;
    }

    .presence-client-card:hover {
        background: rgba(102, 16, 242, 0.85);
    }

    .presence-client-card img {
        height: 24px;
    }
}

/* About page hero styles */
.about-hero-description {
    color: #023;
    font-family: 'Sarabun', sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
}

.news-page-bg {
    margin-top: -105px;
    padding-top: 105px;
    background: linear-gradient(270deg, #F6EFEF 0%, #F2F2F2 50%, #FFE5D2 100%);
}

/* Partners page background */
.partners-page-bg {
    /* background-color: #3F11AE; */
    background-color: #35119f;
    /* background: linear-gradient(270deg, #3F11AE 0%, #4f11cb 100%); */
    background-image: url('assets/img/bgs/background-parceiros.png');
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    overflow-x: hidden;
    background-size: 100% auto;
    background-position: center top;
    margin-top: -105px;
    padding-top: 105px;
}

.partners-page-bg2 {
    /* background-color: #35119f; */
    background-image: url('assets/img/bgs/background-parceiros-workito.png');
    background-repeat: no-repeat;
    overflow-x: hidden;
    background-position: center 80px;
}

/* Events section styles */
/* .event-card {
    Remove background and border
} */

.event-card-image {
    border-radius: 0.75rem;
    border: 1px solid #FFAD71;
}

/* Benefícios Section - Figma Design Match */
.benefits-container {
    position: relative;
    height: 600px;
}

@media (min-width: 768px) {
    .benefits-container {
        height: 700px;
    }
}

.laptop-mockup {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
    z-index: 0;
}

.laptop-mockup img {
    width: 900px;
    opacity: 0.9;
}

.laptop-mockup-img {
    width: 900px;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .laptop-mockup img {
        width: 1100px;
    }

    .laptop-mockup-img {
        width: 1100px;
    }
}

@media (min-width: 1024px) {
    .laptop-mockup img {
        width: 1300px;
    }

    .laptop-mockup-img {
        width: 1300px;
    }
}

@media (min-width: 1280px) {
    .laptop-mockup img {
        width: 1500px;
    }

    .laptop-mockup-img {
        width: 1500px;
    }
}

@media (min-width: 1536px) {
    .laptop-mockup img {
        width: 1700px;
    }

    .laptop-mockup-img {
        width: 1700px;
    }
}

.benefit-card {
    backdrop-filter: blur(22.5px);
    -webkit-backdrop-filter: blur(22.5px);
    position: absolute;
    z-index: 10;
}

.benefit-card-purple {
    background: rgba(147, 71, 255, 0.2);
    border: 1px solid rgba(147, 71, 255, 0.3);
}

.benefit-card-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.benefit-card-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive positioning for benefit cards */
@media (max-width: 767px) {
    .benefit-card {
        position: static !important;
        width: 100% !important;
        margin-bottom: 1.5rem;
        z-index: 10;
    }

    .laptop-mockup {
        position: static !important;
        transform: none !important;
        display: flex;
        justify-content: center;
        margin-top: 2rem;
        z-index: 0;
    }

    .laptop-mockup img {
        width: 16rem !important;
        opacity: 0.7;
    }
}

/* Pricing Section - Li Spans Styling */
#pricing .bg-white li span,
#pricing .bg-gradient-to-br li span {
    /* color: #021346; */
    font-family: 'Sarabun', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.56px;
}

/* Specific styling for pricing card spans in different card types */
#pricing .bg-white ul li span:last-child {
    /* color: #021346; */
    font-family: 'Sarabun', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.56px;
}

#pricing .bg-gradient-to-br ul li span:last-child {
    /* color: #021346; */
    font-family: 'Sarabun', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.56px;
}

/* Why Choose Section - H4 Titles Styling */
/* Target the Why Choose section specifically */
section.relative.z-10.py-20:not([class*="bg-black"]):not([id]) .grid.md\\:grid-cols-3 h4 {
    color: #FE9649 !important;
    text-align: center;
    font-family: 'Urbanist', sans-serif !important;
    font-size: 24px !important;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 100% !important;
    letter-spacing: 0.96px !important;
}

/* Trust Indicators - Brand Logos Styling */
.trust-brands .brand-logo {
    transition: all 0.3s ease;
    filter: brightness(0.9) contrast(1.1);
}

.trust-brands .brand-logo:hover {
    opacity: 1;
    transform: translateY(-1px) scale(1.05);
    filter: brightness(1) contrast(1.2);
}

.trust-brands img {
    max-height: 32px;
    width: auto;
    object-fit: contain;
}

/* Infinite scrolling carousel for brand logos */
.brands-carousel {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    mask: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.brands-track {
    display: flex;
    align-items: center;
    animation: scroll-brands 10s linear infinite;
    gap: 2rem;
}

.brands-track .brand-logo {
    flex-shrink: 0;
    min-width: auto;
}

@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brands-track:hover {
    animation-play-state: paused;
}

/* Responsive brand logos */
@media (max-width: 768px) {
    .brands-track {
        gap: 1rem;
        animation-duration: 10s;
    }

    .trust-brands .brand-logo {
        padding: 0.5rem 0.75rem !important;
        height: 2.5rem !important;
    }

    .trust-brands img {
        max-height: 24px !important;
    }
}

/* Clients carousel for presence section - 3 rows */
.clients-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.clients-track {
    display: flex;
    gap: 2rem;
    animation: scroll-clients 20s linear infinite;
    width: max-content;
}

.clients-track .presence-client-card {
    flex-shrink: 0;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Reverse animation for middle carousel */
.clients-track-reverse {
    animation: scroll-clients-reverse 20s linear infinite;
}

@keyframes scroll-clients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-clients-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.clients-track:hover {
    animation-play-state: paused;
}

/* Responsive clients carousel */
@media (max-width: 768px) {
    .clients-carousel {
        padding: 0.75rem 0;
    }

    .clients-track {
        gap: 1.5rem;
    }

    .clients-track .presence-client-card {
        min-width: 120px;
    }
}

/* Mac Dock Effect for Benefit Cards - Controlled by JavaScript */
.benefit-cards-container {
    perspective: 1000px;
}

.benefit-card {
    transform-origin: bottom center;
}

/* Technology Partners - Certification Logos Styling */
.tech-card img {
    filter: brightness(1) contrast(1);
    transition: all 0.3s ease;
}

.tech-card:hover img {
    filter: brightness(1.1) contrast(1.1);
    transform: scale(1.05);
}

/* Certification logos specific styling */
.tech-certification-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.tech-certification-logo:hover {
    transform: scale(1.05);
}

/* Ecosystem logos specific styling */
.tech-ecosystem-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.tech-ecosystem-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4)) brightness(1.1);
}

/* Ecosystem carousel for future use if more items are added */
.ecosystem-carousel {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    mask: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.ecosystem-track {
    display: flex;
    align-items: start;
    animation: scroll-ecosystem 45s linear infinite;
    gap: 1rem;
}

/* .tech-card {
    flex-shrink: 0;
    max-width: calc((1152px - 2rem) / 3);
    width: calc((1152px - 2rem) / 3);
    width: 400px;
    white-space: normal;
} */

.tech-card > div {
    height: 200px;
}

.tech-card:not(.ecosystem-card) h5 {
    display: none;
}

.ecosystem-track .tech-card {
    flex-shrink: 0;
    /* Same width as certification cards - 3 per line with gap */
    /* Full width minus container padding minus gaps, divided by 3 */
    /* min-width: calc((100vw - 8rem - 4rem) / 3); */
    max-width: calc((1152px - 4rem) / 3); /* max-w-6xl (1152px) minus gaps, divided by 3 */
    /* max-width: calc((1152px - 5rem) / 3); */
    width: calc((1152px - 4rem) / 3);
    /* width: 315px; */
    white-space: normal;
}

.ecosystem-card {
    transition: all 0.3s ease;
}

.ecosystem-card:hover {
    transform: translateY(-5px) scale(1.02);
    /* box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3); */
}

@keyframes scroll-ecosystem {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ecosystem-track:hover {
    animation-play-state: paused;
}

/* Responsive ecosystem carousel */
@media (max-width: 1024px) {
    .ecosystem-track {
        gap: 1.5rem;
        animation-duration: 35s;
    }

    .ecosystem-track .tech-card {
        min-width: calc((100vw - 6rem - 3rem) / 3);
        max-width: calc((768px - 3rem) / 3);
        width: calc((768px - 3rem) / 3);
    }
}

@media (max-width: 768px) {
    .ecosystem-track {
        gap: 1rem;
        animation-duration: 15s;
    }

    .ecosystem-track .tech-card {
        min-width: calc((100vw - 4rem - 1rem) / 2);
        max-width: calc((640px - 1rem) / 2);
        width: calc((640px - 1rem) / 2);
    }

    .brands-track {
        gap: 1rem;
        animation-duration: 10s;
    }

    .trust-brands .brand-logo {
        padding: 0.5rem 0.75rem !important;
        height: 2.5rem !important;
    }

    .trust-brands img {
        max-height: 24px !important;
    }
}

/* Glass effect for vidro class */
.vidro {
    border-radius: 1.5625rem;
    background: rgba(0, 0, 0, 0.00);
    border: 1px solid rgba(255, 255, 255, 0.4);
    /* background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
                      linear-gradient(135deg,
                        rgba(255, 255, 255, 0.3) 0%,
                        rgba(139, 92, 246, 0.6) 25%,
                        rgba(249, 115, 22, 0.6) 50%,
                        rgba(139, 92, 246, 0.6) 75%,
                        rgba(255, 255, 255, 0.3) 100%); */
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative;
    padding: 3rem 4rem;
}

/* Support section title styling */
.support-section-title {
    font-family: Urbanist;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.2rem;
}

/* Benefits cards text styling */
.benefit-card-text-white {
    color: #FFF;
    font-family: Urbanist;
    /* font-size: 1.5rem; */
    font-size: 1.35rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.425rem;
    letter-spacing: 0.06rem;
}

.benefit-card-text-orange {
    color: #FE9649;
    font-family: Urbanist;
    /* font-size: 1.5rem; */
    font-size: 1.35rem;
    font-style: normal;
    font-weight: 800;
    line-height: 1.425rem;
    letter-spacing: 0.06rem;
}

li.benefit-card-text-orange {
    font-size: 1.15rem;
}

/* Benefits cards specific dimensions */
.benefit-card-lateral {
    width: 100%;
    height: 167px;
}

.benefit-card-center {
    width: 100%;
    height: 80px;
}

.benefit-half-ring {
    width: 504px;
    height: 142px;
}

/* Mobile responsive adjustments for benefit cards */
@media (max-width: 768px) {
    .benefit-card-lateral {
        height: auto;
        min-height: 120px;
        padding: 1.5rem;
    }

    .benefit-card-center {
        height: auto;
        min-height: 80px;
        padding: 1.5rem;
    }

    .benefit-half-ring {
        width: 280px;
        height: auto;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .benefit-card-lateral {
        min-height: 100px;
        padding: 1rem;
    }

    .benefit-card-center {
        min-height: 70px;
        padding: 1rem;
    }

    .benefit-half-ring {
        width: 240px;
    }
}

/* Benefit cards with gradient background */
.benefit-card-lateral,
.benefit-card-center {
    background: linear-gradient(254deg, #6610F2 7.97%, #9747FF 82.92%);
    position: relative;
    overflow: hidden;
}

/* Background gradient layer */
.benefit-card-lateral::before,
.benefit-card-center::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(254deg, #6610F2 7.97%, #9747FF 82.92%);
    border-radius: inherit;
    z-index: 1;
}

/* Glow/blur overlay */
.benefit-card-lateral::after,
.benefit-card-center::after {
    content: '';
    position: absolute;
    top: -22.5px;
    left: -22.5px;
    right: -22.5px;
    bottom: -22.5px;
    background: linear-gradient(247deg, rgba(151, 71, 255, 0.00) -32.48%, rgba(209, 180, 255, 0.80) 8.47%, rgba(102, 16, 242, 0.32) 49.42%);
    filter: blur(22.5px);
    border-radius: inherit;
    z-index: 2;
}

/* Ensure content appears above all layers */
.benefit-card-lateral > *,
.benefit-card-center > * {
    position: relative;
    z-index: 3;
}

/* Pricing Cards Custom Styling */
/* Pricing Cards Container - Mac Dock Effect */
.pricing-cards-container {
    perspective: 1000px;
}

.pricing-card-junior {
    border: 2px solid #6610F2;
    background: linear-gradient(207deg, #F7F7F7 34.24%, #FFE5D2 88.73%);
    transform-origin: bottom center;
}

.pricing-card-pleno {
    border: 1px solid #FE9649;
    /* background: radial-gradient(231.04% 122.82% at 86.62% 92.27%, #9747FF 0%, #6610F2 100%); */
    background: radial-gradient(31.04% 42.82% at 86.62% 98.27%, #9747FF 0%, #6610F2 100%);
    transform-origin: bottom center;
}

.pricing-card-senior {
    border: 2px solid #6610F2;
    background: linear-gradient(254deg, #9747FF 7.97%, #6610F2 26.71%, #021346 82.92%);
    transform-origin: bottom center;
}

/* Badge "Mais Popular" styling */
.pricing-card-pleno .bg-orange-500 {
    border: 1px solid #6611F2;
    background: linear-gradient(254deg, #FE9649 7.97%, #DC6C19 82.92%);
}

/* Pricing Card Buttons - Same style as "Mais Popular" badge */
.pricing-card-junior button,
.pricing-card-senior button {
    /* border: 1px solid #6611F2 !important; */
    background: linear-gradient(254deg, #FE9649 7.97%, #DC6C19 82.92%) !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card-junior button::before,
.pricing-card-senior button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.pricing-card-junior button:hover::before,
.pricing-card-senior button:hover::before {
    left: 100%;
}

.pricing-card-junior button:hover,
.pricing-card-senior button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(254, 150, 73, 0.4);
}

/* Worker Pleno button specific styling */
.pricing-card-pleno button {
    color: white;
    background: linear-gradient(254deg, #6610F2 7.97%, #9747FF 82.92%) !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card-pleno button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.pricing-card-pleno button:hover::before {
    left: 100%;
}

.pricing-card-pleno button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 16, 242, 0.4);
}

/* Integration carousel styles */
.integration-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0 auto;
    mask: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

/* Remove mask when filtered */
.integration-carousel.filtered {
    mask: none;
    -webkit-mask: none;
    overflow: visible;
}

/* Static grid layout for filtered items */
.integration-carousel.filtered .integration-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    animation: none;
    transform: none;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.integration-track {
    display: flex;
    gap: 1.5rem;
    animation: scrollIntegration 25s linear infinite;
}

.integration-track .integration-item {
    flex-shrink: 0;
    min-width: 160px;
    max-width: 160px;
    width: 160px;
}

@keyframes scrollIntegration {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.integration-carousel:hover .integration-track {
    animation-play-state: paused;
}

/* About page logo styling */
.about-hero-logo {
    width: 390px;
    height: auto;
    max-width: 100%;
}

/* About page title styling */
.about-hero-title {
    color: #021346;
    font-family: Urbanist;
    font-size: 2.1rem;
    font-style: normal;
    font-weight: 800;
    line-height: 1.1;
}

.about-hero-title-purple {
    color: #6610F2;
    font-family: Urbanist;
    font-size: 2.1rem;
    font-style: normal;
    font-weight: 800;
    line-height: 2.75rem;
}

.about-hero-subtitle {
    color: #021346;
    font-family: Sarabun;
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 300;
    line-height: 110%;
    display: block;
    margin-top: -0.5rem;
}

/* Responsive adjustments for integration carousel */
@media (max-width: 768px) {
    .integration-track {
        gap: 1rem;
        animation-duration: 20s;
    }

    .integration-track .integration-item {
        min-width: 140px;
        max-width: 140px;
        width: 140px;
    }

    .integration-carousel.filtered .integration-track {
        gap: 1rem;
    }

    /* Responsive logo for mobile */
    .about-hero-logo {
        width: 280px;
    }
}

/* Custom backgrounds for integration items */
.rd-marketing-bg {
    background: #0c495c !important;
}

.bitrix24-bg {
    /* background: linear-gradient(247deg, rgba(255, 255, 255, 0.95) -14.5%, rgba(0, 200, 250, 0.45) 5.14%, rgba(254, 254, 254, 0.18) 52.33%) !important; */
    /* filter: blur(22.5px); */
    background: linear-gradient(245deg, rgba(255, 255, 255, 0.95) 70%, rgba(0, 200, 250, 0.45) 115.14%) !important;
}

.viva-real-bg {
    background: #0093FF !important;
}

/* Partners Cards Custom Styling */
.benefit-card,
.partnership-card {
    border-radius: 1.25rem !important;
    border: 1px solid #FFAD71 !important;
}

.benefit-card h3 {
    color: #FFF;
    text-align: center;
    font-family: Urbanist;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 800;
    line-height: 100%; /* 1.5rem */
    letter-spacing: 0.06rem;
}

.partnership-card h3 { display: none; }

/* News Featured Card Custom Styling */
.news-featured-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

/* News Slider Styles */
.news-featured-slider {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
}

.news-slides-container {
    position: relative;
    width: 100%;
}

.news-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.news-slide.active {
    position: relative;
    opacity: 1;
    z-index: 10;
}

.news-featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Navigation Arrows */
.news-slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(102, 16, 242, 0.8);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
    backdrop-filter: blur(10px);
}

.news-slide-arrow:hover {
    background: rgba(102, 16, 242, 1);
    transform: translateY(-50%) scale(1.1);
}

.news-slide-prev {
    left: 1.5rem;
}

.news-slide-next {
    right: 1.5rem;
}

.news-slide-arrow svg {
    width: 24px;
    height: 24px;
}

/* Slide Indicators */
.news-slide-indicators {
    position: relative;
    display: flex;
    gap: 0.75rem;
    z-index: 20;
    justify-content: center;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .news-slide-indicators {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
    }
}

.news-slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-slide-dot.active {
    background: #6610F2;
    width: 32px;
    border-radius: 10px;
}

.news-slide-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.news-content-overlay {
    position: absolute;
    top: 4rem;
    /* left: 2rem; original */
    left: 5rem;
    border-radius: 10px;
    background: linear-gradient(237deg, #F2F2F2 1.32%, #FFE5D2 108.76%);
    padding: 1rem;
    max-width: 400px;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.news-content-overlay h2 {
    color: #1e1b4b;
    font-family: 'Urbanist', sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.news-content-overlay h2 span {
    font-family: 'Urbanist', sans-serif;
}

.news-content-overlay p {
    color: #475569;
    font-family: 'Sarabun', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.news-content-overlay .badge {
    background: #8b5cf6;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 1rem;
}

.news-featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.news-cta-button {
    border-radius: 0.5rem;
    background: linear-gradient(87deg, #C8ADF5 1.33%, #6610F2 105.97%);
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.news-cta-button span {
    color: #F2F2F2;
    text-align: center;
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

.news-cta-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

/* Featured Card Title Styles */
.featured-card-title {
    color: #023;
    font-family: 'Urbanist', sans-serif;
    font-size: 2.125rem;
    font-style: normal;
    font-weight: 800;
    line-height: 2.3375rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.featured-card-highlight {
    color: #6610F2;
}

/* Featured Card Subtitle Styles */
.featured-card-subtitle {
    color: #021346;
    font-family: 'Sarabun', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .news-content-overlay {
        position: relative;
        top: 0;
        left: 0;
        max-width: 100%;
        margin: 1rem;
    }

    .news-featured-image {
        height: 250px;
    }

    .news-slide-arrow {
        top: 25%;
    }

    .featured-card-subtitle {
        margin-bottom: 0.75rem;
    }

    .news-content-overlay h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .news-content-overlay p {
        margin-bottom: 1rem;
        max-height: 60px;
        overflow-y: auto;
    }

    .news-slide-dot {
        background: rgba(205, 205, 205, 1);
    }
}

/* Events Section Styles */
.event-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

[data-fadein].event-item {
    opacity: 0 !important;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

[data-fadein].event-item.fadein-ready {
    opacity: 1 !important;
    transform: translateY(0);
}

.event-item:hover {
    transform: scale(1.02);
}

.event-image-placeholder {
    width: 7.5rem;
    height: 7.5rem;
    flex-shrink: 0;
    border-radius: 1.25rem;
    background: #D9D9D9;
    object-fit: cover;
    object-position: center;
}

.event-date {
    color: #6610F2;
    font-family: 'Urbanist', sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: 0.035rem;
}

.event-description {
    color: #023;
    font-family: 'Sarabun', sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.045rem;
    margin: 0;
}

/* News Cards Section Styles */
.news-card-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card-item:hover {
    transform: scale(1.02);
}

.news-card-image-placeholder {
    width: 100%;
    height: 10rem;
    border-radius: 1.25rem;
    background: #D9D9D9;
}

.news-card-date {
    color: #6610F2;
    font-family: 'Urbanist', sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: 0.035rem;
}

.news-card-description {
    color: #023;
    font-family: 'Sarabun', sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.045rem;
    margin: 0;
}

/* Presence Cards Section Styles */
.presence-card-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.presence-card-item:hover {
    transform: scale(1.02);
}

.presence-card-image-placeholder {
    width: 100%;
    height: 10rem;
    border-radius: 1.25rem;
    background: #D9D9D9;
}

.presence-card-date {
    color: #6610F2;
    font-family: 'Urbanist', sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: 0.035rem;
}

.presence-card-description {
    color: #023;
    font-family: 'Sarabun', sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.045rem;
    margin: 0;
}

/* Section Titles Styles */
.section-title-primary {
    color: #021346;
    font-family: 'Urbanist', sans-serif;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 800;
    line-height: 2.75rem;
    margin-bottom: 1rem;
}

.section-title-highlight {
    color: #6610F2;
}

/* Scroll to Top Button Styles */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9997;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.scroll-to-top-btn:hover {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    transform: translateY(0) scale(1.1);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-btn:active {
    transform: translateY(0) scale(0.95);
}

/* Responsive adjustments for scroll to top button */
@media (max-width: 768px) {
    .scroll-to-top-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
        bottom: 20px;
        left: 20px;
    }
}

/* Audio Player Styles */
#audio-player {
    display: none; /* Hidden temporarily */
    animation: fadeInUp 0.5s ease-out;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 52px;
    height: 52px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    z-index: 9998;
}

#audio-player:hover {
    transform: scale(1.05);
}

#audio-toggle {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 50%;
}

#audio-toggle:hover #audio-icon {
    transform: scale(1.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive adjustments for audio player */
@media (min-width: 768px) {
    #audio-player {
        bottom: 90px;
        left: 28px;
    }
}
@media (max-width: 768px) {
    #audio-player {
        width: 50px;
        height: 50px;
        bottom: 75px !important;
        left: 18px !important;
        padding: 2px;
    }

    #audio-toggle {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    #audio-icon {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    #audio-player {
        width: 60px;
        height: 60px;
        bottom: 64px !important;
        left: 12px !important;
    }

    #audio-toggle {
        width: 36px;
        height: 36px;
        padding: 6px;
    }

    #audio-icon {
        font-size: 14px !important;
    }
}

/* Mobile Menu Styles */
#mobile-menu {
    position: relative;
    z-index: 50 !important;
    background-color: rgba(55, 48, 163, 0.95) !important;
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
    transition: all 0.3s ease-in-out;
    transform-origin: top;
}

#mobile-menu-toggle {
    position: relative;
    z-index: 51 !important;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: background-color 0.2s ease;
}

#mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile menu visibility management */
@media (max-width: 768px) {
    /* Default state - menu is hidden */
    #mobile-menu:not(.mobile-menu-visible) {
        display: none !important;
        transform: scaleY(0) !important;
        opacity: 0 !important;
    }

    /* Visible state - menu is shown */
    #mobile-menu.mobile-menu-visible {
        display: block !important;
        visibility: visible !important;
        transform: scaleY(1) !important;
        opacity: 1 !important;
    }

    /* Ensure mobile menu toggle is visible on mobile */
    #mobile-menu-toggle {
        display: block !important;
    }
}

/* Desktop - hide mobile menu completely */
@media (min-width: 769px) {
    #mobile-menu {
        display: none !important;
    }
}