/* style.css */

/*------------------------------------------------------------------
[Table of Contents]

1.  Global Styles & Variables
    - CSS Variables (Colors, Fonts, Spacing)
    - Body & HTML
    - Typography (Headings, Paragraphs, Links)
    - Buttons
    - Utility Classes

2.  Layout
    - Header (Navbar)
    - Footer
    - Main Container & Sections

3.  Page-Specific Styles
    - Hero Section
    - Behind the Scenes (quienes-somos-snippet)
    - Services Section (servicios)
    - Customer Stories (testimonios)
    - Case Studies (estudios-de-caso)
    - External Resources (recursos-externos)
    - News Section (noticias)
    - Press Section (prensa)
    - Contact Section (contacto)
    - Success Page
    - Privacy & Terms Page Content

4.  Components
    - Cards (General)
    - Progress Indicators
    - Modals (Basic Placeholder)
    - Cookie Consent Popup

5.  Animations & Transitions
    - Scroll Animations (Initial States)
    - Hover Effects

6.  Responsive Design (Media Queries)
-------------------------------------------------------------------*/

/* 1. Global Styles & Variables
-------------------------------------------------------------------*/
:root {
    /* Bright Color Palette */
    --primary-color: #FF4081; /* Vibrant Pink/Coral */
    --primary-color-darker: #D81B60; /* Darker Pink for hover/active */
    --secondary-color: #00BCD4; /* Bright Cyan/Teal */
    --secondary-color-darker: #0097A7;
    --accent-color: #FFC107; /* Amber/Yellow */
    --accent-color-darker: #FFA000;

    /* Text Colors */
    --text-dark: #2c2c2c; /* Dark grey for body text, slightly softer than pure black */
    --text-light: #FFFFFF;
    --text-headings: #1a1a1a; /* Even darker for strong headings */
    --text-muted: #6c757d; /* Lighter grey for muted text */

    /* Background Colors */
    --bg-light: #f8f9fa; /* Very light grey for section backgrounds */
    --bg-white: #FFFFFF;
    --bg-dark-overlay: rgba(0, 0, 0, 0.55); /* For hero and image overlays */

    /* Fonts */
    --font-headings: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing & Borders */
    --spacing-unit: 1rem; /* 16px */
    --border-radius-small: 4px;
    --border-radius-medium: 8px;
    --border-radius-large: 12px;
    --box-shadow-light: 0 4px 15px rgba(0, 0, 0, 0.08);
    --box-shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --transition-fast: all 0.2s ease-in-out;
    --transition-medium: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* "Drawn" feel */

    /* Header Height */
    --header-height: 52px; /* Default Bulma navbar height, adjust if customized */
}

/* Apply a natural box layout model to all elements */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%; /* Corresponds to 16px by default */
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll */
    padding-top: var(--header-height); /* Account for fixed header */
    padding-top: 0px !important;
}

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

.title.is-1 { font-size: clamp(2.5rem, 5vw, 3.75rem); } /* Adaptive Typography */
.title.is-2 { font-size: clamp(2rem, 4vw, 3rem); }
.title.is-3 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.title.is-4 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
.title.is-5 { font-size: clamp(1rem, 2.5vw, 1.25rem); }

.subtitle {
    color: var(--text-muted);
    font-weight: 400;
}

p {
    margin-bottom: var(--spacing-unit);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem); /* Adaptive body text */
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover, a:focus {
    color: var(--secondary-color-darker);
    text-decoration: underline;
}

/* Global Button Styles (Customizing Bulma's .button) */
.button {
    font-family: var(--font-headings);
    font-weight: 500;
    border-radius: var(--border-radius-medium);
    transition: var(--transition-medium);
    padding: calc(var(--spacing-unit)*0.75) calc(var(--spacing-unit)*1.5);
    border-width: 2px; /* Slightly thicker border for a more "drawn" feel */
    border-style: solid;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Subtle shadow */
}

