    :root {
            --primary-dark: #435770;
            --primary-light: #dbe1e3;
            --white: #ffffff;
            --black: #000000;
            --accent: #957c5b;
            --highlight: #b1a79e;
            --text-dark: #2a2a2a;
            --text-light: #5a5a5a;
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.18);
            --border-radius: 16px;
            --font-primary: 'Inter', sans-serif;
            --font-secondary: 'Manrope', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-primary);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: var(--white);
            position: relative;
            font-weight: 400;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(219, 225, 227, 0.3) 0%, transparent 25%),
                radial-gradient(circle at 90% 78%, rgba(219, 225, 227, 0.25) 0%, transparent 25%);
            z-index: -1;
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 18px 0;
            z-index: 1000;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(67, 87, 112, 0.1);
        }

        .header.scrolled {
            padding: 12px 0;
            box-shadow: var(--shadow-sm);
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        /* Logo Styles */
        .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        z-index: 1001;
        text-decoration: none;
        transition: var(--transition);
        }

        .logo:hover {
        transform: translateY(-2px);
        }

        .logo-img {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
        border-radius: 50%;
        padding: 4px;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        overflow: hidden;
        border: 2px solid var(--primary-light);
        }

        .logo:hover .logo-img {
        transform: rotate(5deg) scale(1.05);
        box-shadow: var(--shadow-lg);
        }

        .logo-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 50%;
        filter: brightness(1.1) contrast(1.1);
        }

        .logo-text {
        display: flex;
        flex-direction: column;
        }

        .logo-name {
        font-family: var(--font-secondary);
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--primary-dark);
        line-height: 1;
        letter-spacing: -0.5px;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .logo-subtext {
        font-size: 0.7rem;
        color: var(--text-light);
        margin-top: 4px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        font-weight: 600;
        }

        .nav ul {
            display: flex;
            list-style: none;
            gap: 42px;
        }

        .nav ul li {
            position: relative;
        }

        .nav ul li a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            transition: var(--transition);
            position: relative;
            padding: 8px 0;
            font-size: 1.05rem;
            letter-spacing: -0.2px;
            font-family: var(--font-secondary);
        }

        .nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary-dark);
            transition: var(--transition);
            border-radius: 2px;
        }

        .nav ul li a:hover::after,
        .nav ul li a.active::after {
            width: 100%;
        }

        .nav ul li a:hover {
            color: var(--primary-dark);
        }

        .header-buttons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.6rem;
            cursor: pointer;
            color: var(--primary-dark);
            z-index: 1001;
            background: none;
            border: none;
            transition: var(--transition);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            justify-content: center;
            align-items: center;
            background: var(--primary-light);
        }

        .mobile-menu-btn:hover {
            color: var(--white);
            background: var(--primary-dark);
            transform: rotate(90deg);
        }

        .btn-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 26px;
            background: var(--primary-dark);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--primary-dark);
            font-size: 0.95rem;
            font-family: var(--font-secondary);
        }

        .btn-whatsapp:hover {
            background: transparent;
            color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .btn-services {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 26px;
            background: transparent;
            color: var(--primary-dark);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--primary-dark);
            font-size: 0.95rem;
            font-family: var(--font-secondary);
        }

        .btn-services:hover {
            background: var(--primary-dark);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        /* Hero Section */
        .hero {
            padding: 140px 0 120px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .hero-content {
            opacity: 0;
            transform: translateY(30px);
        }

        .hero-title {
            font-family: var(--font-secondary);
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 28px;
            line-height: 1.1;
            color: var(--primary-dark);
            letter-spacing: -1.5px;
        }

        .title-highlight {
            position: relative;
            display: inline-block;
            color: var(--primary-dark);
            z-index: 1;
            padding: 0 8px;
        }

        .title-highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 18px;
            background-color: var(--highlight);
            z-index: -1;
            transform: skewX(-15deg);
            border-radius: 4px;
            opacity: 0.9;
            transition: var(--transition);
            animation: highlightPulse 3s infinite;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 42px;
            max-width: 520px;
            font-weight: 400;
            line-height: 1.8;
            font-family: var(--font-primary);
            padding-left: 8px;
            border-left: 4px solid var(--primary-light);
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 20px 40px;
            background: var(--primary-dark);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            text-align: center;
            font-size: 1.1rem;
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
            font-family: var(--font-secondary);
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: var(--transition);
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            background: var(--accent);
            transform: translateY(-5px) scale(1.03);
            box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary-dark);
            border: 2px solid var(--primary-dark);
        }

        .btn-secondary:hover {
            background: var(--primary-dark);
            color: white;
        }

        .hero-stats {
            margin-top: 40px;
            display: flex;
            gap: 50px;
            flex-wrap: wrap;
            border-top: 1px solid rgba(67, 87, 112, 0.1);
            padding-top: 40px;
        }

        .stat-item {
            text-align: left;
            position: relative;
            padding-left: 30px;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            background: var(--primary-dark);
            border-radius: 50%;
            box-shadow: 0 0 0 4px rgba(67, 87, 112, 0.2);
            animation: pulse 2s infinite;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-dark);
            line-height: 1;
            margin-bottom: 8px;
            font-family: var(--font-secondary);
            letter-spacing: -1px;
            text-shadow: 2px 2px 0 rgba(67, 87, 112, 0.1);
        }

        .stat-text {
            font-size: 0.95rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
            font-family: var(--font-primary);
        }

        .hero-image {
            position: relative;
            opacity: 0;
            transform: translateX(50px);
        }

        .image-wrapper {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
            border: 1px solid rgba(67, 87, 112, 0.1);
        }

        .image-wrapper:hover {
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        }

        .image-wrapper::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            border: 2px solid var(--primary-light);
            border-radius: 16px;
            pointer-events: none;
            z-index: 1;
            opacity: 0.8;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
            filter: grayscale(0.05) contrast(1.05);
        }

        .image-wrapper:hover img {
            transform: scale(1.08);
        }

        .crn-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--primary-dark);
            color: white;
            padding: 16px 28px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            box-shadow: var(--shadow-lg);
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 10px;
            border: 2px solid var(--white);
            font-family: var(--font-secondary);
            animation: pulse 2s infinite;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 0;
        }

        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: var(--primary-dark);
            opacity: 0.08;
            animation: float 10s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            top: 20%;
            left: 5%;
            width: 80px;
            height: 80px;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 60%;
            left: 10%;
            width: 120px;
            height: 120px;
            animation-delay: 1s;
        }

        .floating-element:nth-child(3) {
            top: 30%;
            right: 10%;
            width: 100px;
            height: 100px;
            animation-delay: 2s;
            background: var(--accent);
        }

        .floating-element:nth-child(4) {
            bottom: 20%;
            right: 5%;
            width: 110px;
            height: 110px;
            animation-delay: 3s;
        }

        /* Animações */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg) scale(1);
            }
            50% {
                transform: translateY(-30px) rotate(5deg) scale(1.05);
            }
            100% {
                transform: translateY(0) rotate(0deg) scale(1);
            }
        }

        @keyframes highlightPulse {
            0% {
                opacity: 0.7;
                height: 18px;
            }
            50% {
                opacity: 0.9;
                height: 22px;
            }
            100% {
                opacity: 0.7;
                height: 18px;
            }
        }

        /* Responsividade */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3.5rem;
            }
            
            .hero-stats {
                gap: 40px;
            }
            
            .stat-number {
                font-size: 2.8rem;
            }
            
            .hero .container {
                gap: 60px;
            }
        }

        @media (max-width: 992px) {
            .hero .container {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .hero-content {
                text-align: center;
                padding-right: 0;
                order: 2;
            }
            
            .hero-stats {
                justify-content: center;
            }
            
            .stat-item {
                text-align: center;
                padding-left: 0;
            }
            
            .stat-item::before {
                display: none;
            }
            
            .hero-image {
                width: 100%;
                max-width: 560px;
                margin: 0 auto;
                order: 1;
            }
            
            .hero-title {
                font-size: 3.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
                margin: 0 auto 36px;
                border-left: none;
                padding-left: 0;
            }
            
            .hero-buttons {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .nav ul {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 320px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                gap: 0;
                transition: var(--transition);
                z-index: 999;
                padding: 100px 40px 40px;
                box-shadow: var(--shadow-lg);
            }
            
            .nav ul.active {
                left: 0;
            }
            
            .nav ul li {
                margin-left: 0;
                opacity: 0;
                transform: translateX(-30px);
                width: 100%;
                border-bottom: 1px solid rgba(67, 87, 112, 0.1);
            }
            
            .nav ul li:last-child {
                border-bottom: none;
            }
            
            .nav ul li a {
                display: block;
                padding: 18px 0;
                font-size: 1.1rem;
            }
            
            .nav ul.active li {
                opacity: 1;
                transform: translateX(0);
                transition: opacity 0.5s ease, transform 0.5s ease;
            }
            
            .nav ul.active li:nth-child(1) { transition-delay: 0.1s; }
            .nav ul.active li:nth-child(2) { transition-delay: 0.2s; }
            .nav ul.active li:nth-child(3) { transition-delay: 0.3s; }
            .nav ul.active li:nth-child(4) { transition-delay: 0.4s; }
            .nav ul.active li:nth-child(5) { transition-delay: 0.5s; }
            
            .header-buttons {
                display: none;
            }
            
            .mobile-menu-btn {
                display: flex;
            }
            
            .hero {
                padding: 150px 0 80px;
            }
            
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.15rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .stat-item {
                flex: 0 0 calc(50% - 15px);
                margin-bottom: 20px;
            }
            
            .hero-stats {
                gap: 30px 20px;
                padding-top: 30px;
            }
            
            .btn {
                padding: 18px 32px;
                font-size: 1.05rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .crn-badge {
                bottom: -15px;
                right: -15px;
                font-size: 0.9rem;
                padding: 14px 22px;
            }
            
            .container {
                padding: 0 24px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2.5rem;
                line-height: 1.2;
            }
            
            .stat-item {
                flex: 0 0 100%;
            }
            
            .floating-element:nth-child(1),
            .floating-element:nth-child(2),
            .floating-element:nth-child(3),
            .floating-element:nth-child(4) {
                display: none;
            }
            
            .image-wrapper {
                transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 25px;
            }
            
            .hero .container {
                gap: 50px;
            }
        }
        
        /* Responsive adjustments for logo */
        @media (max-width: 768px) {
        .logo-img {
            width: 50px;
            height: 50px;
        }
        
        .logo-name {
            font-size: 1.5rem;
        }
        
        .logo-subtext {
            font-size: 0.6rem;
        }
        }

        @media (max-width: 480px) {
        .logo-img {
            width: 45px;
            height: 45px;
        }
        
        .logo-name {
            font-size: 1.3rem;
        }
        
        .logo-subtext {
            font-size: 0.55rem;
            letter-spacing: 1.2px;
        }
        }

        @media (max-width: 380px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .stat-number {
                font-size: 2.2rem;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
        }

    .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }
        /* Blog Section - Design Premium 1 */
.blog-section-1 {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.blog-section-1::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(67, 87, 112, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.blog-section-1::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(156, 88, 73, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.container-1 {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.blog-header-1 {
    text-align: center;
    margin-bottom: 60px;
}

.section-label-1 {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    background: rgba(67, 87, 112, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.blog-title-1 {
    font-family: var(--font-secondary);
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.title-mark-1 {
    position: relative;
    display: inline-block;
    color: var(--accent);
    font-weight: 800;
    z-index: 1;
}

.title-mark-1::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--highlight);
    z-index: -1;
    transform: skewX(-15deg);
    border-radius: 3px;
    opacity: 0.8;
}

.blog-subtitle-1 {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.8;
}

.blog-grid-1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.blog-card-1 {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.blog-card-1:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.blog-card-1.featured-1 {
    border: 2px solid var(--highlight);
    transform: scale(1.02);
}

.blog-card-1.featured-1::before {
    content: 'Destaque';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--highlight);
    color: var(--primary-dark);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(255, 209, 102, 0.3);
}

.card-media-1 {
    position: relative;
    overflow: hidden;
    height: 480px;
}

.recipe-video-1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    cursor: pointer;
}

.blog-card-1:hover .recipe-video-1 {
    transform: scale(1.05);
}

.video-overlay-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.blog-card-1:hover .video-overlay-1 {
    opacity: 0.8;
}

.play-button-1 {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button-1 i {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-left: 4px;
}

.play-button-1:hover {
    transform: scale(1.1);
    background: var(--white);
}

.recipe-badge-1 {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.card-content-1 {
    padding: 30px;
}

.recipe-title-1 {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark);
    line-height: 1.3;
}

.recipe-excerpt-1 {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.recipe-meta-1 {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-item-1 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.meta-item-1 i {
    color: var(--accent);
}

.recipe-benefits-1 {
    list-style: none;
    margin-bottom: 25px;
}

.recipe-benefits-1 li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.recipe-benefits-1 i {
    color: var(--accent);
    font-size: 1rem;
}

.recipe-cta-1 {
    margin-top: 20px;
}

.recipe-button-1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(67, 87, 112, 0.2);
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
}

.recipe-button-1:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(67, 87, 112, 0.3);
}

.blog-cta-1 {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #526c86 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(67, 87, 112, 0.2);
}

.blog-cta-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

.cta-content-1 {
    position: relative;
    z-index: 2;
}

.cta-content-1 h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content-1 p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-button-1 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: var(--highlight);
    color: var(--primary-dark);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 209, 102, 0.3);
    font-size: 1.05rem;
}

.cta-button-1:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 209, 102, 0.4);
}

/* Modal Styles */
.recipe-modal-1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.recipe-modal-1.active {
    opacity: 1;
    visibility: visible;
}

.modal-content-1 {
    background: var(--white);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.recipe-modal-1.active .modal-content-1 {
    transform: scale(1);
}

.modal-close-1 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-dark);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-header-1 {
    position: relative;
    height: 250px;
}

.modal-image-1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.modal-title-section-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
}

.modal-title-section-1 h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.modal-meta-1 {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
}

.modal-meta-1 span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.modal-body-1 {
    padding: 30px;
}

.modal-body-1 h3 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ingredients-section-1,
.preparation-section-1,
.tips-section-1 {
    margin-bottom: 30px;
}

.ingredients-section-1 ul,
.preparation-section-1 ol {
    padding-left: 20px;
}

.ingredients-section-1 li,
.preparation-section-1 li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.tips-section-1 p {
    background: rgba(67, 87, 112, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent);
    font-style: italic;
}

.modal-footer-1 {
    padding: 0 30px 30px;
    text-align: center;
}

.download-button-1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(67, 87, 112, 0.2);
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.download-button-1:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(67, 87, 112, 0.3);
}

/* Responsividade */
@media (max-width: 1024px) {
    .blog-grid-1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-section-1 {
        padding: 80px 0;
    }
    
    .blog-title-1 {
        font-size: 2.5rem;
    }
    
    .blog-subtitle-1 {
        font-size: 1.1rem;
    }
    
    .blog-grid-1 {
        grid-template-columns: 1fr;
    }
    
    .blog-card-1.featured-1 {
        transform: none;
    }
    
    .cta-content-1 h3 {
        font-size: 1.7rem;
    }
    
    .blog-cta-1 {
        padding: 40px 30px;
    }
    
    .modal-content-1 {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header-1 {
        height: 200px;
    }
    
    .modal-title-section-1 h2 {
        font-size: 1.6rem;
    }
    
    .modal-meta-1 {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .blog-title-1 {
        font-size: 2rem;
    }
    
    .card-content-1 {
        padding: 25px 20px;
    }
    
    .recipe-title-1 {
        font-size: 1.4rem;
    }
    
    .recipe-meta-1 {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-button-1 {
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    .blog-cta-1 {
        padding: 30px 20px;
    }
    
    .cta-content-1 h3 {
        font-size: 1.5rem;
    }
    
    .modal-body-1 {
        padding: 20px;
    }
    
    .modal-footer-1 {
        padding: 0 20px 20px;
    }
    
    .download-button-1 {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

        :root {
            --primary-dark: #435770;
            --primary-light: #dbe1e3;
            --white: #ffffff;
            --black: #000000;
            --accent: #957c5b;
            --highlight: #b1a79e;
            --text-dark: #2a2a2a;
            --text-light: #5a5a5a;
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.18);
            --border-radius: 16px;
            --font-primary: 'Inter', sans-serif;
            --font-secondary: 'Manrope', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-primary);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: var(--white);
            position: relative;
            font-weight: 400;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(219, 225, 227, 0.3) 0%, transparent 25%),
                radial-gradient(circle at 90% 78%, rgba(219, 225, 227, 0.25) 0%, transparent 25%);
            z-index: -1;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* Article Section */
        .article-section {
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .article-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .article-badge {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary-dark);
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 20px;
            box-shadow: var(--shadow-sm);
        }

        .article-title {
            font-family: var(--font-secondary);
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 25px;
            line-height: 1.2;
            position: relative;
            display: inline-block;
        }

        .article-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--accent), var(--primary-dark));
            border-radius: 2px;
        }

        .article-meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .meta-item i {
            color: var(--accent);
            font-size: 1.1rem;
        }

        .article-content {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 60px;
            position: relative;
        }

        .article-body {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 50px;
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
        }

        .article-body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-dark), var(--accent));
        }

        .article-image {
            width: 100%;
            height: 400px;
            border-radius: var(--border-radius);
            overflow: hidden;
            margin-bottom: 40px;
            position: relative;
        }

        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .article-image:hover img {
            transform: scale(1.05);
        }

        .article-text {
            font-size: 1.1rem;
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .article-text p {
            margin-bottom: 25px;
        }

        .article-highlight {
            background: linear-gradient(135deg, rgba(67, 87, 112, 0.05) 0%, rgba(149, 124, 91, 0.05) 100%);
            padding: 35px;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--accent);
            margin: 40px 0;
            position: relative;
        }

        .article-highlight i {
            position: absolute;
            top: -20px;
            left: -20px;
            background: var(--accent);
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: var(--shadow-md);
        }

        .article-highlight p {
            font-family: var(--font-secondary);
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-dark);
            line-height: 1.6;
            margin: 0;
        }

        .article-list {
            margin: 30px 0;
            padding-left: 25px;
        }

        .article-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 15px;
        }

        .article-list li::before {
            content: '';
            position: absolute;
            left: -20px;
            top: 12px;
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
        }

        .article-sidebar {
            position: relative;
        }

        .author-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow-md);
            text-align: center;
            margin-bottom: 30px;
            position: sticky;
            top: 100px;
        }

        .author-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 4px solid var(--primary-light);
            box-shadow: var(--shadow-sm);
        }

        .author-image img {
            width: 100%;
            height: 30vh;
            object-fit: cover;
        }

        .author-name {
            font-family: var(--font-secondary);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }

        .author-title {
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .author-description {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .author-cta {
            display: inline-block;
            background: var(--primary-dark);
            color: var(--white);
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .author-cta:hover {
            background: var(--accent);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .article-share {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--shadow-md);
            position: sticky;
            top: 400px;
        }

        .share-title {
            font-family: var(--font-secondary);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 20px;
            text-align: center;
        }

        .share-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .share-button {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px 20px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            color: var(--white);
        }

        .share-button i {
            font-size: 1.2rem;
        }

        .share-button.facebook {
            background: #3b5998;
        }

        .share-button.twitter {
            background: #1da1f2;
        }

        .share-button.whatsapp {
            background: #25d366;
        }

        .share-button.linkedin {
            background: #0077b5;
        }

        .share-button:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow-sm);
        }

        .article-footer {
            margin-top: 60px;
            text-align: center;
        }

        .article-tags {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .article-tag {
            background: var(--primary-light);
            color: var(--primary-dark);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: var(--transition);
            text-decoration: none;
        }

        .article-tag:hover {
            background: var(--primary-dark);
            color: var(--white);
            transform: translateY(-3px);
        }

        .article-cta {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #2c3a4e 100%);
            border-radius: var(--border-radius);
            padding: 50px;
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .article-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,50 L100,0 L100,100 L0,100 Z" fill="rgba(255, 255, 255, 0.03)"/></svg>');
            background-size: cover;
            z-index: 1;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-family: var(--font-secondary);
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-text {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--accent);
            color: var(--white);
            padding: 18px 35px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .article-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .article-sidebar {
                order: -1;
            }
            
            .author-card,
            .article-share {
                position: relative;
                top: 0;
            }
            
            .article-title {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .article-section {
                margin-top:-110px;
                padding: 0px 0;
            }
            
            .article-title {
                font-size: 2.2rem;
            }
            
            .article-body {
        
                padding: 30px;
            }
            
            .article-image {
                height: 300px;
            }
            
            .article-meta {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
                 .author-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 4px solid var(--primary-light);
            box-shadow: var(--shadow-sm);
        }

        .author-image img {
            width: 100%;
            height: 19vh;
            object-fit: cover;
        }

        }
        
        @media (max-width: 576px) {
            .container {
                padding: 0 20px;
            }
            
            .article-title {
                font-size: 1.8rem;
            }
            
            .article-body {
                padding: 25px 20px;
            }
            
            .article-highlight {
                padding: 25px 20px;
            }
            
            .article-highlight i {
                top: -15px;
                left: -15px;
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .article-highlight p {
                font-size: 1.1rem;
            }
            
            .cta-title {
                font-size: 1.6rem;
            }
            
            .cta-button {
                padding: 15px 25px;
                font-size: 1rem;
            }
        }
            @media (max-width: 450px) {

                        .author-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 4px solid var(--primary-light);
            box-shadow: var(--shadow-sm);
        }

        .author-image img {
            width: 100%;
            height: 23vh;
            object-fit: cover;
        }
            }
            
        
 /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #2c3a4e 100%);
            color: var(--white);
            padding: 60px 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.03)"/></svg>');
            background-size: cover;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            position: relative;
            z-index: 2;
        }
        
        .footer-logo {
            margin-bottom: 20px;
        }
        
        .footer-logo img {
            max-width: 50px;
            height: auto;
            filter: brightness(0) invert(1);
        }
        
        .footer-about {
            margin-bottom: 25px;
        }
        
        .footer-about p {
            font-size: 1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
        }
        
        .footer-contact-info {
            margin-bottom: 25px;
        }
        
        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .footer-contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1rem;
            flex-shrink: 0;
            transition: var(--transition);
        }
        
        .footer-contact-item:hover .footer-contact-icon {
            background: var(--accent);
            transform: scale(1.05);
        }
        
        .footer-contact-text h4 {
            font-family: var(--font-secondary);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .footer-contact-text p,
        .footer-contact-text a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        
        .footer-contact-text a:hover {
            color: var(--accent);
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .footer-social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.2rem;
        }
        
        .footer-social-link:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }
        
        .footer-heading {
            font-family: var(--font-secondary);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }
        
        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 1rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-links a i {
            font-size: 0.8rem;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--accent);
            transform: translateX(5px);
        }
        
        .footer-links a:hover i {
            transform: translateX(3px);
        }
        
        .footer-newsletter {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: var(--border-radius);
            margin-bottom: 30px;
        }
        
        .footer-newsletter p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .newsletter-input {
            padding: 15px 20px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-family: var(--font-primary);
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .newsletter-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--accent);
        }
        
        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .newsletter-button {
            text-decoration: none;
            padding: 15px 25px;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .newsletter-button:hover {
            background: var(--primary-light);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }
        
        .footer-map {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            height: 250px;
            margin-bottom: 30px;
        }
        
        .footer-map iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
            filter: grayscale(20%) contrast(110%);
        }
        
        .footer-business-hours {
            margin-bottom: 30px;
        }
        
        .hours-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .hours-day {
            color: var(--white);
            font-weight: 500;
        }
        
        .hours-time {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            margin-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        .developer-credit {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        .developer-credit a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .developer-credit a:hover {
            color: var(--white);
            text-decoration: underline;
        }
        
        .footer-payments {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .payment-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin-right: 10px;
        }
        
        .payment-methods {
            display: flex;
            gap: 10px;
        }
        
        .payment-icon {
            width: 40px;
            height: 25px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
        }
        
        /* Responsividade */
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
            
            .footer-newsletter {
                grid-column: span 2;
                order: 3;
            }
        }
        
        @media (max-width: 768px) {
            .footer {
                padding: 40px 0 20px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-newsletter {
                grid-column: span 1;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-payments {
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .footer-heading {
                font-size: 1.2rem;
                
            }
            
            .footer-newsletter {
                padding: 20px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .footer-map {
                height: 200px;
            }
        }
        @media (max-width: 992px) {
    .article-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Esta regra garante que a sidebar apareça DEPOIS do conteúdo principal */
    .article-sidebar {
        order: 1; /* Muda a ordem para aparecer depois */
    }
    
    .article-body {
        order: 0; /* Mantém o conteúdo principal primeiro */
    }
    
    .author-card,
    .article-share {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .article-section {
        padding: 80px 0;
    }
    
    .article-title {
        font-size: 2.2rem;
    }
    
    .article-body {
        padding: 30px;
    }
    
    .article-image {
        height: 300px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

/* Ajustes adicionais para a imagem do autor em mobile */
@media (max-width: 450px) {
    .author-image img {
        height: 23vh;
        object-fit: cover;
    }
}