/* PACTO IC - Custom Stylesheet */
/* 
• Dark theme interface
• Elegant, minimalistic, modern
• Large typography for easy reading
• Strong visual hierarchy
• Generous spacing
• Smooth scroll sections
• Subtle gradients and glowing accents
• Slight futuristic / AI aesthetic
*/

:root {
    --bg-dark: #070709;
    --bg-card: #121216;
    --bg-card-hover: #1a1a24;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent-blue: #3b82f6;
    --accent-violet: #8b5cf6;
    --glow-blue: rgba(59, 130, 246, 0.4);
    --glow-violet: rgba(139, 92, 246, 0.4);
    
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100vh; /* Lock height to viewport */
    overflow: hidden; /* Hide normal scrollbar */
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Presentation Container */
.presentation-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    /* Hide scrollbar for cleaner look (optional but recommended for slides) */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}
.presentation-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-top: 0;
    color: var(--text-main);
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 3rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

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

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    height: 100vh; /* Force slide height */
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always; /* Ensure it stops exactly on the section */
    display: flex; /* Centering content vertically */
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 0; /* Remove old padding */
    box-sizing: border-box;
    overflow: hidden; /* Prevent inner overflow from breaking the snap */
}

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

.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-8 { margin-top: 2rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
    color: white;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at 50% -10%, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 30%, var(--bg-dark) 70%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 1000px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(139, 92, 246, 0.03) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    color: var(--accent-blue);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 1.5rem auto 3rem;
}

