<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    /* Color Palette (Triad Scheme + Neutrals) */
    --primary-color: #2A7DE1; /* Bold Blue */
    --primary-color-rgb: 42, 125, 225;
    --secondary-color-1: #7DE12A; /* Vibrant Green */
    --secondary-color-2: #E12A7D; /* Strong Pink/Red */

    --primary-color-dark: #1E5CA0; /* Darker Blue for hover/active */
    --secondary-color-1-dark: #5BA01E; /* Darker Green */
    --secondary-color-2-dark: #A01E5C; /* Darker Pink/Red */

    --text-color-dark: #222222; /* For light backgrounds */
    --text-color-light: #ffffff; /* For dark backgrounds */
    --text-color-medium: #555555;
    --text-color-subtle: #777777;

    --background-light: #f8f9fa;
    --background-dark: #1a1a1a;
    --background-grey: #e9ecef;

    --brutalist-border: 3px solid var(--text-color-dark);
    --brutalist-shadow: 5px 5px 0px var(--text-color-dark);
    --brutalist-shadow-hover: 7px 7px 0px var(--primary-color); /* Slightly adjusted hover */

    /* Fonts */
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Lato', sans-serif;

    /* Spacing */
    --spacing-unit: 1rem; /* 16px */
    --section-padding-y: calc(var(--spacing-unit) * 4); /* 64px */
    --container-padding-x: var(--spacing-unit); /* 16px */

    /* Transitions */
    --transition-speed: 0.3s;
    --transition-ease: ease-in-out;

    /* Header Height */
    --header-height: 70px; /* Adjusted based on typical navbar height */
    --footer-height: 250px; /* Approximate footer height for calculations */
}

/* General Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-color-dark);
    background-color: var(--background-light);
    line-height: 1.7; /* Increased for readability */
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.main-container {
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--text-color-dark);
    margin-top: 0;
    margin-bottom: calc(var(--spacing-unit) * 1.25); /* 20px */
    line-height: 1.3;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.1);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.2rem); } /* Responsive font size */
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h5 { font-size: clamp(1rem, 2vw, 1.25rem); }

p {
    margin-bottom: var(--spacing-unit);
    color: var(--text-color-medium);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) var(--transition-ease), opacity var(--transition-speed) var(--transition-ease);
}

a:hover {
    color: var(--primary-color-dark);
    text-decoration: underline;
    opacity: 0.85;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Section Styling */
.section {
    padding: var(--section-padding-y) var(--container-padding-x);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 2.5); /* 40px */
    color: var(--text-color-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Override Bulma container for consistent padding */
.container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding-x);
    padding-right: var(--container-padding-x);
}

/* Button Styles - Global */
.button, button, input[type="submit"], input[type="button"] {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: var(--primary-color);
    color: var(--text-color-light);
    border: var(--brutalist-border);
    padding: calc(var(--spacing-unit) * 0.65) calc(var(--spacing-unit) * 1.75); /* Adjusted padding */
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0 !important; /* Brutalism - sharp edges */
    text-transform: uppercase;
    letter-spacing: 0.8px; /* Increased letter spacing */
    transition: all var(--transition-speed) var(--transition-ease);
    box-shadow: var(--brutalist-shadow);
    text-decoration: none; /* Remove underline from button links */
}
.button:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    background-color: var(--primary-color-dark);
    color: var(--text-color-light);
    transform: translate(-3px, -3px); /* Slightly more pronounced shift */
    box-shadow: var(--brutalist-shadow-hover);
    border-color: var(--primary-color);
    text-decoration: none;
}
.button:active, button:active, input[type="submit"]:active, input[type="button"]:active {
    transform: translate(0px, 0px);
    box-shadow: 2px 2px 0px var(--text-color-dark); /* Minimal shadow on active */
}

