/* Global: reset → variables → base → layout → nav → footer → buttons → media */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Skip Link for Keyboard Navigation */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 8px 0;
    font-weight: 600;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* CSS Variables - Branding */
:root {
    --primary-color: #792a47;
    --primary-color-emphasis: #f5ebe8;
    --secondary-color: #5a7c2e;
    --secondary-color-emphasis: #e6f2d3;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #eae9e5;
    --border-light: #e3e0d3;
    --bg-neo: #e8e8ed;
    --white: #ffffff;
    --primary-color-rgb: 121, 42, 71;
    --primary-color-emphasis-rgb: 245, 235, 232;
    --secondary-color-rgb: 90, 124, 46;
    --secondary-color-emphasis-rgb: 230, 242, 211;
    --text-dark-rgb: 26, 26, 26;
    --text-light-rgb: 74, 74, 74;
    --bg-light-rgb: 234, 233, 229;
    --border-light-rgb: 227, 224, 211;
    --bg-neo-rgb: 232, 232, 237;
    --white-rgb: 255, 255, 255;
    --shadow-soft: 8px 8px 16px rgba(0, 0, 0, 0.16);
    --shadow-inset: inset 4px 4px 8px rgba(163, 177, 198, 0.35), inset -4px -4px 8px rgba(255, 255, 255, 0.8);
    --shadow-hover: 12px 12px 24px rgba(163, 177, 198, 0.5), -12px -12px 24px rgba(255, 255, 255, 0.9);
    --shadow-pressed: inset 4px 4px 8px rgba(163, 177, 198, 0.4), inset -4px -4px 8px rgba(255, 255, 255, 0.7);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.4;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body.slug {
    background: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

/* Shared page components (page-hero, section-title, text-content, swiper) */
.page-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
    background: radial-gradient(rgba(var(--primary-color-rgb), 0.45), rgba(0, 0, 0, 1));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    inset: 0;
}

.page-hero:not(.hide-overlay) img {
    mix-blend-mode: soft-light;
    opacity: 1;
    filter: blur(2px);
}

.page-hero.hide-overlay img {
    mix-blend-mode: unset;
    opacity: 1;
    filter: none;
}

.page-hero h1 {
    display: block;
    font-size: 2rem;
    color: var(--white);
    text-shadow: var(--shadow-soft);
    position: relative;
    z-index: 1;
    margin: 0;
    backdrop-filter: blur(15px);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    background-color: rgba(0, 0, 0, 0.05);
}

.page-hero.hide-title h1 {
    display: none;
}

.hero-scroll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-scroll-btn:hover {
    background: var(--white);
    color: var(--text-dark);
}

.hero-scroll-btn i {
    width: 24px;
    height: 24px;
}

.page-title-wrap {
    background: var(--bg-light);
    padding: 5rem 1.5rem 0 1.5rem;
    text-align: center;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.3;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle.light {
    color: var(--white);
}

.text-content {
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
}

.text-content p,
.text-content ul {
    color: var(--text-light);
    line-height: 1.4;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.text-content.light p,
.text-content.light ul {
    color: white;
}

/* Rich Text Content - Estilização genérica para conteúdo rico (WYSIWYG futuro) */
.rich-content {
    margin-bottom: 2rem;
}

.rich-content h1,
.rich-content h2,
.rich-content h3,
.rich-content h4,
.rich-content h5,
.rich-content h6 {
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

/* Base styles - Mobile First */
.rich-content h1 {
    font-size: 1.5rem;
    margin-top: 0;
}

.rich-content h2 {
    font-size: 1.25rem;
    margin-top: 0;
}

.rich-content h3 {
    font-size: 1.125rem;
}

.rich-content h4 {
    font-size: 1rem;
}

.rich-content h5 {
    font-size: 1rem;
}

.rich-content h6 {
    font-size: 1rem;
}

.rich-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.rich-content p:last-child {
    margin-bottom: 0;
}

.rich-content strong {
    color: var(--text-dark);
    font-weight: 700;
}

.rich-content em {
    font-style: italic;
}

.rich-content ul,
.rich-content ol {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.rich-content ul {
    list-style-type: disc;
}

.rich-content ol {
    list-style-type: decimal;
}

.rich-content li {
    margin-bottom: 0.5rem;
}

.rich-content li:last-child {
    margin-bottom: 0;
}

.rich-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.rich-content a:hover {
    color: var(--secondary-color);
}

.rich-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin: 1rem 0;
    color: var(--text-light);
    font-style: italic;
}

.rich-content code {
    background: var(--bg-light);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--primary-color);
}

.rich-content pre {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.rich-content pre code {
    background: transparent;
    padding: 0;
}

/* Variante light para fundos escuros */
.rich-content.light h1,
.rich-content.light h2,
.rich-content.light h3,
.rich-content.light h4,
.rich-content.light h5,
.rich-content.light h6 {
    color: var(--white);
}

.rich-content.light p,
.rich-content.light ul,
.rich-content.light ol,
.rich-content.light li {
    color: rgba(255, 255, 255, 0.9);
}

.rich-content.light strong {
    color: var(--white);
}

.rich-content.light a {
    color: var(--white);
    text-decoration: underline;
}

.rich-content.light a:hover {
    color: var(--secondary-color-emphasis);
}

/* Swiper - base styles (usado em home, about, slug) */
.swiper {
    width: 100%;
    padding: 2rem 0 3rem;
}

.swiper-slide {
    height: auto !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--white);
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

@media (max-width: 768px) {

    .swiper-button-next,
    .swiper-button-prev {
        width: 36px;
        height: 36px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }
}

/* Navigation - Global */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* backdrop-filter: blur(10px); */
    /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08); */
    z-index: 1000;
    transition: var(--transition);
}

.nav-brand a {
    display: block;
}

.navbar-slug {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    box-shadow: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-slug .logo {
    filter: brightness(0) invert(1);
}

/* Search Container - Header Slug */
.search-container {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.search-wrapper {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1rem;
    border: none;
    border-radius: 50px;
    font-size: 0.75rem;
    background: var(--white);
    color: var(--text-dark);
    transition: none;
    box-shadow: var(--shadow-soft);
}

.search-input:focus,
.search-input:focus-within {
    outline: none;
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-light);
    pointer-events: none;
}

.search-results {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: var(--primary-color-emphasis);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1001;
}

.search-results.active {
    display: block;
}


.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover,
.search-result-item:focus,
.search-result-item:focus-within {
    background: var(--secondary-color-emphasis);
}

.search-result-item:hover .search-result-title,
.search-result-item:focus .search-result-title,
.search-result-item:focus-within .search-result-title {
    color: var(--secondary-color);
}


.search-result-image {
    width: 71px;
    height: 40px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    flex-shrink: 0;
    border: 1px solid var(--border-light);
}

.search-result-content {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.25rem 0;
}

.search-result-description {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.search-no-results {
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .search-container {
        max-width: 100%;
        padding: 0 1rem;
    }
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.98);
    animation: navbarFade 0.5s ease;
}

.navbar.scrolled .logo {
    filter: none;
}

/* Slug: logo permanece branca (filter) mesmo após scroll */
.navbar-slug.scrolled .logo {
    filter: brightness(0) invert(1);
}

.navbar-slug.scrolled {
    background-color: var(--primary-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled .nav-link {
    color: var(--primary-color);
}

.navbar.scrolled .nav-menu {
    background: var(--white);
}

.nav-link:hover,
.nav-link.active {
    opacity: 0.5;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
    display: block;
    filter: brightness(0) invert(1);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-toggle:hover {
    background: var(--bg-neo);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.nav-link:hover {
    opacity: 0.5;
}

/* Footer - Global */
.footer {
    color: var(--white);
    padding: 4rem 0 2rem;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    background: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3.footer-title,
.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 600;
}

.footer-logo {
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-section p {
    opacity: 1;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 400;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    opacity: 0.5;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
    gap: 24px;
    color: var(--white);
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: var(--white);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-contact a:hover {
    opacity: 0.5;
}

.social-links {
    display: flex;
    gap: 24px;
    margin-bottom: 2rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15), -4px -4px 8px rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    background: var(--secondary-color);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.parana-competitivo {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 16px;
    margin-top: 1rem;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15), -4px -4px 8px rgba(255, 255, 255, 0.05);
}

.parana-competitivo p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 500;
    opacity: 1;
}

.parana-competitivo p strong {
    color: var(--white);
    font-weight: 700;
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    opacity: 0.9;
}

.copyright p {
    margin-bottom: 0.5rem;
}

.studio-credit {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.studio-credit a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.studio-credit a:hover {
    text-decoration: underline;
}

.studio-tagline {
    display: block;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-fab:hover {
    background-color: #1DA851;
    transform: scale(1.1);
    animation: none;
}

.whatsapp-fab .whatsapp-icon {
    width: 32px;
    height: 32px;
    stroke: none;
    fill: white;
    animation: whatsappBounce 1.5s ease-in-out infinite;
}

@keyframes navbarFade {
    0% {
        margin-top: -200px;
    }

    100% {
        margin-top: none;
    }
}

/* Animações do WhatsApp */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes whatsappBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Pausar animação em hover */
.whatsapp-fab:hover .whatsapp-icon {
    animation: none;
    transform: translateY(0);
}

/* Respeitar preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    .whatsapp-fab {
        animation: none;
    }

    .whatsapp-fab .whatsapp-icon {
        animation: none;
    }
}

/* Responsive WhatsApp FAB */
@media (max-width: 768px) {
    .whatsapp-fab {
        width: 56px;
        height: 56px;
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-fab .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

/* Responsive Navigation */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--text-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-soft);
        padding: 2rem 0;
        z-index: 999;
        border-radius: 0 0 24px 24px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    .page-hero {
        height: 75vh;
    }

    .page-hero:not(.hide-overlay) img {
        filter: blur(1px);
    }
}

@media (max-width: 576px) {
    .page-hero h1 {
        font-size: 1.5rem;
    }
}

/* Responsive Rich Content - Bootstrap Breakpoints (Mobile First) */

/* Tablet - ≥ 768px */
@media (min-width: 768px) {
    .rich-content h1 {
        font-size: 1.75rem;
    }

    .rich-content h2 {
        font-size: 1.5rem;
    }

    .rich-content h3 {
        font-size: 1.25rem;
    }

    .rich-content h4 {
        font-size: 1.125rem;
    }

    .rich-content h5 {
        font-size: 1rem;
    }

    .rich-content h6 {
        font-size: 1rem;
    }

    .rich-content p,
    .rich-content ul,
    .rich-content ol {
        font-size: 1rem;
        line-height: 1.7;
    }

    .rich-content blockquote {
        padding-left: 1.5rem;
        margin: 1.5rem 0;
    }
}

/* Desktop - ≥ 992px */
@media (min-width: 992px) {
    .rich-content h1 {
        font-size: 2rem;
    }

    .rich-content h2 {
        font-size: 1.75rem;
    }

    .rich-content h3 {
        font-size: 1.5rem;
    }

    .rich-content h4 {
        font-size: 1.25rem;
    }

    .rich-content h5 {
        font-size: 1rem;
    }

    .rich-content h6 {
        font-size: 1rem;
    }

    .rich-content p,
    .rich-content ul,
    .rich-content ol {
        font-size: 1rem;
    }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-section {
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }
}

/* Buttons - Global Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 2rem;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid currentColor !important;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-soft);
    border-color: var(--primary-color) !important;
}

.btn-primary:hover {
    background: #5a1f35;
    transform: translateY(-1px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: var(--shadow-soft);
    border-color: var(--secondary-color) !important;
}

.btn-secondary:hover {
    background: #4d7a1f;
    transform: translateY(-1px);
    box-shadow: var(--shadow-hover);
}

.btn-transparent {
    background: transparent;
    color: var(--white);
    border-color: var(--white) !important;
    box-shadow: var(--shadow-soft);
}


.btn-transparent:hover {
    color: var(--text-light);
    background-color: var(--white);
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}


/* Media & layout - ordem para performance (base antes de componentes) */
img,
video,
iframe,
embed,
object {
    max-width: 100%;
    height: auto;
}

section {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
    scroll-margin-top: 80px;
}