/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1A2B4C;
    --secondary: #2C3E50;
    --accent: #F85E8A;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-900: #111827;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-small {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 3rem 0;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    border: 0;
    outline: 0;
    border-bottom: 0;
    transition: all 0.6s ease-in-out;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
}

.navbar.scrolled::after {
    opacity: 1;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-bottom: 0;
}

/* Mobile navbar sempre com linha */
@media (max-width: 767px) {
    .navbar::after {
        opacity: 1;
    }
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    border: 0;
    outline: 0;
}

.navbar-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border: 0;
    outline: 0;
}

/* Mobile navbar sempre com fundo */
@media (max-width: 767px) {
    .navbar {
        background: #ffffff !important;
        backdrop-filter: blur(16px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        border-bottom: 0;
    }
    
    .navbar.scrolled {
        background: #ffffff !important;
    }
}

.navbar-logo-mobile {
    height: 3rem;
    width: auto;
}

.mobile-menu-button {
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-button:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

.mobile-menu-button.active {
    background-color: transparent;
}

.hamburger {
    width: 1.375rem;
    height: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 1.5px;
    background-color: #374151;
    border-radius: 1px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-button.active .hamburger-line:nth-child(1) {
    transform: translateY(0.4rem) rotate(45deg);
}

.mobile-menu-button.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-button.active .hamburger-line:nth-child(3) {
    transform: translateY(-0.4rem) rotate(-45deg);
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--gray-900);
}

.navbar-desktop {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    transition: padding 0.3s ease-in-out;
    border: 0;
    outline: 0;
}

.navbar-logo-desktop {
    height: 4rem;
    width: auto;
    transition: height 0.3s ease-in-out;
}

.navbar.scrolled .navbar-desktop {
    padding: 0.75rem 0;
}

.navbar.scrolled .navbar-logo-desktop {
    height: 3rem;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-item {
    position: relative;
    padding: 0.625rem 1rem;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar.scrolled .nav-item {
    color: var(--gray-700);
}

.nav-item:hover {
    color: var(--accent);
}

.navbar.scrolled .nav-item:hover {
    color: var(--accent);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: var(--accent);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.nav-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-cta {
    position: relative;
    margin-left: 1rem;
    padding: 0.625rem 1.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.navbar:not(.scrolled) .nav-cta {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.nav-cta:hover {
    background: rgba(255, 107, 53, 0.9);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* Mobile Menu Sidebar */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.3s, opacity 0.3s ease;
}

.mobile-menu.open {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s 0s, opacity 0.3s ease;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10001;
}

.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 380px;
    height: 100%;
    background: #ffffff;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 10002;
}

@supports (height: 100dvh) {
    .mobile-menu-sidebar {
        height: 100dvh;
    }
}

.mobile-menu.open .mobile-menu-sidebar {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
    flex-shrink: 0;
}

.mobile-menu-logo {
    height: 2.25rem;
    width: auto;
}

.mobile-menu-close {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.mobile-menu-close:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.mobile-menu-close svg {
    width: 1.375rem;
    height: 1.375rem;
    color: #374151;
}

.mobile-menu-nav {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    padding: 0.875rem 1rem;
    gap: 0.375rem;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 0.625rem;
    transition: all 0.2s;
    background: transparent;
    flex-shrink: 0;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
    color: #F85E8A;
    background: #f9fafb;
    transform: translateX(4px);
}

.mobile-nav-item svg {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

.mobile-menu-footer {
    padding: 0.875rem 1rem 1rem 1rem;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    flex-shrink: 0;
}

.mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: #F85E8A;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    border-radius: 0.625rem;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(248, 94, 138, 0.3);
    transition: all 0.3s;
}

.mobile-nav-cta:hover,
.mobile-nav-cta:active {
    background: rgba(248, 94, 138, 0.9);
    box-shadow: 0 6px 16px rgba(248, 94, 138, 0.4);
    transform: translateY(-2px);
}

.mobile-nav-cta svg {
    width: 0.9375rem;
    height: 0.9375rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 1rem 4rem;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

.floating-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 20s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(var(--tx), var(--ty));
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1024px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    margin-bottom: 2rem;
    font-weight: 600;
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: white;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--accent);
}

.hero-title .mr-2 {
    margin-right: 0.5rem;
}

.hero-title .mr-3 {
    margin-right: 0.75rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: rgba(248, 94, 138, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

.navbar.scrolled .btn-secondary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.navbar.scrolled .btn-secondary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 3rem 0 5rem 0;
    background: linear-gradient(to bottom, #000209, #0f1419, #1a2332);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.liferay-accent {
    background: linear-gradient(135deg, #0B63CE 0%, #00D1FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 768px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.service-card {
    background: rgba(26, 35, 50, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.6);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0.5rem;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), var(--secondary));
}

.service-card-content {
    position: relative;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.service-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(11, 99, 206, 0.3), rgba(248, 94, 138, 0.3));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

.service-icon i {
    width: 1.5rem;
    height: 1.5rem;
}

.service-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.813rem;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .service-description {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .service-description {
        font-size: 1.125rem;
        line-height: 1.7;
    }
}

@media (min-width: 1024px) {
    .service-description {
        font-size: 1.25rem;
    }
}

/* ===== ABOUT/FAQ SECTION ===== */
.about-section {
    padding: 3rem 0 3rem 0;
    background: linear-gradient(to bottom, #1a2332, #0f1419);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 4rem;
}

.faq-item {
    background: rgba(26, 35, 50, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}

.faq-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
    border-color: var(--accent);
    background: rgba(26, 35, 50, 0.7);
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
}

.faq-header-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, rgba(248, 94, 138, 0.15), rgba(26, 43, 76, 0.15));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    transition: all 0.3s;
}

.faq-item.open .faq-icon,
.faq-item:hover .faq-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(248, 94, 138, 0.25), rgba(26, 43, 76, 0.25));
}

.faq-icon i {
    width: 1.5rem;
    height: 1.5rem;
}

.faq-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

.faq-toggle {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: white;
}

.faq-toggle i {
    width: 1.25rem;
    height: 1.25rem;
    color: white !important;
}

.faq-item.open .faq-toggle {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.faq-content-inner {
    padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-divider {
    height: 2px;
    background: linear-gradient(to right, var(--accent), transparent);
    margin-bottom: 1rem;
}

.faq-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ===== LIFERAY SECTION ===== */
.liferay-section {
    padding: 3rem 0;
    background: linear-gradient(to bottom, #0f1419, #1a2332, #010306);
    position: relative;
}

.liferay-bg-decoration {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
}

.liferay-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.liferay-logo {
    height: 5rem;
    width: auto;
    border-radius: 1rem;
}

.liferay-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.liferay-card {
    position: relative;
    background: rgba(26, 35, 50, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    overflow: hidden;
    transition: all 0.3s;
}

.liferay-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: rgba(26, 35, 50, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
}

.liferay-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.liferay-card:hover .liferay-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.liferay-card-icon i {
    width: 1.5rem;
    height: 1.5rem;
}

.liferay-card-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.liferay-card:hover .liferay-card-title {
    color: var(--accent);
}

.liferay-card-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
}

.liferay-card-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0.25rem;
    width: 0;
    background: linear-gradient(to right, var(--accent), var(--secondary));
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.liferay-card.visible .liferay-card-bar {
    width: 100%;
}

/* Card colors */
.liferay-card:nth-child(1) .liferay-card-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(6, 182, 212, 0.3));
    color: rgba(59, 130, 246, 1);
}

.liferay-card:nth-child(2) .liferay-card-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(236, 72, 153, 0.3));
    color: rgba(168, 85, 247, 1);
}

.liferay-card:nth-child(3) .liferay-card-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(16, 185, 129, 0.3));
    color: rgba(34, 197, 94, 1);
}

.liferay-card:nth-child(4) .liferay-card-icon {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(251, 191, 36, 0.3));
    color: rgba(249, 115, 22, 1);
}

