:root {  --gamma-bg: #0b0f19;  --gamma-surface: #111827;  --gamma-accent: #3b82f6;  --gamma-accent-glow: rgba(59, 130, 246, 0.5);  --gamma-text-p: #f8fafc;  --gamma-text-s: #94a3b8;  --gamma-font: 'Inter', system-ui, -apple-system, sans-serif;}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {  background-color: var(--gamma-bg);  color: var(--gamma-text-p);  font-family: var(--gamma-font);  line-height: 1.6;  overflow-x: hidden;  position: relative;}
.bg-darker { background-color: rgba(0,0,0,0.2) !important; }
.bg-glass {  background: rgba(17, 24, 39, 0.6);  backdrop-filter: blur(20px);  border: 1px solid rgba(255,255,255,0.05);  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);}
.bg-glass-blue {  background: rgba(59, 130, 246, 0.1);  backdrop-filter: blur(20px);  border: 1px solid rgba(59, 130, 246, 0.2);}
.gamma-slide {  min-height: 100vh;  width: 100%;  display: flex;  align-items: center;  padding: 6rem 0;  position: relative;}
.text-accent { color: var(--gamma-accent) !important; text-shadow: 0 0 20px var(--gamma-accent-glow);}
.gamma-title { font-size: 4rem; font-weight: 800; line-height: 1.1; letter-spacing: -0.04em; margin-bottom: 1.5rem; }
.gamma-subtitle { font-size: 1.4rem; color: var(--gamma-text-s); font-weight: 400; line-height: 1.5; }

.text-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #60a5fa 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

[class^="reveal-"] { 
    opacity: 0; 
    transition: opacity 1.5s ease-out, transform 1.5s ease-out, filter 1.5s ease-out; 
    will-change: opacity, transform, filter;
}

.reveal-up { transform: translateY(15px); }
.reveal-blur { filter: blur(12px); transform: scale(1.02); }
.reveal-left { transform: translateX(-20px); }
.reveal-right { transform: translateX(20px); }
.reveal-scale { transform: scale(0.95); }

.active { opacity: 1 !important; transform: translate(0) scale(1) !important; filter: blur(0) !important; }

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }

/* Dashboard Overlap Stack */
.dashboard-stack {
    position: relative;
    height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stack-item {
    position: absolute;
    width: 70%;
    transition: all 0.5s ease;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.stack-item-1 { z-index: 1; transform: translateX(-25%) translateY(-15%) rotate(-5deg); }
.stack-item-2 { z-index: 3; transform: translateX(0) translateY(0) scale(1.05); }
.stack-item-3 { z-index: 2; transform: translateX(25%) translateY(15%) rotate(5deg); }

.dashboard-stack:hover .stack-item-1 { transform: translateX(-35%) translateY(-20%) rotate(-8deg); }
.dashboard-stack:hover .stack-item-3 { transform: translateX(35%) translateY(20%) rotate(8deg); }


.btn-glow:hover {
    box-shadow: 0 0 30px var(--gamma-accent-glow);
    transform: translateY(-2px);
}

.image-showcase {  position: relative;  border-radius: 24px;  padding: 1rem;  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);  border: 1px solid rgba(255,255,255,0.1);}
.presentation-img {  width: 100%;  height: auto;  max-height: 550px;  object-fit: cover;  border-radius: 16px;  display: block;}
.presentation-img-tall { max-height: 70vh; object-fit: contain; }
.floating-card {  position: absolute;  bottom: -20px;  right: -20px;  background: rgba(17, 24, 39, 0.8);  backdrop-filter: blur(12px);  border: 1px solid rgba(255,255,255,0.1);  padding: 1.5rem;  border-radius: 16px;  box-shadow: 0 10px 30px rgba(0,0,0,0.3);  max-width: 250px;  z-index: 2;  animation: float 6s ease-in-out infinite;}
.floating-card.top-left { bottom: auto; right: auto; top: -20px; left: -20px; animation-delay: 2s;}
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); }}
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(11, 15, 25, 0.9) 0%, transparent 100%);
    backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.top-nav.nav-hidden {
    transform: translateY(-100%);
}

.slide-main-logo { height: 65px; filter: drop-shadow(0 0 15px rgba(255,255,255,0.2)); transition: all 0.3s ease; }
.hero-logo { height: 75px; filter: drop-shadow(0 0 15px rgba(255,255,255,0.1)); }
.gamma-list { list-style: none; padding: 0; margin-bottom: 0; }
.gamma-list li { position: relative; padding-left: 35px; margin-bottom: 1rem; color: var(--gamma-text-s);}
.gamma-list li::before { content: "\F26E"; font-family: "bootstrap-icons"; position: absolute; left: 0; top: 2px; color: var(--gamma-accent); font-size: 1.2rem;}
/* Reusable Curved Layout */
.curved-layout {
    display: flex;
    min-height: 80vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #0b0f19;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    margin: 2rem 0;
}