.button:hover, .button:focus {
    transform: translateY(-2px) scale(1.02); /* Playful hover */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.button:active {
    transform: translateY(0px) scale(1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.button.is-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}
.button.is-primary:hover, .button.is-primary:focus {
    background-color: var(--primary-color-darker);
    border-color: var(--primary-color-darker);
    color: var(--text-light);
}

.button.is-link { /* Using .is-link as secondary for consistency with HTML */
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-light);
}
.button.is-link:hover, .button.is-link:focus {
    background-color: var(--secondary-color-darker);
    border-color: var(--secondary-color-darker);
    color: var(--text-light);
}

.button.is-large {
    font-size: 1.25rem;
    padding: calc(var(--spacing-unit)*1) calc(var(--spacing-unit)*2);
}

/* Input field styling */
.input, .textarea {
    font-family: var(--font-body);
    border-radius: var(--border-radius-small);
    border: 1px solid #dbdbdb; /* Bulma default */
    box-shadow: inset 0 1px 2px rgba(10,10,10,.1);
    transition: var(--transition-medium);
    padding: calc(var(--spacing-unit)*0.6) var(--spacing-unit);
}
.input:focus, .textarea:focus,
.input:active, .textarea:active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.125em rgba(var(--primary-color-rgb, 255,64,129),0.25); /* Using placeholder for RGB if primary changes */
}
/* Helper for primary color RGB */
:root { --primary-color-rgb: 255,64,129; } /* Update if --primary-color changes */


/* Utility Classes */
.section-title {
    margin-bottom: calc(var(--spacing-unit) * 2.5);
    position: relative;
    padding-bottom: calc(var(--spacing-unit) * 0.5);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.section-title::after { /* "Drawn" underline effect */
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.has-text-shadow {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/*------------------------------------------------------------------
2. Layout
-------------------------------------------------------------------*/

/* Header (Navbar) */
.header.is-fixed-top {
    background-color: rgba(255, 255, 255, 0.95); /* Semi-transparent white for a modern feel */
    backdrop-filter: blur(8px); /* Glassmorphism touch */
    box-shadow: var(--box-shadow-light);
    height: var(--header-height);
    z-index: 1000;
}
.navbar-item.logo-text {
    font-family: var(--font-headings);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    padding-left: 0;
}
.navbar-item, .navbar-link {
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}
.navbar-item:hover, .navbar-link:hover,
.navbar-item.is-active, .navbar-link.is-active {
    background-color: transparent;
    color: var(--primary-color);
}
.navbar-burger {
    color: var(--text-dark);
    height: var(--header-height); /* Ensure it matches navbar height */
    width: var(--header-height);
}
.navbar-burger:hover {
    background-color: rgba(0,0,0,0.05);
}
.navbar-burger span {
    background-color: var(--text-dark);
    height: 2px; /* Thinner lines for a sleeker look */
    transition: var(--transition-medium);
}
/* Active burger animation - add JS to toggle 'is-active' on burger and menu */
.navbar-burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar-burger.is-active span:nth-child(2) {
    opacity: 0;
}
.navbar-burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media screen and (max-width: 1023px) {
    .navbar-menu {
        background-color: var(--bg-white);
        box-shadow: 0 8px 16px rgba(10,10,10,.1);
        padding: 0.5rem 0;
        position: absolute;
        left: 0;
        right: 0;
        top: var(--header-height);
    }
    .navbar-item {
        padding: 0.75rem 1.5rem;
    }
}


/* Footer */
.footer {
    background-color: var(--text-dark); /* Dark footer for contrast */
    color: #adb5bd; /* Light grey text */
    padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 1.5);
}
.footer .title {
    color: var(--text-light); /* White titles in footer */
    font-size: 1.2rem; /* Smaller titles in footer */
    margin-bottom: var(--spacing-unit);
}
.footer p, .footer ul li {
    font-size: 0.95rem;
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}
.footer a {
    color: var(--secondary-color);
    font-weight: 500;
}
.footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}
.footer .social-links li {
    display: inline-block; /* For horizontal layout if desired, or keep as list */
    margin-right: var(--spacing-unit); /* Space between social links */
}
.footer .social-links li:last-child {
    margin-right: 0;
}
.footer .content p {
    color: var(--text-muted); /* Muted color for copyright */
}

/* Main Container & Sections */
#main-container {
    overflow: hidden; /* For animations */
}
.section {
    padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 1.5); /* Default Bulma padding */
}
/* Ensure enough padding for specific pages (privacy, terms) */
.page-content-padding {
    padding-top: calc(var(--header-height) + var(--spacing-unit) * 2); /* Navbar height + extra space */
}

