<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS Variables */
:root {
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Merriweather', serif;

    /* Analogous Color Scheme with Brutalist/Eco-Minimalist feel */
    --primary-color: #00796B; /* Deep Teal - trustworthy, modern */
    --primary-color-dark: #004D40; /* Darker Teal for hover/borders */
    --primary-color-light: #B2DFDB; /* Lighter Teal for backgrounds or subtle accents */

    --accent-color: #D87C4B; /* Terracotta/Ochre - warmth, eco */
    --accent-color-dark: #A0522D; /* Darker Accent */

    /* Neutrals */
    --text-color-dark: #212121; /* For light backgrounds */
    --text-color-light: #FFFFFF; /* For dark backgrounds */
    --text-color-muted: #616161; /* Grey for less important text */

    --background-light: #FFFFFF;
    --background-medium: #F5F5F5; /* Slightly off-white for sections */
    --background-dark: #263238; /* Dark for footer or contrast sections */

    --border-color: #BDBDBD; /* Subtle borders for brutalist touch */
    --card-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for cards */
    --brutalist-border: 2px solid var(--text-color-dark); /* Optional bold border */

    --spacing-unit: 1rem; /* Approx 16px */
    --header-height: 70px; /* Adjust as needed */
}

/* Global Reset &amp; Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%; /* 16px base */
}

body {
    font-family: var(--font-secondary);
    line-height: 1.7;
    color: var(--text-color-dark);
    background-color: var(--background-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure footer sticks to bottom */
}
main {
    flex-grow: 1; /* Allows main content to expand and push footer */
}

/* Typography */
h1, h2, h3, h4, h5, h6, .title {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: calc(var(--spacing-unit) * 0.75);
    color: var(--text-color-dark); /* Default for sections */
}

.section .title, .section .subtitle {
    color: var(--text-color-dark); /* Ensure dark text on light backgrounds */
}
/* Ensure high contrast for section titles */
.section &gt; .container &gt; .title.is-2 {
    color: #222222 !important; /* Enforce dark title color */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1); /* Subtle shadow for depth */
}

p {
    margin-bottom: var(--spacing-unit);
    font-family: var(--font-secondary);
    color: var(--text-color-dark); /* Default paragraph color */
}
.section p, .content p {
    color: #333333; /* Enforce readable dark text */
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--primary-color-dark);
    text-decoration: underline;
}

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

/* Utility Classes */
.container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-unit);
    padding-right: var(--spacing-unit);
}

.has-text-centered { text-align: center; }
.mb-6 { margin-bottom: calc(var(--spacing-unit) * 3) !important; }
.mt-5 { margin-top: calc(var(--spacing-unit) * 2.5) !important; }


/* Buttons - Global Styles */
.button, button, input[type="submit"], input[type="button"] {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: var(--primary-color);
    color: var(--text-color-light) !important;
    border: 2px solid var(--primary-color-dark); /* Brutalist border */
    padding: calc(var(--spacing-unit) * 0.75) calc(var(--spacing-unit) * 1.5);
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0; /* Brutalist sharp edges */
    transition: all 0.2s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.button:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    background-color: var(--primary-color-dark);
    color: var(--text-color-light) !important;
    border-color: var(--text-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.button:active, button:active, input[type="submit"]:active, input[type="button"]:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.button.is-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color-dark);
    color: var(--text-color-light) !important;
}
.button.is-primary:hover {
    background-color: var(--primary-color-dark);
    border-color: var(--text-color-dark);
}
.button.is-link.is-outlined {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
}
.button.is-link.is-outlined:hover {
    background-color: var(--primary-color);
    color: var(--text-color-light) !important;
    border-color: var(--primary-color);
}

/* Header &amp; Navigation */
.header.is-fixed-top {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    height: var(--header-height);
    z-index: 1000;
}
.navbar-item img { max-height: 40px; }
.navbar-item, .navbar-link {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--text-color-dark) !important;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, background-color 0.3s ease;
}
.navbar-item:hover, .navbar-link:hover {
    background-color: var(--primary-color-light) !important;
    color: var(--primary-color) !important;
}
.navbar-burger {
    color: var(--text-color-dark);
    height: var(--header-height);
    width: var(--header-height);
}
.navbar-burger span {
    background-color: var(--text-color-dark);
    height: 2px;
}
@media screen and (max-width: 1023px) {
    .navbar-menu {
        background-color: var(--background-light);
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        padding: 0.5rem 0;
    }
    .navbar-menu.is-active { display: block; }
}

