.elementor-6777 .elementor-element.elementor-element-3a74a7f{--display:flex;}/* Start custom CSS for html, class: .elementor-element-0692970 *//* CSS Variables - Structural only */
:root {
    --radius-md: 8px;
    --radius-lg: 12px;
    --border-color: rgba(150, 150, 150, 0.2);
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 2. Hero & Main Two-Column Layout */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
    margin-top: 150px; /* Pushes content down so it doesn't merge with fixed logo/header */
}

@media (min-width: 992px) {
    .blog-layout {
        grid-template-columns: 7fr 3fr; /* Approx 70/30 split */
        gap: 4rem;
    }
}

/* Left Column: Hero & Content */
.post-header {
    margin-bottom: 2rem;
}

.post-title {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.post-featured-image-placeholder {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    aspect-ratio: 16/9;
    background-color: rgba(150, 150, 150, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(150, 150, 150, 0.2);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

/* Specific styling for Share Icons as requested */
.share-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #000000;
    border: 1px solid #F68625;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F68625;
    transition: all 0.3s ease;
}

.share-icon:hover {
    background-color: #F68625;
    color: #ffffff;
}

/* Table of Contents */
.toc-card {
    background-color: rgba(150, 150, 150, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}

.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
}

.toc-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list .sub-item {
    padding-left: 1.5rem;
    font-size: 0.95em;
    opacity: 0.8;
}

/* Main Content Typography */
.post-content {
    font-size: 1.125rem;
    line-height: 1.8;
}

.post-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
}

.post-content h3 {
    font-size: 1.5rem;
    font-style: italic;
    margin: 2rem 0 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    margin: 3rem 0;
    padding: 0 2rem;
}

/* Right Column (Sidebar) */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.widget {
    background-color: rgba(150, 150, 150, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

/* Sticky positioning for the sidebar widgets */
@media (min-width: 992px) {
    .sidebar-inner {
        position: sticky;
        top: 2rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.more-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.more-post-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
}

.more-post-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.more-post-thumb {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-md);
    background-color: rgba(150, 150, 150, 0.1);
    object-fit: cover;
}

.more-post-title {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
}

.contact-widget {
    text-align: center;
}

.contact-phone {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 1rem 0 1.5rem;
    display: block;
}

.contact-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    width: 100%;
    border: 1px solid var(--border-color);
    background: transparent;
    text-align: center;
}

/* Bottom Section: Discover More */
.discover-section {
    padding: 4rem 0;
    margin-top: 4rem;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.post-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: rgba(150, 150, 150, 0.05);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: rgba(150, 150, 150, 0.1);
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.read-more {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 1rem;
}

/* =========================================
   ANIMATIONS & HOVER EFFECTS
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.post-header, .post-content, .sidebar .widget, .post-card {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.post-content {
    animation-delay: 0.2s;
}

.sidebar .widget:nth-child(1) {
    animation-delay: 0.3s;
}
.sidebar .widget:nth-child(2) {
    animation-delay: 0.4s;
}

.post-card:nth-child(1) { animation-delay: 0.2s; }
.post-card:nth-child(2) { animation-delay: 0.3s; }
.post-card:nth-child(3) { animation-delay: 0.4s; }

/* Interactive Hover States */
.post-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.more-post-card {
    transition: transform 0.3s ease;
}
.more-post-card:hover {
    transform: translateX(5px);
}

.contact-btn {
    transition: all 0.3s ease;
}
.contact-btn:hover {
    background-color: #F68625; /* Adega Orange */
    color: #ffffff !important;
    border-color: #F68625;
    box-shadow: 0 4px 15px rgba(246, 134, 37, 0.4);
}/* End custom CSS */