/*------------------------------------------------------------------
3. Page-Specific Styles
-------------------------------------------------------------------*/

/* Hero Section */
#hero {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative; /* For overlay */
    padding-top: var(--header-height); /* Make sure content is below fixed header */
}
#hero::before { /* Dark overlay for text readability */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)); /* Slightly darker gradient */
    z-index: 1;
}
.hero-body {
    position: relative;
    z-index: 2; /* Above overlay */
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-title {
    color: var(--text-light) !important; /* Ensure white text, override Bulma */
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}
.hero-subtitle {
    color: var(--text-light) !important; /* Ensure white text */
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    margin-bottom: calc(var(--spacing-unit) * 2);
    max-width: 700px; /* Constrain subtitle width for readability */
    margin-left: auto;
    margin-right: auto;
}
#hero .button.is-primary {
    /* Additional hero-specific button styles if needed, but global should cover */
    padding: calc(var(--spacing-unit)*0.8) calc(var(--spacing-unit)*2.5);
    font-size: 1.15rem;
}

/* Behind the Scenes (quienes-somos-snippet) */
#quienes-somos-snippet .image-container img {
    border-radius: var(--border-radius-large);
    box-shadow: var(--box-shadow-medium);
}
#quienes-somos-snippet .content.is-medium p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Services Section */
#servicios.has-background-light {
    background-color: var(--bg-light);
}

/* Customer Stories (Testimonials) */
#testimonios .testimonial-card { /* Custom class on .box */
    background-color: var(--bg-white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--box-shadow-light);
    padding: calc(var(--spacing-unit) * 1.5);
    transition: var(--transition-medium);
    height: 100%; /* Ensure cards in a row have same height if content varies */
}
#testimonios .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-medium);
}
#testimonios .media-left .image img {
    border: 3px solid var(--primary-color);
}
#testimonios .content strong {
    color: var(--text-headings);
    font-family: var(--font-headings);
}
#testimonios .content small {
    color: var(--text-muted);
    font-style: italic;
}

/* Case Studies Section */
#estudios-de-caso.has-background-light {
    background-color: var(--bg-light);
}
#estudios-de-caso .card .button.is-small { /* "Read More" link style */
    margin-top: var(--spacing-unit);
    font-weight: bold;
    text-transform: none;
    letter-spacing: 0;
}

/* External Resources Section */
.external-links-list {
    list-style: none;
    padding-left: 0;
}
.external-links-list li .box {
    margin-bottom: var(--spacing-unit);
    background-color: var(--bg-white);
    border-left: 5px solid var(--secondary-color);
    transition: var(--transition-medium);
}
.external-links-list li .box:hover {
    transform: translateX(5px);
    box-shadow: var(--box-shadow-light);
}
.external-links-list li .box h4 a {
    color: var(--text-headings);
}
.external-links-list li .box h4 a:hover {
    color: var(--primary-color);
}

/* News Section */
#noticias.has-background-light {
    background-color: var(--bg-light);
}
#noticias .card .subtitle.is-6 {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: calc(var(--spacing-unit)*0.5);
}

/* Press Section */
.press-logos img {
    max-height: 60px; /* Control logo height */
    width: auto;
    margin: var(--spacing-unit);
    filter: grayscale(80%); /* Subtle grayscale for logos */
    opacity: 0.8;
    transition: var(--transition-medium);
}
.press-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}
#prensa .content p.is-size-5 {
    font-style: italic;
    color: var(--text-muted);
}
#prensa .content em {
    color: var(--text-dark);
    font-weight: 500;
}

