*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.wp-block-separator {
    display: none;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    color: #1a2332;
    background: #fafefd;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: #0075C9;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #00A651;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

:root {
    
    --primary-green: #00A651;
    --primary-blue: #0075C9;
    --dark-blue: #004B87;
    --light-green: #00C96D;

    
    --white: #FFFFFF;
    --light-bg: #F8FAFB;
    --soft-gray: #F5F7FA;
    --medium-gray: #E5E7EB;
    --border-gray: #D1D5DB;

    
    --text-dark: #1a2332;
    --text-medium: #4A5568;
    --text-light: #718096;
    --text-muted: #A0AEC0;

    
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;

    
    --gradient-primary: linear-gradient(135deg, #00A651 0%, #0075C9 100%);
    --gradient-light: linear-gradient(180deg, #FFFFFF 0%, #F8FAFB 100%);
    --gradient-dark: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    --gradient-overlay: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);

    
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.20);

    
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;

    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #1a2332;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
}

h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
}

h3 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
}

h4 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 600;
}

h5 {
    font-size: 20px;
    font-weight: 600;
}

h6 {
    font-size: 18px;
    font-weight: 600;
}

p {
    font-size: 16px;
    line-height: 1.8;
    color: #4A5568;
    margin-bottom: 1rem;
}

.lead {
    font-size: 20px;
    line-height: 1.8;
    color: #2d3748;
}

.small-text {
    font-size: 14px;
}

.text-muted {
    color: #718096;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-sm {
    padding: 60px 0;
}

.section-lg {
    padding: 120px 0;
}

.submit-btn,
.btn-primary {
    padding: 17px 30px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.submit-btn:hover,
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.submit-btn:active,
.btn-primary:active {
    transform: translateY(-1px);
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

::selection {
    background: var(--primary-green);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-green);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

*:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-consent-content p {
    color: #e5e7eb;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    min-width: 280px;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-accept {
    background: linear-gradient(135deg, #00A651, #0075C9);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 166, 81, 0.3);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.4);
}

.cookie-decline {
    background: transparent;
    color: #9ca3af;
    border: 2px solid #4a5568;
}

.cookie-decline:hover {
    border-color: #9ca3af;
    color: #e5e7eb;
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 16px;
    }

    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-content p {
        min-width: auto;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

.magazine-view-all {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #00A651 0%, #0075C9 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 166, 81, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 166, 81, 0.4);
    color: #fff;
}

.view-all-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .magazine-view-all {
        margin-top: 40px;
    }

    .view-all-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

.moonacrid-article-cta {
    margin: 40px 0;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
}

.moonacrid-article-cta__content {
    max-width: 600px;
    margin: 0 auto;
}

.moonacrid-article-cta__headline {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.moonacrid-article-cta__description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 24px 0;
    opacity: 0.9;
}

.moonacrid-article-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.moonacrid-article-cta--gradient {
    background: linear-gradient(135deg, #00A651 0%, #0075C9 100%);
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 166, 81, 0.25);
}

.moonacrid-article-cta--gradient .moonacrid-article-cta__headline,
.moonacrid-article-cta--gradient .moonacrid-article-cta__description {
    color: #fff;
}

.moonacrid-article-cta--gradient .moonacrid-article-cta__button {
    background: #fff;
    color: #00A651;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.moonacrid-article-cta--gradient .moonacrid-article-cta__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.moonacrid-article-cta--solid-green {
    background: #00A651;
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 166, 81, 0.25);
}

.moonacrid-article-cta--solid-green .moonacrid-article-cta__headline,
.moonacrid-article-cta--solid-green .moonacrid-article-cta__description {
    color: #fff;
}

.moonacrid-article-cta--solid-green .moonacrid-article-cta__button {
    background: #fff;
    color: #00A651;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.moonacrid-article-cta--solid-green .moonacrid-article-cta__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.moonacrid-article-cta--solid-blue {
    background: #0075C9;
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 117, 201, 0.25);
}

.moonacrid-article-cta--solid-blue .moonacrid-article-cta__headline,
.moonacrid-article-cta--solid-blue .moonacrid-article-cta__description {
    color: #fff;
}

.moonacrid-article-cta--solid-blue .moonacrid-article-cta__button {
    background: #fff;
    color: #0075C9;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.moonacrid-article-cta--solid-blue .moonacrid-article-cta__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.moonacrid-article-cta--dark {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    color: #fff;
    box-shadow: 0 8px 32px rgba(26, 35, 50, 0.25);
}

.moonacrid-article-cta--dark .moonacrid-article-cta__headline {
    color: #fff;
}

.moonacrid-article-cta--dark .moonacrid-article-cta__description {
    color: #e5e7eb;
}

.moonacrid-article-cta--dark .moonacrid-article-cta__button {
    background: linear-gradient(135deg, #00A651 0%, #0075C9 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 166, 81, 0.3);
}

.moonacrid-article-cta--dark .moonacrid-article-cta__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 166, 81, 0.4);
}

.moonacrid-article-cta--light {
    background: #fff;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.moonacrid-article-cta--light .moonacrid-article-cta__headline {
    color: #1a2332;
}

.moonacrid-article-cta--light .moonacrid-article-cta__description {
    color: #4a5568;
}

.moonacrid-article-cta--light .moonacrid-article-cta__button {
    background: linear-gradient(135deg, #00A651 0%, #0075C9 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 166, 81, 0.3);
}

.moonacrid-article-cta--light .moonacrid-article-cta__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 166, 81, 0.4);
}

