.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS */@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary: #185744;
    --primary-light: #21735a;
    --secondary: #3c464d;
    --secondary-light: #596770;
    --background: #ffffff;
    --surface: #f8f9fa;
    --border: #e9ecef;
    --text-main: #2b3237;
    --text-muted: #6c757d;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.2;
}

.tag {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background-color: rgba(24, 87, 68, 0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 6px rgba(24, 87, 68, 0.1);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    color:white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(24, 87, 68, 0.2);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 23px;
    width: auto;
    display: block;
}

/* Desktop */
@media (min-width: 768px) {
    .logo img {
        height: 36px;
    }
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

/* Mobile menu toggle (hamburger) — hidden on desktop */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--secondary);
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    color: var(--primary);
}

.mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
    display: block;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 200;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.mobile-menu-overlay.open {
    transform: translateX(0);
}

.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 199;
}

.mobile-menu-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    align-self: flex-end;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.mobile-menu-close svg {
    width: 28px;
    height: 28px;
    display: block;
}

.mobile-menu-overlay nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-overlay nav a {
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary);
    border-bottom: 1px solid var(--border);
}

.mobile-menu-overlay nav a:hover {
    color: var(--primary);
}

.mobile-menu-overlay nav a.btn-primary {
    margin-top: 1.5rem;
    border-bottom: none;
    color: #fff;
    text-align: center;
    border-radius: 8px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    padding: 6rem 0 4rem;
    text-align: center;
    background: radial-gradient(circle at top, #f8f9fa 0%, #ffffff 100%);
}

.hero h1 {
    font-size: 4rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    letter-spacing: -1.5px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 3rem;
}

/* ==========================================================================
   Featured Card
   ========================================================================== */

.featured-card {
    display: flex;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* ===== MOBILE (padrão) ===== */
.featured-image {
    width: 100%;
    min-height: 220px;
}

.featured-content {
    width: 100%;
    padding: 2rem 1.5rem;
}

.featured-content h2 {
    font-size: 1.5rem;
    line-height: 1.3;
}

.featured-content p {
    font-size: 0.95rem;
    -webkit-line-clamp: 2;
}


/* ===== TABLET ===== */
@media (min-width: 768px) {
    .featured-image {
        min-height: 300px;
        background-size: cover;

    }

    .featured-content {
        padding: 3rem 2.5rem;
    }

    .featured-content h2 {
        font-size: 1.9rem;
    }

    .featured-content p {
        -webkit-line-clamp: 3;
    }
}


/* ===== DESKTOP ===== */
@media (min-width: 1024px) {
    .featured-image {
        width: 50%;
        min-height: 400px;
    }

    .featured-content {
        width: 50%;
        padding: 4rem 3.5rem;
    }

    .featured-content h2 {
        font-size: 2.25rem;
    }

    .featured-content p {
        font-size: 1.05rem;
    }
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    flex-wrap: wrap;
}

/* ==========================================================================
   Filtros
   ========================================================================== */

.filters-section {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 73px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 90;
    justify-content: center;

}

.filters-list {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    justify-content: center;

}

.filters-list::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

/* ==========================================================================
   Articles Grid
   ========================================================================== */

.articles-section {
    padding: 5rem 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 3rem 2rem;
}

.article-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.card-image-wrapper {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-color: var(--surface);
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.article-card:hover .card-image {
    transform: scale(1.05);
}

.article-card .tag {
    margin-bottom: 1rem;
    align-self: flex-start;
}

.article-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.article-card:hover h3 {
    color: var(--primary);
}

.article-card .card-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   States (loading, error, empty)
   ========================================================================== */

.csh-loading {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
    font-size: 1rem;
    grid-column: 1 / -1;
}

.csh-loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin-left: 0.75rem;
    vertical-align: middle;
    animation: csh-spin 0.8s linear infinite;
}

@keyframes csh-spin {
    to { transform: rotate(360deg); }
}

.csh-empty,
.csh-error {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
    font-size: 1rem;
    grid-column: 1 / -1;
}

.csh-error {
    color: #b91c1c;
}

.csh-skeleton {
    display: flex;
    flex-direction: column;
}

.csh-skeleton .card-image-wrapper {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: csh-shimmer 1.4s ease-in-out infinite;
}

.csh-skeleton .skeleton-line {
    height: 14px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: csh-shimmer 1.4s ease-in-out infinite;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.csh-skeleton .skeleton-line.short { width: 30%; }
.csh-skeleton .skeleton-line.medium { width: 70%; }
.csh-skeleton .skeleton-line.long { width: 90%; }

@keyframes csh-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ==========================================================================
   CTA
   ========================================================================== */

.cta-section {
    background: linear-gradient(135deg, var(--secondary), #242c31);
    color: #fff;
    padding: 6rem 0;
    text-align: center;
    border-radius: 24px;
    margin: 4rem 1.5rem 6rem;
}

.cta-section h2 {
    color: #fff;
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.cta-section p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Wrapper de form (Fluent Forms) */
.cta-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

/* Estilização de formulários Fluent Form (CTA) */
.cta-form-wrapper .fluentform input[type="email"],
.cta-form-wrapper .fluentform input[type="text"] {
    background: #fff;
    color: var(--text-main);
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.cta-form-wrapper .fluentform .ff-btn-submit {
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.cta-form-wrapper .fluentform .ff-btn-submit:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background-color: var(--surface);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin-top: 1.25rem;
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 400px;
    line-height: 1.7;
}

.footer-pillars {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.pillar {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(24, 87, 68, 0.1);
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
}

.footer h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--secondary);
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Single Post
   ========================================================================== */

.post-header {
    max-width: 800px;
    margin: 5rem auto 3rem;
    text-align: center;
}

.post-header .tag {
    margin-bottom: 1.5rem;
}

.post-header h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.post-meta-detailed {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    flex-wrap: wrap;
}

.post-meta-detailed .author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--border);
    background-size: cover;
    background-position: center;
}

.post-cover {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 5rem;
    height: 550px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-color: var(--surface);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.post-content {
    max-width: 720px;
    margin: 0 auto 5rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-main);
}

.post-content h2 {
    font-size: 2rem;
    margin: 3.5rem 0 1.5rem;
    letter-spacing: -0.5px;
}

.post-content h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
}

.post-content p {
    margin-bottom: 1.75rem;
}

.post-content ul,
.post-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
    color: var(--text-main);
    font-size: 1.125rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content blockquote {
    font-size: 1.35rem;
    font-style: italic;
    color: var(--secondary);
    border-left: 4px solid var(--primary);
    padding: 1rem 0 1rem 2rem;
    margin: 3rem 0;
    line-height: 1.6;
    background: linear-gradient(to right, rgba(24, 87, 68, 0.03), transparent);
    border-radius: 0 12px 12px 0;
}

.post-content img {
    width: 100%;
    border-radius: 12px;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.post-content a {
    color: var(--primary);
    border-bottom: 1px solid currentColor;
}

.related-articles {
    background-color: var(--surface);
    padding: 6rem 0;
    border-top: 1px solid var(--border);
}

.related-header {
    text-align: center;
    margin-bottom: 4rem;
}

.related-header h2 {
    font-size: 2.25rem;
    letter-spacing: -0.5px;
}

/* ==========================================================================
   Archive
   ========================================================================== */

.archive-header {
    padding: 5rem 0 3rem;
    text-align: center;
    background: radial-gradient(circle at top, var(--surface) 0%, var(--background) 100%);
}

.archive-header .tag {
    margin-bottom: 1.5rem;
}

.archive-header h1 {
    font-size: 3rem;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.archive-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-section {
    padding: 5rem 0 6rem;
    background: radial-gradient(circle at top, var(--surface) 0%, var(--background) 100%);
}

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.contact-header h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.contact-info {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.contact-info > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(24, 87, 68, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
}

.contact-info-text .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info-text a,
.contact-info-text span {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 500;
}

.contact-info-text a:hover {
    color: var(--primary);
}

.contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
}

.contact-form h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.contact-form > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Estilização de formulários Fluent Form (Contact) */
.contact-form .fluentform input[type="text"],
.contact-form .fluentform input[type="email"],
.contact-form .fluentform input[type="tel"],
.contact-form .fluentform textarea,
.contact-form .fluentform select {
    background: var(--surface);
    color: var(--text-main);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    width: 100%;
    transition: var(--transition);
}

.contact-form .fluentform input[type="text"]:focus,
.contact-form .fluentform input[type="email"]:focus,
.contact-form .fluentform input[type="tel"]:focus,
.contact-form .fluentform textarea:focus,
.contact-form .fluentform select:focus {
    border-color: var(--primary);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(24, 87, 68, 0.08);
}

.contact-form .fluentform .ff-btn-submit {
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.contact-form .fluentform .ff-btn-submit:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(24, 87, 68, 0.2);
}

/* ==========================================================================
   Load More button
   ========================================================================== */

.load-more-wrapper {
    text-align: center;
    margin-top: 3rem;
}

/* ==========================================================================
   Responsivo
   ========================================================================== */

@media (max-width: 768px) {
    .hero h1 { font-size: 2.75rem; }
    .featured-card { flex-direction: column; }
    .featured-image { min-height: 230px!important; background-size: cover!important;}
    .featured-content { width: 100%; }
    .featured-image { min-height: 300px; }
    .featured-content { padding: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .post-header h1 { font-size: 2.5rem; }
    .post-cover { height: 350px; }

    /* Hide desktop menu, show mobile toggle */
    .nav-menu { display: none; }
    .mobile-menu-toggle { display: inline-flex; }

    .cta-section { margin: 2rem 1rem 4rem; padding: 4rem 2rem; }
    .cta-section h2 { font-size: 2rem; }
    .archive-header h1 { font-size: 2.25rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

    /* Contact responsive */
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-header h1 { font-size: 2.5rem; }
    .contact-form { padding: 2rem 1.5rem; }
    .contact-info { padding: 2rem 1.5rem; }
}/* End custom CSS */