/* Contact Section */
#contacto.has-background-light {
    background-color: var(--bg-light);
}
#contact-form .label {
    font-family: var(--font-headings);
    font-weight: 500;
    color: var(--text-dark);
}
.contact-details h4 {
    color: var(--primary-color);
}
.contact-details p {
    margin-bottom: calc(var(--spacing-unit)*0.8);
}
.map-placeholder img {
    border-radius: var(--border-radius-medium);
    box-shadow: var(--box-shadow-light);
    margin-top: var(--spacing-unit);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Success Page Specific Styles */
.success-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--header-height)); /* Full viewport height minus header */
    text-align: center;
    padding: var(--spacing-unit);
    padding-top: var(--header-height); /* ensure content starts below fixed header if one exists on this page */
}
.success-page-container .icon-success {
    font-size: 5rem; /* Large icon */
    color: var(--primary-color); /* Or a success green */
    margin-bottom: var(--spacing-unit);
    /* For a "drawn" checkmark, you might use an SVG or a complex CSS shape */
    /* Simple text fallback for now if no icon font is used */
}
.success-page-container .icon-success::before {
    content: '✓'; /* Simple checkmark, replace with actual icon if available */
    display: inline-block;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 70px; /* Adjust for vertical centering */
    font-size: 3rem;
    font-weight: bold;
}
.success-page-container h1 {
    color: var(--text-headings);
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}
.success-page-container p {
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

/* Privacy & Terms Page Content Area */
/* Use this class on the main content wrapper of privacy.html and terms.html */
.static-page-content {
    padding-top: calc(var(--spacing-unit) * 3); /* Sufficient padding below fixed header */
    padding-bottom: calc(var(--spacing-unit) * 3);
}
.static-page-content h1, .static-page-content h2 {
    margin-bottom: var(--spacing-unit);
}
.static-page-content p, .static-page-content ul, .static-page-content ol {
    margin-bottom: calc(var(--spacing-unit) * 1.25);
}
.static-page-content ul, .static-page-content ol {
    padding-left: calc(var(--spacing-unit) * 1.5);
}

/*------------------------------------------------------------------
4. Components
-------------------------------------------------------------------*/

/* Cards (General - extending Bulma's .card) */
.card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-large); /* More rounded corners */
    box-shadow: var(--box-shadow-light);
    transition: var(--transition-medium);
    display: flex; /* For STROGO rule */
    flex-direction: column; /* For STROGO rule */
    /* align-items: center;  Let content align naturally unless specific need */
    overflow: hidden; /* Ensure content respects border-radius */
    height: 100%; /* For consistent height in columns */
}
.card:hover {
    transform: translateY(-6px) scale(1.01); /* Playful hover */
    box-shadow: var(--box-shadow-medium);
}
.card .card-image { /* Bulma's structure */
    /* align-items: center already applied by .card flex */
    width: 100%; /* Ensure image container takes full width of card */
}
.card .card-image .image-container { /* If you have an extra div for the image */
    display: block; /* Or flex if needed for further centering inside */
    margin: 0 auto; /* Center the container if it's not full width */
    overflow: hidden; /* Important for object-fit and border-radius on image */
    border-top-left-radius: var(--border-radius-large); /* Match card */
    border-top-right-radius: var(--border-radius-large); /* Match card */
}
.card .card-image img,
.card .image-container img { /* Image itself */
    width: 100%;
    height: 100%; /* For Bulma aspect ratio figures */
    object-fit: cover; /* Cover the area, crop if needed */
    display: block; /* Remove extra space below image */
    border-top-left-radius: var(--border-radius-large);
    border-top-right-radius: var(--border-radius-large);
    border-bottom-left-radius: 0; /* Only top for images at the top of card */
    border-bottom-right-radius: 0;
}
/* If image is not the first element, adjust border-radius */
.card .card-content + .card-image img { /* Image after content */
    border-radius: 0;
}
.card .card-content {
    padding: calc(var(--spacing-unit) * 1.25);
    flex-grow: 1; /* Allow content to take up space */
    display: flex;
    flex-direction: column;
}
.card .card-content .title,
.card .card-content .subtitle {
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}
.card .card-content .content {
    font-size: 0.95rem;
    flex-grow: 1; /* Push actions/buttons to bottom if any */
}
.card .card-footer {
    border-top: 1px solid #ededed; /* Bulma default */
    padding: calc(var(--spacing-unit) * 0.75) calc(var(--spacing-unit) * 1.25);
}
.card .card-footer-item:not(:last-child) {
    border-right: 1px solid #ededed; /* Bulma default */
}