/* Custom Button Variations (Bulma overrides) */
.button.is-primary {
    background-color: var(--primary-color);
    border-color: var(--text-color-dark);
    color: var(--text-color-light);
}
.button.is-primary:hover {
    background-color: var(--primary-color-dark);
    border-color: var(--primary-color);
}
.button.is-link.is-outlined, .custom-button-outline { /* For links styled as outline buttons */
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 3px 3px 0px var(--primary-color); /* Outline specific shadow */
}
.button.is-link.is-outlined:hover, .custom-button-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    border-color: var(--primary-color);
    box-shadow: 5px 5px 0px var(--primary-color-dark);
    transform: translate(-2px, -2px);
}

/* Read More Link Style */
.read-more-link {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary-color-2);
    transition: letter-spacing var(--transition-speed) var(--transition-ease), color var(--transition-speed) var(--transition-ease);
}
.read-more-link:hover {
    color: var(--secondary-color-2-dark);
    letter-spacing: 1px;
}
.read-more-link .icon {
    margin-left: 5px;
    transition: transform var(--transition-speed) var(--transition-ease);
}
.read-more-link:hover .icon {
    transform: translateX(4px);
}


/* Header / Navbar */
.header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1030; /* Standard fixed header z-index */
    transition: background-color var(--transition-speed) var(--transition-ease), box-shadow var(--transition-speed) var(--transition-ease);
}
.header .navbar {
    min-height: var(--header-height);
    background-color: transparent;
    padding: 0 var(--container-padding-x); /* Padding for navbar content */
}
.header .navbar-brand .navbar-item.logo-text {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--text-color-dark);
    padding-left: 0;
}
.header .logo-accent {
    color: var(--primary-color);
}
.header .navbar-item {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-color-dark);
    transition: color var(--transition-speed) var(--transition-ease);
    padding: 0.5rem 1rem;
    text-transform: uppercase; /* Consistent with brutalist buttons */
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
.header .navbar-item:hover,
.header .navbar-item.is-active {
    color: var(--primary-color);
    background-color: transparent;
}
.header .navbar-burger {
    color: var(--text-color-dark);
    width: var(--header-height); /* Make burger easier to tap */
    height: var(--header-height);
}
.header .navbar-burger span {
    background-color: var(--text-color-dark);
    height: 3px;
    width: 22px; /* Slightly shorter lines */
    left: calc(50% - 11px); /* Center lines */
}
.header .navbar-burger span:nth-child(1) { top: calc(50% - 8px); }
.header .navbar-burger span:nth-child(2) { top: calc(50% - 1.5px); }
.header .navbar-burger span:nth-child(3) { top: calc(50% + 5px); }

@media screen and (max-width: 1023px) {
    .header .navbar-menu {
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        border-top: 2px solid var(--background-grey);
        padding: 0.5rem 0;
    }
    .header .navbar-item {
        padding: 0.75rem 1.5rem; /* More padding for mobile items */
        border-bottom: 1px solid var(--background-grey);
    }
    .header .navbar-item:last-child { border-bottom: none; }
    .header .navbar-end .navbar-item .button { width: calc(100% - 2rem); margin: 0.5rem 1rem; }
}

/* Hero Section */
.hero-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}
.hero.is-fullheight-with-navbar {
    min-height: 100vh; /* True full height */
    padding-top: var(--header-height); /* Account for fixed header */
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero .hero-body {
    padding: calc(var(--spacing-unit) * 2);
    position: relative; /* For z-index if needed */
    z-index: 2;
}
.hero .title.hero-title {
    font-size: clamp(2.8rem, 6vw, 4rem); /* Dynamic title size */
    font-weight: 900;
    color: var(--text-color-light);
    text-shadow: 3px 3px 0px rgba(0,0,0,0.5), 0px 0px 10px rgba(0,0,0,0.3); /* Stronger brutalist shadow */
    margin-bottom: var(--spacing-unit);
}
.hero .subtitle.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--text-color-light);
    margin-bottom: calc(var(--spacing-unit) * 2.5);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}