.curved-left {
    flex: 0 0 45%;
    background: #060910;
    padding: 2.5rem 3rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.curved-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 200px;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
    box-shadow: 20px 0 50px rgba(0,0,0,0.5);
}

/* Inverted Variation */
.curved-inverted {
    flex-direction: row-reverse;
}

.curved-inverted .curved-left::after {
    right: auto;
    left: -100px;
    box-shadow: -20px 0 50px rgba(0,0,0,0.5);
}

.curved-inverted .curved-right {
    padding-right: 0;
}

.curved-right {
    flex: 1;
    position: relative;
    background: #0b0f19;
    z-index: 1;
    overflow: hidden;
    min-height: 400px;
}

.curved-right img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.5s ease;
}

.curved-layout:hover .curved-right img {
    transform: scale(1.05);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

.benefit-item h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.benefit-item h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.benefit-item p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* Knowledge Base / Icons layout */
.knowledge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.knowledge-item {
    display: flex;
    gap: 1.5rem;
}

.knowledge-item i {
    font-size: 2rem;
    color: #3b82f6;
    opacity: 0.8;
}

.knowledge-item h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Diferenciadores Blocks */
.diff-block {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.diff-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f8fafc;
    background: rgba(255,255,255,0.05);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.diff-content h5 {
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.8rem;
}

.diff-content p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 0;
}

.role-btn-custom {
    width: 100%;
    max-width: 320px;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    min-height: 70px;
}

.role-btn-custom:hover {
    transform: translateX(10px);
}

.btn-blue { background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%); }
.btn-yellow { background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%); color: #000 !important; }
.btn-purple { background: linear-gradient(90deg, #8b5cf6 0%, #6d28d9 100%); }
.btn-green { background: linear-gradient(90deg, #198754 0%, #146c43 100%); }


.btn-yellow i, .btn-yellow span { color: #000; }

.description-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.description-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
    background: rgba(255,255,255,0.05);
}

.description-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.description-card p {
    color: #94a3b8;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-links {
    margin-top: 3rem;
    font-size: 0.85rem;
    color: #64748b;
}

.roles-content-area {
    flex: 1;
    padding-left: 9rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 991px) {
    .curved-layout { flex-direction: column; border-radius: 0; margin: 0; min-height: auto; }
    .curved-left { width: 100%; padding: 3rem 1.5rem; text-align: center; flex: none; }
    .curved-right { width: 100%; height: 350px; min-height: 350px; }
    .roles-content-area { padding: 3rem 1.5rem !important; flex: none; }
    .curved-left::after { display: none; }
    .benefits-grid, .knowledge-grid { grid-template-columns: 1fr; text-align: left; }
    .gamma-title { font-size: 2.2rem; }
}

@media (max-width: 991px) { 
    .gamma-slide { padding: 5rem 0; min-height: auto; } 
    .gamma-title { font-size: 2.5rem; } 
    .presentation-img { max-height: 350px; } 
    .floating-card { position: relative; bottom: 0; right: 0; top: 0; left: 0; max-width: 100%; margin-top: -30px; margin-left: 20px; margin-right: 20px; width: calc(100% - 40px); } 
    .floating-card.top-left { margin-top: -30px; } 
    .row { text-align: center; } 
    .p-md-5 { padding: 1.5rem !important; } 
    .gamma-list { text-align: left; } 
    .top-nav { padding: 0.3rem 0; } 
    .top-nav .btn { padding: 0.4rem 1rem !important; font-size: 0.85rem; }
    .slide-main-logo { height: 40px; }
    .hero-logo { height: 50px; } 
}

/* Designer Enhanced Cards */
.challenge-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.challenge-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}
.challenge-card.danger { border-left: 5px solid #ef4444; }
.challenge-card.success { border-left: 5px solid #3b82f6; }

.diff-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.diff-card:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.08);
    border-color: var(--gamma-accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.diff-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.diff-icon-wrapper i {
    font-size: 1.5rem;
    color: var(--gamma-accent);
}

.image-perspective {
    perspective: 2000px;
}
.image-perspective .image-showcase {
    transform: rotateY(-8deg) rotateX(2deg);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.image-perspective:hover .image-showcase {
    transform: rotateY(0deg) rotateX(0deg);
}

@media (max-width: 991px) {
    .diff-card { flex-direction: column; text-align: center; }
    .diff-icon-wrapper { margin: 0 auto; }
}

/* Footer & Brand Enhancements */
.footer-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--gamma-accent);
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    color: white;
    border-color: transparent;
}

.footer-link {
    color: var(--gamma-text-s);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: white;
    padding-left: 5px;
}


