@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --itap-green: #5E7D5E;
    --itap-gold: #CDB16D;
    --slate-900: #0f172a;
    --slate-600: #475569;
    --slate-400: #94a3b8;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--slate-900);
    line-height: 1.5;
    background: #f8fafc;
}

.presentation-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
}

.page {
    padding: 60px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-section {
    text-align: center;
    margin-bottom: 60px;
}

.logo {
    height: 40px;
    margin-bottom: 40px;
    object-fit: contain;
}

.premium-label {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--itap-green);
    margin-bottom: 16px;
    display: block;
}

h1 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 16px;
}

.subtitle {
    font-size: 18px;
    color: var(--slate-400);
    font-weight: 500;
}

.hero-image-container {
    margin: 40px -40px;
    height: 400px;
    background: #f1f5f9;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.content-text {
    font-size: 16px;
    color: var(--slate-600);
    margin-bottom: 40px;
    font-weight: 400;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-900);
}

.benefit-icon {
    width: 32px;
    height: 32px;
    background: var(--itap-green);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.workflow {
    margin-top: 40px;
}

.workflow-step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    position: relative;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--itap-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 13px;
    color: var(--slate-600);
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mode-card {
    padding: 20px;
    background: #f8fafc;
    border-radius: 20px;
    text-align: center;
}

.mode-card h4 {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.mode-card p {
    font-size: 11px;
    color: var(--slate-400);
}

.pricing-models {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.tap-model-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 30px;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.tap-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 16px;
}

.tap-model-card h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.price-tag {
    font-size: 14px;
    font-weight: 900;
    color: var(--itap-green);
}

.cta-group {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 40px;
}

.btn-premium {
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--itap-green);
    color: white;
}

.btn-secondary {
    background: var(--slate-900);
    color: white;
}

@media print {
    body {
        background: white;
    }

    .presentation-container {
        max-width: 100%;
        margin: 0;
    }

    .page {
        page-break-after: always;
        min-height: 297mm;
    }

    .btn-premium {
        border: 1px solid #eee;
    }
}

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .pricing-models {
        grid-template-columns: 1fr;
    }

    .modes-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 36px;
    }
}