.hero .hero-button {
    margin-top: var(--spacing-unit);
    padding: calc(var(--spacing-unit) * 0.8) calc(var(--spacing-unit) * 2.5);
    font-size: 1.15rem;
}

.hero-shape-divider {
    position: absolute;
    bottom: -1px; /* Ensure no gap */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 1;
}
.hero-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: clamp(50px, 10vw, 100px); /* Responsive height */
}
.hero-shape-divider .shape-fill {
    fill: var(--background-light);
}

/* Sections General Card Styling */
.card {
    background-color: var(--text-color-light);
    border: var(--brutalist-border);
    box-shadow: var(--brutalist-shadow);
    transition: transform var(--transition-speed) var(--transition-ease), box-shadow var(--transition-speed) var(--transition-ease);
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 0 !important; /* Ensure no radius from Bulma */
}
.card:hover {
    transform: translateY(-6px) scale(1.01); /* More noticeable hover */
    box-shadow: var(--brutalist-shadow-hover);
}
.card .card-image, .card .image-container { /* Global for card images */
    /* display: flex; */
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-bottom: var(--brutalist-border); /* Brutalist detail */
    /* Example fixed height for image area, adjust per card type if needed */
    /* height: 220px; */
}
.card .card-image img, .card .image-container img {
    width: 100%;
    height: 100%; /* Fill the container if container has fixed height */
    object-fit: cover;
    display: block; /* Remove any extra space below image */
}
.card .card-content {
    padding: calc(var(--spacing-unit) * 1.5);
    flex-grow: 1; /* Allows content to push footer elements down */
    display: flex;
    flex-direction: column;
}
.card .card-content .title { /* Title within any card */
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 0.75);
}
.card .card-content .content { /* Paragraph content within any card */
    font-size: 0.95rem;
    color: var(--text-color-medium);
    flex-grow: 1; /* Pushes actions to bottom */
}
.card .card-footer, .card .card-content .button, .card .card-content .field { /* For actions at bottom */
    margin-top: auto; /* Pushes to bottom of card-content */
    padding-top: var(--spacing-unit);
}


/* Quem Somos Section */
.quem-somos-section { background-color: var(--background-light); }
.quem-somos-section .content.is-medium { font-size: 1.15rem; line-height: 1.7; }
.quem-somos-section figure img { border: var(--brutalist-border); box-shadow: var(--brutalist-shadow); }

/* Services Section */
.servicos-section { background-color: var(--background-grey); }
.service-card .card-image { height: 200px; /* Fixed height for service card images */ }
.service-card .card-content { text-align: center; } /* Centered content for service cards */

/* Behind the Scenes Section */
.behind-the-scenes-section { background-color: var(--text-color-light); }
.behind-the-scenes-section .title.is-3 { color: var(--secondary-color-2); }
.behind-the-scenes-section figure img { border: var(--brutalist-border); box-shadow: var(--brutalist-shadow); }

/* Webinars Section */
.webinars-section { background-color: var(--background-grey); }
.webinar-card .card-image { height: 200px; }
.webinar-card .card-content { text-align: left; } /* Text usually left aligned for readability */
.webinar-card .card-content .button { width: 100%; }

/* Switch Toggle (UI Component) */
.switch { position: relative; display: inline-block; width: 50px; height: 28px; vertical-align: middle; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 28px; }
.slider:before { position: absolute; content: ""; height: 20px; width: 20px; left: 4px; bottom: 4px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: var(--secondary-color-1); }
input:focus + .slider { box-shadow: 0 0 2px var(--secondary-color-1); }
input:checked + .slider:before { transform: translateX(22px); }
.switch-label { margin-left: 8px; font-size: 0.9rem; color: var(--text-color-medium); }