@media (max-width: 768px) {
    .moonacrid-article-cta {
        margin: 30px 0;
        padding: 24px 20px;
    }

    .moonacrid-article-cta__headline {
        font-size: 20px;
    }

    .moonacrid-article-cta__description {
        font-size: 15px;
    }

    .moonacrid-article-cta__button {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
}

.moonacrid-article-cta--image {
    margin: 30px -50px;
    padding: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    text-align: left;
}

.moonacrid-article-cta--image a {
    display: block;
    line-height: 0;
}

.moonacrid-article-cta--image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
}

@media (max-width: 768px) {
    .moonacrid-article-cta--image {
        margin: 20px -24px;
    }
}

.social-share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 40px 0;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.share-label {
    font-weight: 600;
    color: #374151;
    font-size: 15px;
    margin-right: 8px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.share-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.share-facebook {
    background: #1877f2;
}

.share-facebook:hover {
    background: #0d65d9;
}

.share-twitter {
    background: #000;
}

.share-twitter:hover {
    background: #333;
}

.share-whatsapp {
    background: #25d366;
}

.share-whatsapp:hover {
    background: #1da851;
}

.share-linkedin {
    background: #0a66c2;
}

.share-linkedin:hover {
    background: #084d94;
}

@media (max-width: 768px) {
    .social-share-buttons {
        justify-content: center;
        padding: 20px;
    }

    .share-label {
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
        margin-right: 0;
    }
}

.breadcrumbs {
    padding: 0;
    margin: 0;
}

.breadcrumb-list {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 5px;
    backdrop-filter: blur(10px);
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item a,
.breadcrumb-item span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 4px 0;
    line-height: 1;
}

.breadcrumb-item a svg,
.breadcrumb-item span svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.breadcrumb-separator {
    padding: 0 10px;
    font-size: 10px;
    user-select: none;
    opacity: 0.6;
}

.breadcrumbs--light .breadcrumb-list {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.breadcrumbs--light .breadcrumb-item a {
    color: #6b7280;
}

.breadcrumbs--light .breadcrumb-item a:hover {
    color: #00A651;
}

.breadcrumbs--light .breadcrumb-item:last-child span,
.breadcrumbs--light .breadcrumb-item:last-child a {
    color: #1a2332;
    font-weight: 600;
}

.breadcrumbs--light .breadcrumb-separator {
    color: #9ca3af;
}

.breadcrumbs--dark .breadcrumb-list {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.breadcrumbs--dark .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs--dark .breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumbs--dark .breadcrumb-item:last-child span,
.breadcrumbs--dark .breadcrumb-item:last-child a {
    color: #fff;
    font-weight: 600;
}

.breadcrumbs--dark .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs--gradient .breadcrumb-list {
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1) 0%, rgba(0, 117, 201, 0.1) 100%);
    border: 1px solid rgba(0, 166, 81, 0.2);
}

.breadcrumbs--gradient .breadcrumb-item a {
    color: #4a5568;
}

.breadcrumbs--gradient .breadcrumb-item a:hover {
    color: #00A651;
}

.breadcrumbs--gradient .breadcrumb-item:last-child span,
.breadcrumbs--gradient .breadcrumb-item:last-child a {
    color: #00A651;
    font-weight: 600;
}

.breadcrumbs--gradient .breadcrumb-separator {
    color: #00A651;
    opacity: 0.5;
}

.breadcrumb-home-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-home-icon svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    
    .breadcrumbs {
        display: flex;
        justify-content: center;
    }

    .breadcrumb-list {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 0px;
        font-size: 12px;
        padding: 5px 8px;
        border-radius: 5px;
    }

    .breadcrumb-separator {
        padding: 0 6px;
    }
}