/* Section Base Styles */
.section {
    padding: calc(var(--spacing-unit) * 4) var(--spacing-unit);
    position: relative;
}
.section:nth-of-type(even):not(#statistics):not(#footer) { /* Avoid overriding specific dark sections */
    background-color: var(--background-medium);
}

/* Hero Section */
#hero {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: var(--text-color-light);
}
#hero .hero-body { z-index: 2; padding: calc(var(--spacing-unit) * 2); }
#hero .title, #hero .subtitle {
    color: var(--text-color-light) !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}
#particle-container {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
}
.parallax-layer {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('image/parallax-overlay-texture.png');
    background-size: cover; opacity: 0.1; z-index: 1;
}

/* About Us &amp; Vision Sections */
#about .image-container, #vision .image-container { margin: 0 auto; max-width: 600px; }
#about img, #vision img { border-radius: 4px; box-shadow: var(--card-shadow); }
#about .content p, #vision .content p { color: #333333; }

/* Features Section (Servicios) */
.feature-card {
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: calc(var(--spacing-unit) * 1.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex; flex-direction: column; align-items: center; text-align: center;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 8px 15px rgba(0,0,0,0.1); }
.feature-card .icon-container i { color: var(--primary-color); transition: transform 0.3s ease; }
.feature-card:hover .icon-container i { transform: scale(1.1); }
.feature-card h3 { color: var(--primary-color-dark); margin-top: var(--spacing-unit); margin-bottom: calc(var(--spacing-unit) * 0.5); }

/* Statistics Section */
#statistics {
    background-size: cover; background-position: center; background-repeat: no-repeat;
    color: var(--text-color-light);
}
#statistics .title, #statistics .heading, #statistics p {
    color: var(--text-color-light) !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
#statistics .statistic-number { font-size: 3rem; font-weight: 700; color: var(--accent-color) !important; }
#statistics .progress.is-primary { background-color: rgba(255,255,255,0.3); }
#statistics .progress.is-primary::-webkit-progress-value { background-color: var(--accent-color); }
#statistics .progress.is-primary::-moz-progress-bar { background-color: var(--accent-color); }
#statistics .progress.is-primary::-ms-fill { background-color: var(--accent-color); }

/* Portfolio Section */
.portfolio-card {
    background-color: var(--background-light); border: 1px solid var(--border-color);
    border-radius: 0; overflow: hidden; transition: box-shadow 0.3s ease;
    height: 100%; display: flex; flex-direction: column;
}
.portfolio-card:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.portfolio-card .card-image {
    height: 250px; display: flex; align-items: center; justify-content: center;
    overflow: hidden; /* Ensure contained image */
}
.portfolio-card .card-image img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease;
    margin: 0 auto; /* Centering */
}
.portfolio-card:hover .card-image img { transform: scale(1.05); }
.portfolio-card .card-content {
    padding: calc(var(--spacing-unit) * 1.5); flex-grow: 1; text-align: center;
}
.portfolio-card .card-content .title { color: var(--primary-color-dark); }