/* Media Section */
.media-section { background-color: var(--text-color-light); }
.media-item.box {
    border: var(--brutalist-border);
    box-shadow: var(--brutalist-shadow);
    transition: box-shadow var(--transition-speed) var(--transition-ease);
    background-color: var(--background-light);
    height: 100%; display: flex; flex-direction: column;
}
.media-item.box:hover { box-shadow: var(--brutalist-shadow-hover); transform: translateY(-3px); }
.media-item .title.is-4 { color: var(--secondary-color-2); }
.media-item p { flex-grow: 1; }
.media-button { margin-top: auto; }
.media-button .icon { margin-right: 8px; }

/* Partners Section */
.partners-section { background-color: var(--background-grey); padding: calc(var(--spacing-unit) * 2.5) 0; }
.partner-logos img {
    max-height: 55px;
    width: auto;
    margin: var(--spacing-unit) auto;
    filter: grayscale(80%); /* Slightly less grayscale */
    opacity: 0.6;
    transition: all var(--transition-speed) var(--transition-ease);
}
.partner-logos img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.1); }

/* Press Section */
.press-section { background-color: var(--text-color-light); }
.press-card .card-content { text-align: left; } /* Text usually left aligned */

/* Community Section */
.community-section { background-color: var(--background-grey); }
.community-section figure img { border: var(--brutalist-border); box-shadow: var(--brutalist-shadow); }

/* External Resources Section */
.external-resources-section { background-color: var(--text-color-light); }
.resource-card .card-content { text-align: left; } /* Text usually left aligned */
.resource-card .title.is-5 a { color: var(--primary-color); }
.resource-card .title.is-5 a:hover { color: var(--primary-color-dark); }


/* Contact Section */
.contact-section {
    background-image: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color-1) 50%, var(--secondary-color-2) 100%);
    background-size: 400% 400%; /* Larger size for slower animation */
    animation: gradientAnimation 20s ease infinite;
    padding-top: calc(var(--spacing-unit) * 4.5);
    padding-bottom: calc(var(--spacing-unit) * 4.5);
}
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.contact-section .section-title, .contact-section .subtitle {
    color: var(--text-color-light);
    text-shadow: 2px 2px 3px rgba(0,0,0,0.4);
}
.contact-section form {
    background-color: rgba(255, 255, 255, 0.92);
    padding: calc(var(--spacing-unit) * 2.5);
    border: var(--brutalist-border);
    border-color: rgba(0,0,0,0.7); /* Darker border for form on gradient */
    box-shadow: 7px 7px 0px rgba(0,0,0,0.3); /* Softer shadow on gradient */
}
.contact-section .label { color: var(--text-color-dark); font-weight: 700; }
.contact-section .input, .contact-section .textarea, .contact-section .select select {
    border-radius: 0 !important;
    border: 2px solid var(--text-color-medium); /* Slightly softer border for inputs */
    box-shadow: none;
    font-size: 1rem;
    padding: calc(var(--spacing-unit) * 0.7);
    transition: border-color var(--transition-speed) var(--transition-ease), box-shadow var(--transition-speed) var(--transition-ease);
    background-color: var(--text-color-light);
}
.contact-section .input:focus, .contact-section .textarea:focus, .contact-section .select select:focus,
.contact-section .input:active, .contact-section .textarea:active, .contact-section .select select:active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.125em rgba(var(--primary-color-rgb), 0.25);
    background-color: #fff; /* Ensure background stays white on focus */
}
.contact-section .control.has-icons-left .icon {
    color: var(--text-color-subtle);
    height: calc(1.4rem + (var(--spacing-unit) * 0.7 * 2) + 4px); /* Input padding + border */
    width: calc(1.4rem + (var(--spacing-unit) * 0.7 * 2) + 4px);
}
.contact-section .checkbox { color: var(--text-color-dark); }
.contact-section .checkbox a { color: var(--primary-color); font-weight: 700; }
.contact-section .button[type="submit"] {
    background-color: var(--secondary-color-2);
    border-color: var(--text-color-dark);
    color: var(--text-color-light);
}
.contact-section .button[type="submit"]:hover {
    background-color: var(--secondary-color-2-dark);
    border-color: var(--secondary-color-2);
}