/* Progress Indicators */
.progress-indicator-container {
    margin-bottom: calc(var(--spacing-unit)*0.5);
    position: relative; /* For the value span */
}
progress.progress {
    height: 12px; /* Thicker progress bar */
    border-radius: var(--border-radius-small);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none; /* Remove default border */
}
/* Webkit Browsers */
progress.progress::-webkit-progress-bar {
    background-color: #e0e0e0; /* Light grey track */
    border-radius: var(--border-radius-small);
}
progress.progress.is-primary::-webkit-progress-value {
    background-color: var(--primary-color);
    border-radius: var(--border-radius-small);
    transition: width 0.5s ease-in-out;
}
progress.progress.is-success::-webkit-progress-value {
    background-color: #48c774; /* Bulma success */
    border-radius: var(--border-radius-small);
    transition: width 0.5s ease-in-out;
}
progress.progress.is-info::-webkit-progress-value {
    background-color: #3273dc; /* Bulma info */
    border-radius: var(--border-radius-small);
    transition: width 0.5s ease-in-out;
}
/* Mozilla Firefox */
progress.progress::-moz-progress-bar {
    border-radius: var(--border-radius-small);
    transition: width 0.5s ease-in-out;
}
progress.progress.is-primary::-moz-progress-bar {
    background-color: var(--primary-color);
}
progress.progress.is-success::-moz-progress-bar {
    background-color: #48c774;
}
progress.progress.is-info::-moz-progress-bar {
    background-color: #3273dc;
}
.progress-value {
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--text-headings);
    font-size: 1.5rem;
    display: block; /* Or style as needed */
    text-align: center; /* If you want it above/below the bar */
    margin-top: -32px; /* Adjust to position over the bar if desired */
    margin-bottom: 10px;
    position: relative; /* If absolutely positioned */
}

/* Modal Placeholder (if used via JS) */
.modal-placeholder {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.modal-placeholder-content {
    background-color: var(--bg-white);
    padding: calc(var(--spacing-unit)*2);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--box-shadow-medium);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative; /* For close button */
}
.modal-placeholder-close {
    position: absolute;
    top: var(--spacing-unit);
    right: var(--spacing-unit);
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    background: none;
    border: none;
}
.modal-placeholder-close:hover {
    color: var(--text-dark);
}

/* Cookie Consent Popup (HTML provided styles are inline, this is for reference or overriding) */
#cookie-consent-popup {
    /* Styles are mostly inline in HTML for simplicity as requested */
    /* If more complex styling is needed, do it here */
    font-family: var(--font-body); /* Ensure it uses the theme font */
}
#cookie-consent-popup p {
    font-size: 0.9rem;
    margin-bottom: calc(var(--spacing-unit)*0.75);
}
#cookie-consent-popup button {
    background-color: var(--primary-color) !important; /* Override inline if needed */
    font-family: var(--font-headings);
}
#cookie-consent-popup button:hover {
    background-color: var(--primary-color-darker) !important;
}

/*------------------------------------------------------------------
5. Animations & Transitions
-------------------------------------------------------------------*/

/* Initial states for JS-triggered scroll animations */
.animated-element {
    opacity: 0;
    transition: opacity 0.6s var(--transition-medium), transform 0.6s var(--transition-medium);
}
.fade-in {
    opacity: 0;
}
.fade-in.is-visible {
    opacity: 1;
}
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
}
.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
}
.fade-in-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}
.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
}
.fade-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/*------------------------------------------------------------------
6. Responsive Design (Media Queries)
-------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    .section {
        padding: calc(var(--spacing-unit) * 2) var(--spacing-unit);
    }
    .title.is-1 { font-size: 2.25rem; }
    .title.is-2 { font-size: 1.85rem; }
    .hero-body {
        padding: calc(var(--spacing-unit)*2);
    }
    .columns.is-vcentered .column.is-two-thirds { /* Stack image above/below text on mobile */
        order: 2; /* Text first */
    }
    .columns.is-vcentered .column:not(.is-two-thirds) {
        order: 1; /* Image second (or as desired) */
        margin-bottom: var(--spacing-unit);
    }
    #quienes-somos-snippet .columns.is-multiline .column {
        margin-bottom: var(--spacing-unit); /* Space between progress bars */
    }
    .contact-details {
        margin-top: calc(var(--spacing-unit)*2);
    }
    .footer .columns {
        text-align: center; /* Center footer columns on mobile */
    }
    .footer .column {
        margin-bottom: calc(var(--spacing-unit)*1.5);
    }
    .footer .social-links {
        text-align: center;
    }
}
.navbar-burger{
    display: none;
}