/* ============================================
   PRIVION GCC - Estilos Globais
   Paleta: Azul Royal #1A3C8F | Dourado #F5A623
   ============================================ */

/* --- Variaveis CSS --- */
:root {
    --primary: #1A3C8F;
    --primary-light: #2d5ba8;
    --primary-dark: #122a66;
    --gold: #F5A623;
    --gold-hover: #E09512;
    --gray-light: #F5F5F5;
    --gray-medium: #6c757d;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* --- Botao Dourado --- */
.btn-gold {
    background-color: var(--gold);
    color: var(--white);
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.btn-gold:active {
    transform: scale(0.97);
}

.btn-gold.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1.05rem;
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 600;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: var(--white);
}

/* --- Header / Navbar --- */
.navbar {
    padding: 0.75rem 0;
    z-index: 1050;
}

.navbar .nav-link {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.navbar .nav-link:hover {
    color: var(--primary);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--gold) 100%);
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--white);
    filter: blur(80px);
}

.hero-circle-1 {
    top: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
}

.hero-circle-2 {
    bottom: 0;
    left: 25%;
    width: 18rem;
    height: 18rem;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-logo {
    height: 13rem;
    width: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* --- Secoes Genericas --- */
.section-padding {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Como Funciona --- */
.step-card {
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(245, 166, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon i {
    font-size: 1.75rem;
    color: var(--gold);
}

.step-title {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.95rem;
    color: var(--gray-medium);
}

/* --- Servicos --- */
.service-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(26, 60, 143, 0.1);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(26, 60, 143, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.service-title {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: 0.95rem;
    color: var(--gray-medium);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    font-size: 0.9rem;
    color: var(--gray-medium);
    padding: 0.35rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-check {
    color: var(--gold);
    font-weight: 700;
}

/* --- Diferenciais --- */
.differentials-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.differential-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.differential-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--gold);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.differential-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.differential-title {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.differential-description {
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin-bottom: 0;
}

/* --- Canais de Notificacao --- */
.channels-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid #e9ecef;
}

.channels-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.channel-item {
    background: var(--gray-light);
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: center;
    transition: var(--transition);
}

.channel-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.channel-icon-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.channel-name {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.15rem;
    font-size: 0.95rem;
}

.channel-desc {
    font-size: 0.8rem;
    color: var(--gray-medium);
    margin-bottom: 0;
}

/* --- Footer --- */
.footer-section {
    background-color: var(--gray-light);
    border-top: 1px solid #e9ecef;
    padding: 3rem 0 1.5rem;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-medium);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-divider {
    border-color: #dee2e6;
    margin: 1.5rem 0;
}

.footer-company-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--gray-medium);
    margin-bottom: 0.25rem;
}

/* --- Responsividade --- */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        min-height: auto;
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-padding {
        padding: 3.5rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* --- Animacoes --- */
@media (prefers-reduced-motion: no-preference) {
    .step-card,
    .service-card,
    .channel-item,
    .differential-item {
        animation: fadeInUp 0.6s ease-out both;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
