/**
 * Friburgo Privacidade - Frontend CSS
 */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;600;700&display=swap');

/* ==================== RESET & BASE ==================== */
.fp-privacidade-page {
    padding-top: 102px;
    font-family: 'Roboto', sans-serif;
    background: #fff;
}

.fp-privacidade-page *,
.fp-privacidade-page *::before,
.fp-privacidade-page *::after {
    box-sizing: border-box;
}

.fp-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== HERO SECTION ==================== */
.fp-hero {
    background: #E87817;
    border-radius: 2px 24px 24px 2px;
    padding: 40px 0 64px;
}

/* Breadcrumb */
.fp-breadcrumb {
    margin-bottom: 24px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
}

.fp-breadcrumb-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
}

.fp-breadcrumb-link:hover {
    color: #fff;
}

.fp-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    margin: 0 12px;
}

.fp-breadcrumb-current {
    color: #fff;
    font-weight: 700;
}

/* Hero Content */
.fp-hero-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fp-hero-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    color: #fff;
    margin: 0;
}

.fp-hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin: 0;
}

/* ==================== CONTENT SECTION ==================== */
.fp-content-section {
    margin-top: 60px;
    margin-bottom: 80px;
}

.fp-content-layout {
    display: flex;
    gap: 120px;
    align-items: flex-start;
}

/* Left Column: Content */
.fp-content-main {
    flex: 1;
    max-width: 644px;
    min-width: 0;
}

/* Section */
.fp-section-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: #006140;
    margin: 0 0 24px;
}

.fp-section-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #ACACAC;
    margin: 0 0 32px;
}

.fp-section-text:last-child {
    margin-bottom: 0;
}

.fp-section-divider {
    border: none;
    height: 1px;
    background: #E87817;
    margin: 32px 0;
}

/* ==================== TABLE OF CONTENTS ==================== */
.fp-toc {
    width: 357px;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
}

.fp-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fp-toc-item {
    padding: 8px 0;
    border-left: 1.5px solid transparent;
    transition: border-color 0.2s;
}

.fp-toc-item.active {
    border-left-color: #E87817;
}

.fp-toc-link {
    display: block;
    padding-left: 16px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #878787;
    transition: color 0.2s, font-weight 0.2s;
}

.fp-toc-item.active .fp-toc-link {
    font-weight: 600;
    color: #006140;
}

.fp-toc-link:hover {
    color: #006140;
}

/* ==================== RESPONSIVE - TABLET ==================== */
@media (max-width: 1024px) {
    .fp-content-layout {
        flex-direction: column;
        gap: 40px;
    }

    .fp-content-main {
        max-width: 100%;
    }

    .fp-toc {
        width: 100%;
        position: static;
        order: -1;
    }

    .fp-section-title {
        font-size: 28px;
        line-height: 36px;
    }

    .fp-hero-title {
        font-size: 40px;
        line-height: 48px;
    }
}

/* ==================== RESPONSIVE - MOBILE ==================== */
@media (max-width: 768px) {
    .fp-privacidade-page {
        padding-top: 92px;
    }

    .fp-hero {
        padding: 32px 0 40px;
    }

    .fp-hero-title {
        font-size: 32px;
        line-height: 40px;
    }

    .fp-hero-subtitle {
        font-size: 14px;
    }

    .fp-breadcrumb {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .fp-breadcrumb-separator {
        margin: 0 8px;
    }

    .fp-content-section {
        margin-top: 40px;
        margin-bottom: 48px;
    }

    .fp-content-layout {
        gap: 24px;
    }

    .fp-section-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .fp-section-text {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 24px;
    }

    .fp-section-divider {
        margin: 24px 0;
    }

    .fp-toc-link {
        font-size: 14px;
    }
}

/* ==================== RESPONSIVE - MOBILE SMALL ==================== */
@media (max-width: 480px) {
    .fp-hero-title {
        font-size: 28px;
        line-height: 36px;
    }

    .fp-section-title {
        font-size: 22px;
        line-height: 30px;
    }
}