.liferay-card:nth-child(5) .liferay-card-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(251, 113, 133, 0.3));
    color: rgba(239, 68, 68, 1);
}

.liferay-card:nth-child(6) .liferay-card-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
    color: rgba(99, 102, 241, 1);
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 4rem 1rem;
    overflow: hidden;
}

.cta-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
    z-index: -1;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1024px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-gradient {
    background: linear-gradient(to right, var(--accent), white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(255, 255, 255, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.arrow-animated {
    animation: arrowMove 1.5s ease-in-out infinite;
}

@keyframes arrowMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(0.3125rem);
    }
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #0f1729 0%, #1A2B4C 50%, #0f1729 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-bg-decoration {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.footer-container {
    padding: 3rem 1rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    margin-bottom: 1rem;
}

.footer-logo {
    height: 2.5rem;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-0.125rem) scale(1.1);
}

.social-icon i {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: white;
}

.tech-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

/* ===== FLOATING SOCIAL BUTTON ===== */
.floating-social {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

@media (max-width: 768px) {
    .floating-social {
        display: none;
    }
}

.floating-main-btn {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(248, 94, 138, 0.4);
    transition: all 0.3s;
    color: white;
}

.floating-main-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(248, 94, 138, 0.5);
}

.floating-main-btn.active {
    transform: rotate(45deg);
}