.hero-visual {
    margin-top: 2rem; /* Reduced to fit in 100vh */
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    height: 350px; /* Reduced height to ensure text and visual fit on screen */
    background: rgba(18, 18, 24, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 80px rgba(59, 130, 246, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
}

.hero-visual-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-visual-icon {
    font-size: 5rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
    animation: float 6s ease-in-out infinite;
}

.hero-visual-text {
    margin-top: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-main);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.hero-visual::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--accent-blue);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: pulseGlow 4s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes float {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
    100% { transform: translateY(0px) scale(1); }
}

@keyframes pulseGlow {
    0% { transform: scale(0.8); opacity: 0.2; }
    100% { transform: scale(1.2); opacity: 0.4; }
}

/* --- SECTION STYLES --- */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    color: var(--accent-violet);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Cards System */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .grid-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-cards {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem; /* Reduced from 2.5rem to fit tight slides */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-icon {
    font-size: 1.5rem; /* Reduced */
    margin-bottom: 1rem;
    color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1;
}

.card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.card p {
    font-size: 1rem;
    margin: 0;
}

/* Problem Section Specifics */
.s-problem .card-icon {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* Capabilities Section Specifics */
.s-capabilities .grid-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.s-capabilities .card {
    padding: 1.25rem;
}

.s-capabilities .card-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.s-capabilities .card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.s-capabilities .card p {
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .s-capabilities .grid-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* What is PACTO IC Section */
.s-what-is {
    background: radial-gradient(circle at right center, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

.formula-box {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(18, 18, 24, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.1);
}

.formula-box i {
    color: var(--accent-blue);
    font-size: 1rem;
}

/* How it Works / Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.5), rgba(139, 92, 246, 0.1));
}

.timeline-step {
    position: relative;
    padding-left: 60px;
    margin-bottom: 1.5rem; /* Reduced to fit 6 steps in 100vh */
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
    z-index: 1;
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.25rem; /* Reduced */
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.timeline-content p {
    font-size: .85rem;
}

/* Results Section */
.s-results {
    background: rgba(10, 10, 12, 0.8);
    position: relative;
}

.s-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.s-results::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.grid-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-block {
    text-align: center;
    padding: 1.5rem; /* Reduced to fit 8 cards */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    border-top: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    transition: transform 0.3s;
}

.stat-block:hover {
    transform: translateY(-5px);
    border-top-color: var(--accent-violet);
}

.stat-block h3 {
    font-size: 1.25rem;
    margin: 1rem 0 0;
    color: var(--text-main);
}

.stat-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Who is this for Section */
.s-target {
    background: radial-gradient(circle at left center, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

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

.enterprise-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.enterprise-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.enterprise-card i {
    font-size: 2.5rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.enterprise-card:hover i {
    color: var(--accent-blue);
}

.enterprise-card h3 {
    font-size: 1.25rem;
    margin: 0;
}

/* Final CTA Section */
.s-cta {
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.cta-box {
    position: relative;
    background: rgba(18, 18, 24, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 30px;
    padding: 5rem 3rem;
    text-align: center;
    z-index: 1;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.cta-box h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.cta-box p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

/* Footer */
.footer {
    height: 100vh; /* Make footer a final slide */
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Media Queries */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero { min-height: auto; padding: 6rem 0 4rem; }
    .hero p { font-size: 1.125rem; }
    .hero-visual { height: 200px; margin-top: 2rem; }
    .hero-visual-icon { font-size: 2.5rem; }
    .hero p { margin-bottom: 1.5rem; }
    
    /* Make sections adapt on very small screens if needed, 
       but for slides we usually try to scale content down. 
       If things overlap poorly, we allow internal scrolling. */
    section {
       align-items: center; /* keep horizontal center */
       overflow-y: auto; /* let cards scroll inside the slide if screen is tiny */
       padding-top: 4rem;
       padding-bottom: 2rem;
    justify-content: flex-start; /* don't strictly center on tiny screens if overflowing */
    }
}

/* s-how-it-works: compactar para caber em 100vh */
.s-how-it-works .section-header {
    margin-bottom: 1.25rem;
}
.s-how-it-works .section-header .section-label {
    margin-bottom: 0.5rem;
}
.s-how-it-works .section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.s-how-it-works .section-header .section-description {
    margin-top: 0.25rem;
    font-size: 0.875rem;
}
.s-how-it-works .timeline-step {
    margin-bottom: 0.625rem;
}
.s-how-it-works .timeline-content {
    padding: 0.75rem 1rem;
}

/* Vertical Dot Navigation */
.dot-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.dot-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: flex-end;
}

.dot-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.dot-label {
    background: rgba(18, 18, 24, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
    pointer-events: none;
}

.dot-link::after {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

@keyframes fadeOutActiveLabel {
    0%, 80% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(20px);
    }
}

.dot-link:hover .dot-label {
    opacity: 1;
    transform: translateX(0);
    animation: none;
}

.dot-link.active:not(:hover) .dot-label {
    animation: fadeOutActiveLabel 5s ease forwards;
}

.dot-link:hover::after,
.dot-link.active::after {
    background-color: #f97316; /* Orange color matching screenshot */
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .dot-nav {
        display: none; /* Hide on mobile to avoid overlapping */
    }
}

/* Scroll Indicator / Next Slide Button */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    text-decoration: none;
    animation: bounce 2s infinite;
}

.scroll-indicator.up {
    top: 2rem;
    bottom: auto;
    animation: bounce-up 2s infinite;
}

.scroll-indicator:hover {
    background: rgba(59, 130, 246, 0.2);
    color: var(--accent-blue);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-5px);
    animation: none; /* stop bouncing on hover */
}

.scroll-indicator.up:hover {
    transform: translateY(5px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes bounce-up {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

/* Authority Section Styles */
.authority-story {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 1.8;
    text-align: center;
}

.authority-story .story-lead {
    font-size: 1.4rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 2rem;
}

.authority-story .story-body {
    margin-bottom: 2rem;
    color: var(--text-main);
}

.authority-story .story-highlight {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    padding: 2.5rem 1rem;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    margin: 3rem 0;
    line-height: 1.4;
}

.authority-story .story-conclusion {
    margin-top: 2rem;
    font-size: 1.5rem;
    color: var(--accent-blue);
    font-weight: 600;
}

/* Transformation (Before / After) Layout */
.s-transformation {
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.05) 0%, var(--bg-dark) 50%);
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.transformation-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.transformation-card.before {
    border-top: 3px solid #ef4444; /* Red accent */
}

.transformation-card.after {
    border-top: 3px solid #10b981; /* Green accent */
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.05) 0%, var(--bg-card) 100%);
}

.transformation-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.transformation-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
}

.transformation-list.before li i { color: #ef4444; margin-top: 4px; }
.transformation-list.after li i { color: #10b981; margin-top: 4px; }

/* Pricing Section Layout */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 1rem auto 2rem;
    align-items: stretch;
}

/* Benefits Card */
.benefits-card {
    background: rgba(18, 18, 24, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem 2.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefits-title {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefits-title i {
    color: var(--accent-blue);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefits-list li {
    font-size: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.benefits-list li strong {
    color: var(--text-main);
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Card (Enterprise SaaS Style) */
.pricing-card-wrapper {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card-wrapper::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
    border-radius: 26px;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.7;
    animation: pulse 4s ease-in-out infinite;
    height: calc(100% + 4px);
}

@keyframes pulse {
    0% { opacity: 0.6; filter: blur(8px); }
    50% { opacity: 0.9; filter: blur(12px); }
    100% { opacity: 0.6; filter: blur(8px); }
}

.pricing-card {
    background: var(--bg-card);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem 2.5rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.pricing-title {
    font-size: 1.1rem;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features {
    text-align: left;
    margin-bottom: 0;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--accent-violet);
    font-size: 1.1rem;
}

.pricing-value-line {
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 500;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pricing-value-line::before, .pricing-value-line::after {
    content: '';
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

/* Responsive updates for the new sections */
@media (max-width: 768px) {
    .transformation-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    .pricing-amount {
        font-size: 2.5rem;
    }
    .pricing-value-line::before, .pricing-value-line::after {
        width: 30px;
    }
}

/* =====================================================
   RESPONSIVIDADE MOBILE — PACTO IC
   Em mobile a apresentação vira scroll normal (não PPT)
   ===================================================== */
@media (max-width: 768px) {

    /* 1. Desativar modo slide — voltar ao scroll normal */
    html, body {
        height: auto !important;
        overflow: auto !important;
        overflow-x: hidden !important;
    }

    .presentation-container {
        height: auto !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        scroll-snap-type: none !important;
    }

    section {
        height: auto !important;
        min-height: auto !important;
        scroll-snap-align: none !important;
        scroll-snap-stop: unset !important;
        overflow: visible !important;
        padding: 3.5rem 0 !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
    }

    /* 2. Footer também sai do modo slide */
    .footer {
        height: auto !important;
        padding: 3rem 0 !important;
        scroll-snap-align: none !important;
    }

    /* 3. Container com padding menor e box-sizing correto */
    .container {
        padding: 0 1.25rem !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* 4. Tipografia */
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.6rem !important; margin-bottom: 1rem !important; }
    h3 { font-size: 1.15rem !important; }

    /* Override de h1 inline na hero */
    .hero h1,
    section h1[style] {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    /* 5. Section header */
    .section-header {
        margin: 0 auto 1.75rem !important;
    }

    /* 6. Hero section */
    .hero .container img {
        height: 110px !important;
        margin-bottom: 1rem !important;
    }

    .hero-subtitle { margin-bottom: 1rem !important; }

    .hero p {
        font-size: 1rem !important;
        margin: 0.75rem auto 1.5rem !important;
    }

    .hero-visual {
        height: 140px !important;
        margin-top: 1.5rem !important;
    }

    .hero-visual-icon { font-size: 2.5rem !important; }
    .hero-visual-text { font-size: 1rem !important; margin-top: 0.75rem !important; }

    /* 7. Grids de cards — 1 coluna */
    .grid-cards {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    /* Capacidades: 2 colunas em mobile (8 cards) */
    .s-capabilities .grid-cards {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
    }

    .s-capabilities .card {
        padding: 1rem !important;
    }

    .s-capabilities .card h3 {
        font-size: 0.9rem !important;
    }

    .s-capabilities .card p {
        font-size: 0.8rem !important;
    }

    .s-capabilities .card-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }

    /* 8. Formula box */
    .formula-box {
        font-size: 1rem !important;
        gap: 0.75rem !important;
        padding: 1.25rem !important;
        margin-top: 1.5rem !important;
    }

    /* 9. Timeline */
    .timeline::before { display: none !important; }

    .timeline-step { margin-bottom: 1rem !important; }

    .timeline-content h3 { font-size: 1rem !important; }

    /* 10. Stats grid — 2 colunas */
    .grid-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        margin-top: 1rem !important;
    }

    .stat-block {
        padding: 1rem !important;
    }

    .stat-block h3 {
        font-size: 0.9rem !important;
        margin-top: 0.5rem !important;
    }

    .stat-icon { font-size: 1.75rem !important; }

    /* 11. Enterprise cards — 2 colunas */
    .enterprise-cards {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }

    .enterprise-card { padding: 1.25rem !important; }
    .enterprise-card i { font-size: 1.75rem !important; }
    .enterprise-card h3 { font-size: 1rem !important; }

    /* 12. Authority */
    .authority-story {
        font-size: 1rem !important;
    }

    .authority-story .story-lead {
        font-size: 1.05rem !important;
        margin-bottom: 1rem !important;
    }

    .authority-story .story-body {
        margin-bottom: 1rem !important;
        font-size: 0.95rem !important;
    }

    .authority-story .story-highlight {
        font-size: 1.1rem !important;
        padding: 1.5rem 0.75rem !important;
        margin: 1.5rem 0 !important;
    }

    .authority-story .story-conclusion {
        font-size: 1.15rem !important;
    }

    /* 13. Transformation grid — 1 coluna */
    .transformation-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-top: 1rem !important;
    }

    .transformation-card { padding: 1.25rem !important; }

    /* 14. Pricing grid — 1 coluna */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .pricing-card { padding: 1.5rem 1.25rem !important; }
    .pricing-amount { font-size: 2.25rem !important; }
    .benefits-card { padding: 1.5rem !important; }

    /* 15. CTA box */
    .cta-box {
        padding: 2.5rem 1.5rem !important;
    }

    .cta-box h2 {
        font-size: 1.6rem !important;
    }

    .cta-box .btn {
        font-size: 1rem !important;
        padding: 1rem 1.75rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 16. Footer logo */
    .footer img { height: 160px !important; }

    /* 17. Ocultar scroll indicators (setas cima/baixo) */
    .scroll-indicator { display: none !important; }

    /* 18. Agenda: reduzir tamanho dos itens */
    .agenda-list li {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .agenda-time {
        font-size: 0.95rem !important;
        padding: 1rem !important;
    }
}

/* Telas muito pequenas (< 480px) */
@media (max-width: 480px) {
    h1 { font-size: 1.7rem !important; }
    h2 { font-size: 1.4rem !important; }

    .s-capabilities .grid-cards {
        grid-template-columns: 1fr !important;
    }

    .enterprise-cards {
        grid-template-columns: 1fr !important;
    }

    .grid-stats {
        grid-template-columns: 1fr 1fr !important;
    }
}