/* Sustainability Section */
#sustainability .image-container { margin: 0 auto; max-width: 500px; }
#sustainability img { border-radius: 4px; box-shadow: var(--card-shadow); }
.accordion-container { margin-top: calc(var(--spacing-unit) * 1.5); }
.accordion-item { border: 1px solid var(--border-color); margin-bottom: var(--spacing-unit); border-radius: 0; }
.accordion-header {
    background-color: var(--primary-color-light); color: var(--primary-color-dark);
    padding: var(--spacing-unit) calc(var(--spacing-unit) * 1.5); width: 100%;
    text-align: left; border: none; outline: none; cursor: pointer;
    font-family: var(--font-primary); font-weight: 700; font-size: 1.1rem;
    display: flex; justify-content: space-between; align-items: center;
    transition: background-color 0.3s ease;
}
.accordion-header:hover { background-color: var(--primary-color); color: var(--text-color-light); }
.accordion-icon { font-size: 1.5rem; transition: transform 0.3s ease; }
.accordion-item.active .accordion-icon { transform: rotate(45deg); }
.accordion-content {
    padding: 0 calc(var(--spacing-unit) * 1.5); max-height: 0;
    overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: var(--background-light);
}
.accordion-content p { padding: calc(var(--spacing-unit) * 1.5) 0; color: #333333; }

/* Pricing Section */
.pricing-card {
    border: 1px solid var(--border-color); border-radius: 0; text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%;
    display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.pricing-card.is-featured { border: 2px solid var(--primary-color); box-shadow: 0 8px 25px rgba(0, 121, 107, 0.3); }
.pricing-card .card-header { background-color: var(--background-medium); border-bottom: 1px solid var(--border-color); }
.pricing-card.is-featured .card-header { background-color: var(--primary-color); }
.pricing-card .card-header-title { font-size: 1.25rem; color: var(--text-color-dark); padding: var(--spacing-unit) 0; }
.pricing-card.is-featured .card-header-title { color: var(--text-color-light) !important; }
.pricing-card .card-content .title.is-3 { color: var(--primary-color); margin-top: var(--spacing-unit); margin-bottom: calc(var(--spacing-unit)*0.25); }
.pricing-card .card-content .subtitle.is-6 { color: var(--text-color-muted); margin-bottom: var(--spacing-unit); }
.pricing-card ul { list-style: none; padding-left: 0; margin-bottom: calc(var(--spacing-unit) * 1.5); }
.pricing-card ul li { padding: calc(var(--spacing-unit) * 0.5) 0; border-bottom: 1px solid var(--background-medium); color: #333333; }
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card ul li .fas { margin-right: calc(var(--spacing-unit) * 0.5); }
.pricing-card .card-footer-item.button { border-radius: 0; border-top: 1px solid var(--border-color); border-left: none; border-right: none; border-bottom: none; }
.pricing-card.is-featured .card-footer-item.button { background-color: var(--accent-color); border-color: var(--accent-color-dark); }
.pricing-card.is-featured .card-footer-item.button:hover { background-color: var(--accent-color-dark); border-color: var(--text-color-dark); }

/* Events Calendar Section */
.event-card {
    background-color: var(--background-light); border: 1px solid var(--border-color);
    border-radius: 0; padding: calc(var(--spacing-unit) * 1.5); height: 100%;
    transition: box-shadow 0.3s ease;
}
.event-card:hover { box-shadow: var(--card-shadow); }
.event-card .subtitle.is-6 { color: var(--text-color-muted); font-style: italic; }
.event-card h3 { color: var(--primary-color-dark); }
.event-card .button.is-link.is-outlined { margin-top: var(--spacing-unit); }

/* External Resources Section */
.resource-list .card.resource-card {
    background-color: var(--background-light); border: 1px solid var(--border-color);
    margin-bottom: var(--spacing-unit); transition: box-shadow 0.3s ease;
}
.resource-list .card.resource-card:hover { box-shadow: 0 4px 10px rgba(0,0,0,0.08); }
.resource-list .card-content { padding: var(--spacing-unit) calc(var(--spacing-unit) * 1.5); }
.resource-list .title.is-5 a { color: var(--primary-color); font-weight: 700; }
.resource-list .title.is-5 a:hover { color: var(--primary-color-dark); text-decoration: underline; }
.resource-list .is-size-6.has-text-grey { color: var(--text-color-muted) !important; line-height: 1.5; }

/* Contact Section */
#contact { background-color: var(--background-medium); }
.contact-form .label { color: var(--text-color-dark); font-weight: 700; font-family: var(--font-primary); }
.contact-form .input, .contact-form .textarea {
    border-radius: 0; border: 2px solid var(--border-color); /* Brutalist border */
    padding: calc(var(--spacing-unit) * 0.75); font-family: var(--font-secondary);
    font-size: 1rem; transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form .input:focus, .contact-form .textarea:focus {
    border-color: var(--primary-color); box-shadow: 0 0 0 2px rgba(0, 121, 107, 0.25);
}
.contact-form .control.has-icons-left .icon { height: calc(var(--spacing-unit) * 2.5); width: calc(var(--spacing-unit) * 2.5); color: var(--text-color-muted); }
.contact-form .button { min-width: 200px; }

/* Footer */
.footer {
    background-color: var(--background-dark); color: var(--text-color-light);
    padding: calc(var(--spacing-unit) * 3) var(--spacing-unit);
    margin-top: auto; /* Pushes footer to bottom if content is short */
}
.footer .title { color: var(--text-color-light) !important; }
.footer p, .footer li, .footer a { color: #BDBDBD !important; font-family: var(--font-secondary); }
.footer a:hover { color: var(--text-color-light) !important; text-decoration: underline; }
.footer .title.is-4, .footer .title.is-5 { margin-bottom: var(--spacing-unit); }
.footer ul { list-style: none; padding-left: 0; }
.footer ul li { margin-bottom: calc(var(--spacing-unit) * 0.5); }
.footer .content p { color: #BDBDBD !important; }

/* Scroll Animations Placeholder */
[data-scroll-animated] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
[data-scroll-animated].is-visible { opacity: 1; transform: translateY(0); }

/* privacy.html &amp; terms.html */
.privacy-content-page, .terms-content-page {
    padding-top: calc(var(--header-height) + var(--spacing-unit) * 2);
    padding-bottom: calc(var(--spacing-unit) * 3);
    color: var(--text-color-dark);
}
.privacy-content-page .container &gt; h1, .terms-content-page .container &gt; h1 {
    margin-bottom: calc(var(--spacing-unit) * 2); color: var(--text-color-dark);
}
.privacy-content-page .content, .terms-content-page .content {
    max-width: 800px; margin-left: auto; margin-right: auto;
}
.privacy-content-page .content p, .terms-content-page .content p,
.privacy-content-page .content li, .terms-content-page .content li { color: #333333; }

/* success.html */
/* For success.html, ensure body allows main to center its content */
body.success-page { display: flex; flex-direction: column; min-height: 100vh; }
body.success-page main {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.success-page-container { /* This is the direct child of main on success.html */
    text-align: center; padding: var(--spacing-unit);
}
.success-page-container .card {
    max-width: 500px; width: 100%; padding: calc(var(--spacing-unit) * 2);
    border: 2px solid var(--primary-color); /* Brutalist */
    background-color: var(--background-light); border-radius: 0;
}
.success-page-container .icon.is-large .fa-check-circle { font-size: 4rem; color: var(--primary-color); }
.success-page-container .title { color: var(--primary-color-dark); margin-top: var(--spacing-unit); }
.success-page-container .button { margin-top: calc(var(--spacing-unit) * 1.5); }

/* Cookie Popup */
#cookiePopup { font-family: var(--font-secondary); }
#cookiePopup p { color: var(--text-color-light); }
#acceptCookie {
    font-family: var(--font-primary); background-color: var(--primary-color);
    border: 1px solid var(--primary-color-dark); color: var(--text-color-light);
    padding: 10px 20px; border-radius: 0;
}
#acceptCookie:hover { background-color: var(--primary-color-dark); }

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .section { padding: calc(var(--spacing-unit) * 2.5) var(--spacing-unit); }
    .title.is-1 { font-size: 2.5rem; } .title.is-2 { font-size: 2rem; }
    .subtitle.is-3 { font-size: 1.25rem; }
    #hero .title.is-1 { font-size: 2.2rem; } #hero .subtitle.is-3 { font-size: 1.1rem; }
    .columns.is-reversed-mobile { flex-direction: column-reverse; }
    .column.is-two-thirds, .column.is-one-third { width: 100% !important; padding-left: 0; padding-right: 0; }
    .footer .columns { text-align: center; }
    .footer .column { margin-bottom: var(--spacing-unit); }
}

/* Read More Link Style */
a.read-more-link {
    display: inline-block; font-family: var(--font-primary); font-weight: 700;
    color: var(--accent-color); text-decoration: none;
    padding: calc(var(--spacing-unit) * 0.25) 0; position: relative;
    transition: color 0.3s ease;
}
a.read-more-link::after {
    content: ''; position: absolute; width: 100%; height: 2px;
    bottom: 0; left: 0; background-color: var(--accent-color);
    transform: scaleX(0.5); transform-origin: bottom left;
    transition: transform 0.3s ease-out, background-color 0.3s ease;
}
a.read-more-link:hover { color: var(--accent-color-dark); }
a.read-more-link:hover::after { transform: scaleX(1); background-color: var(--accent-color-dark); }

/* Barba.js page transitions */
.barba-leave-active, .barba-enter-active { transition: opacity .5s ease-in-out, transform .5s ease-in-out; }
.barba-leave-to { opacity: 0; transform: translateX(-20px); }
.barba-enter-from { opacity: 0; transform: translateX(20px); }

/* Contrast enforcement for common Bulma utility classes or section structures */
.has-background-light p, .has-background-light .content, .has-background-light .label,
.section[style*="background-color: var(--background-medium)"] p,
.section[style*="background-color: var(--background-medium)"] .content,
.section[style*="background-color: var(--background-medium)"] .label,
section.has-background-light p, section.has-background-light .content, section.has-background-light .label,
section.has-background-white-ter p, section.has-background-white-ter .content, section.has-background-white-ter .label {
    color: #333333 !important;
}

.has-background-dark p, .has-background-dark .content, .has-background-dark .label,
section.has-background-grey-darker p, section.has-background-grey-darker .content, section.has-background-grey-darker .label {
    color: var(--text-color-light) !important;
}
.navbar-burger{
    display: none;
}</pre></body></html>