/* Footer */
.footer-bg {
    background-color: var(--text-color-dark);
    color: var(--background-grey);
    padding: calc(var(--spacing-unit) * 3.5) var(--container-padding-x);
}
.footer-bg .footer-title {
    color: var(--text-color-light);
    font-weight: 700;
    margin-bottom: var(--spacing-unit);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-bg .logo-accent { color: var(--primary-color); }
.footer-bg p, .footer-bg ul { font-size: 0.9rem; margin-bottom: calc(var(--spacing-unit) * 0.6); line-height: 1.6; }
.footer-bg a { color: var(--background-grey); }
.footer-bg a:hover { color: var(--primary-color); }
.footer-bg ul { list-style: none; padding-left: 0; }
.footer-bg ul li { margin-bottom: calc(var(--spacing-unit) * 0.3); }
.footer-bg .copyright {
    margin-top: calc(var(--spacing-unit) * 2.5);
    padding-top: calc(var(--spacing-unit) * 1.5);
    border-top: 1px solid var(--text-color-medium);
    font-size: 0.8rem;
    color: var(--text-color-subtle);
}
.footer-bg .copyright p { color: var(--text-color-subtle); }
/* Social links already styled by .footer-bg a */

/* Content Pages (Privacy, Terms, About, Success, Contacts-page) */
.page-content-container { /* Generic wrapper for content pages like privacy, terms */
    padding-top: calc(var(--header-height) + var(--section-padding-y) * 0.5); /* Header height + some space */
    padding-bottom: var(--section-padding-y);
    min-height: calc(100vh - var(--header-height) - var(--footer-height));
    background-color: var(--text-color-light); /* Ensure content background */
}
.page-content-container .container {
    max-width: 800px; /* Narrower for readability */
}
.page-content-container h1, .page-content-container .title.is-1 {
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--primary-color);
}

/* Success Page Specifics */
.success-page-wrapper { /* Wrapper for success.html body or main div */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: var(--spacing-unit) * 2;
    background-color: var(--background-grey); /* Or a subtle gradient */
}
.success-page-content {
    background-color: var(--text-color-light);
    padding: calc(var(--spacing-unit) * 3);
    border: var(--brutalist-border);
    box-shadow: var(--brutalist-shadow);
    max-width: 550px;
    width: 90%;
}
.success-page-content .icon.is-large .fa-check-circle { /* Assuming FontAwesome icon */
    font-size: 4.5rem;
    color: var(--secondary-color-1);
    margin-bottom: var(--spacing-unit);
}
.success-page-content .title { color: var(--secondary-color-1); }

/* AOS Animation Defaults */
[data-aos] { transition-property: transform, opacity; }

/* Parallax Background (Simple) */
.parallax-background { background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; }

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .hero.is-fullheight-with-navbar { min-height: calc(100vh - var(--header-height)); padding-top: 0; } /* Adjust for mobile view */
    .section { padding: calc(var(--section-padding-y) * 0.7) var(--container-padding-x); }
    .columns.is-vcentered .column { text-align: center; }
    .columns.is-vcentered .column:not(:last-child) { margin-bottom: var(--spacing-unit) * 1.5; }
    .column.is-two-thirds, .column.is-half, .column.is-offset-one-sixth { width: 100% !important; margin-left: 0 !important; }

    .contact-section form { padding: calc(var(--spacing-unit) * 1.5); }
    .page-content-container { padding-top: calc(var(--header-height) + var(--spacing-unit) * 1.5); }
}

/* Cookie Consent Popup Minimal Styles (already in HTML, this is for reference or if moved to CSS) */
/* #cookieConsentPopup { ... } */
/* #acceptCookieConsent { ... } */
/* #closeCookiePopup { ... } */</pre></body></html>