.floating-main-btn i {
    width: 1.5rem;
    height: 1.5rem;
}

.floating-menu {
    position: absolute;
    bottom: 4.5rem;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-social-link {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.floating-social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.floating-social-link i {
    width: 1.25rem;
    height: 1.25rem;
}

.floating-social-link.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-social-link.linkedin {
    background: linear-gradient(135deg, #0077B5, #005582);
}

.floating-social-link.instagram {
    background: linear-gradient(135deg, #E1306C, #C13584, #833AB4);
}

.floating-social-link.twitter {
    background: linear-gradient(135deg, #1DA1F2, #0c85d0);
}

.floating-social-link.youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MEDIA QUERIES ===== */
@media (min-width: 640px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: auto;
    }
    
    .btn {
        width: auto;
        min-width: 200px;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
    
    .cta-subtitle {
        font-size: 1.125rem;
    }
    
    .liferay-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .navbar-mobile {
        display: none;
    }
    
    .navbar-desktop {
        display: flex;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .services-section {
        padding: 5rem 0 5rem 0;
    }

    .about-section {
        padding: 3rem 0 5rem 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-section {
        padding: 6rem 1rem;
    }
    
    .cta-title {
        font-size: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .faq-header {
        padding: 1.5rem 2rem;
    }
    
    .faq-content-inner {
        padding: 0 2rem 1.5rem 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .cta-section {
        padding: 8rem 1rem;
    }
    
    .cta-title {
        font-size: 3.75rem;
    }
    
    .cta-subtitle {
        font-size: 1.5rem;
    }
    
    .liferay-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .footer-grid {
        gap: 3rem;
    }
    
    .liferay-logo {
        height: 8rem;
    }
}

/* ===== CAREERS PAGE STYLES ===== */
.careers-hero {
    background: linear-gradient(135deg, var(--primary), #3A5FCD);
    padding: 8rem 0 4rem;
    color: white;
    text-align: center;
}

.careers-hero-content {
    max-width: 1024px;
    margin: 0 auto;
}

.careers-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.careers-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.careers-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.careers-hero-text {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .careers-hero-title {
        font-size: 4rem;
    }
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(to bottom, #1a2332, #0f1419);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    background: rgba(26, 35, 50, 0.5);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.benefit-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
    background: rgba(26, 35, 50, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, rgba(11, 99, 206, 0.3), rgba(248, 94, 138, 0.3));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(11, 99, 206, 1);
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    width: 2rem;
    height: 2rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.benefit-description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Application Section */
.application-section {
    background: linear-gradient(to bottom, #0f1419, #010306);
    padding: 3rem 0 5rem;
}

.application-form-card {
    background: rgba(26, 35, 50, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .application-form-card {
        padding: 3rem;
    }
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.form-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.alert-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.alert-content i {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.alert-error {
    background: #FEF2F2;
    border: 1px solid #FEE2E2;
    color: #991B1B;
}

.alert-error h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.alert-error ul {
    list-style: disc;
    margin-left: 1.25rem;
    font-size: 0.875rem;
}

.alert-success {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    color: #166534;
}

/* Form Styles */
.application-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.form-label i {
    width: 1rem;
    height: 1rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s;
    background: rgba(15, 20, 25, 0.5);
    color: white;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(248, 94, 138, 0.2);
}

.form-input.error,
.form-select.error {
    border-color: #DC2626;
}

.form-error {
    color: #DC2626;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
}

.file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(15, 20, 25, 0.5);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.file-upload-label:hover {
    border-color: var(--accent);
    background: rgba(248, 94, 138, 0.1);
    color: var(--accent);
}

.file-upload-label i {
    width: 1.5rem;
    height: 1.5rem;
}

/* Submit Button */
.btn-submit {
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
