/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #242222;
    color: #f3f3f3;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.highlight {
    color: #f0be42;
    position: relative;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.btn--primary {
    background: linear-gradient(135deg, #a02e59, #62263a);
    color: #f3f3f3;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(160, 46, 89, 0.3);
}

.btn--hero {
    background: linear-gradient(135deg, #f0be42, #d4a536);
    color: #242222;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.btn--hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(240, 190, 66, 0.4);
}

.btn--plan {
    background: transparent;
    border: 2px solid #f0be42;
    color: #f0be42;
    width: 100%;
    justify-content: center;
}

.btn--plan:hover {
    background: #f0be42;
    color: #242222;
}

.btn--popular {
    background: linear-gradient(135deg, #f0be42, #d4a536);
    color: #242222;
    border: none;
}

.btn--cta {
    background: linear-gradient(135deg, #a02e59, #62263a);
    color: #f3f3f3;
    font-size: 1.2rem;
    padding: 1.3rem 3rem;
}

.btn--cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(160, 46, 89, 0.4);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(36, 34, 34, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav__logo .logo {
    height: 50px;
    width: auto;
}

.nav__logo h2 {
    color: #f0be42;
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    color: #f3f3f3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.nav__link:hover {
    color: #f0be42;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    color: #f3f3f3;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(36, 34, 34, 0.7), rgba(36, 34, 34, 0.7)),
                url('images/hero_background_new.jpg') center/cover;
    display: flex;
    align-items: center;
    position: relative;
}

.hero__container {
    position: relative;
    z-index: 2;
}

.hero__content {
    max-width: 700px;
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #f3f3f3;
    font-family: 'Poppins', sans-serif;
}

.hero__description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #cccccc;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #f0be42;
    font-family: 'Poppins', sans-serif;
}

.section__subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

/* Desafio Section */
.desafio {
    background: #1e1e1e;
}

.problems__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.problem__card {
    background: #2f2d2d;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #444;
}

.problem__card:hover {
    transform: translateY(-5px);
}

.problem__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a02e59, #62263a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #f3f3f3;
}

.problem__title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #f0be42;
    font-family: 'Poppins', sans-serif;
}

.problem__text {
    color: #cccccc;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* Solução Section */
.solucao__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solucao__badge {
    background: linear-gradient(135deg, #f0be42, #d4a536);
    color: #242222;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.solucao__description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.credential__tag {
    background: #d1e090;
    color: #242222;
    padding: 0.7rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.sommelier__photo {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Serviços Section */
.servicos {
    background: #1e1e1e;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service__card {
    background: #2f2d2d;
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #444;
    transition: transform 0.3s ease;
}

.service__card:hover {
    transform: translateY(-5px);
}

.service__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f0be42, #d4a536);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #242222;
}

.service__title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #f0be42;
    font-family: 'Poppins', sans-serif;
}

.service__description {
    color: #cccccc;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* Planos Section */
.plans__grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.plan__card {
    background: #2f2d2d;
    border: 1px solid #444;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease;
    flex: 1;
    max-width: 350px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.plan__card:hover {
    transform: translateY(-5px);
}

.plan__card--popular {
    border: 2px solid #f0be42;
    position: relative;
    transform: scale(1.05);
    max-width: 380px;
}

.plan__badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #f0be42, #d4a537);
    color: #1e1e1e;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    transform: rotate(5deg);
}

.plan__card--maestro .plan__badge {
    background: linear-gradient(135deg, #a02e59, #62263a);
    color: #f3f3f3;
}

.plan__header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan__title {
    font-size: 1.8rem;
    color: #f0be42;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.plan__description {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.plan__price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan__price-value {
    font-size: 3rem;
    font-weight: 700;
    color: #f3f3f3;
    font-family: 'Poppins', sans-serif;
}

.plan__price-period {
    font-size: 1.2rem;
    color: #cccccc;
}

.plan__contract {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #999;
}

.plan__annual {
    color: #f0be42;
    font-weight: 600;
}

.plan__features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.plan__feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.plan__feature i {
    color: #4CAF50;
    margin-top: 0.2rem;
    font-size: 0.9rem;
}

.plan__cta {
    margin-top: auto;
}

.plan__card .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-weight: 600;
    border-radius: 12px;
}

.plan__card--essenziale .btn {
    background: linear-gradient(135deg, #a02e59, #62263a);
    color: #f3f3f3;
}

.plan__card--popular .btn {
    background: linear-gradient(135deg, #f0be42, #d4a537);
    color: #1e1e1e;
}

.plan__card--maestro .btn {
    background: linear-gradient(135deg, #a02e59, #62263a);
    color: #f3f3f3;
}

.plan__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f0be42, #d4a536);
    color: #242222;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

.plan__name {
    font-size: 1.8rem;
    color: #f0be42;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.plan__description {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.plan__price {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
}

.price__currency {
    font-size: 1.2rem;
    color: #f0be42;
    font-family: 'Poppins', sans-serif;
}

.price__amount {
    font-size: 3rem;
    font-weight: 700;
    color: #f0be42;
    font-family: 'Poppins', sans-serif;
}

.price__period {
    font-size: 1.2rem;
    color: #cccccc;
    font-family: 'Poppins', sans-serif;
}

.plan__contract {
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

.plan__discount {
    color: #d1e090;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.plan__exclusive {
    background: linear-gradient(135deg, #a02e59, #62263a);
    color: #f3f3f3;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.plan__features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #cccccc;
    font-family: 'Poppins', sans-serif;
}

.feature i {
    color: #d1e090;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.plans__notice {
    background: #1e1e1e;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #f0be42;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.plans__notice i {
    color: #f0be42;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.plans__notice p {
    color: #cccccc;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, #62263a, #a02e59);
    text-align: center;
}

.cta__title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #f3f3f3;
    font-family: 'Poppins', sans-serif;
}

.cta__description {
    font-size: 1.2rem;
    color: #f3f3f3;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
}

/* Footer */
.footer {
    background: #1e1e1e;
    padding: 4rem 0 2rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.footer__title {
    color: #f0be42;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.footer__subtitle {
    color: #f0be42;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
}

.footer__description {
    color: #cccccc;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.contact__item i {
    color: #f0be42;
    width: 20px;
}

.contact__item a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.contact__item a:hover {
    color: #f0be42;
}

.social__links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social__link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.social__link:hover {
    color: #f0be42;
}

.social__link i {
    width: 20px;
    font-size: 1.2rem;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #cccccc;
    font-family: 'Poppins', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(36, 34, 34, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .nav__link {
        font-size: 1.2rem;
    }
    
    .nav__close {
        position: absolute;
        top: 2rem;
        right: 2rem;
    }
    
    .nav__toggle,
    .nav__close {
        display: block;
    }
    
    .nav__actions .btn {
        display: none;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__description {
        font-size: 1.1rem;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .section__subtitle {
        font-size: 1.1rem;
    }
    
    .solucao__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .credentials {
        grid-template-columns: 1fr;
    }
    
    .problems__grid,
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .problems__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plans__grid {
        grid-template-columns: 1fr;
    }
    
    .plan__card--popular {
        transform: none;
    }
    
    .cta__title {
        font-size: 2rem;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social__links {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn--hero {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .problems__grid {
        grid-template-columns: 1fr;
    }
    
    .problem__card,
    .service__card,
    .plan__card {
        padding: 1.5rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}



/* Ajustes para /* Selos dos planos */
.plan__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.plan__badge--economico {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-color: #20c997;
}

.plan__badge--popular {
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    color: #1a1a1a;
    border-color: #F4D03F;
}

.plan__badge--exclusive {
    background: linear-gradient(135deg, #8B1538, #A91B60);
    color: white;
    border-color: #A91B60;
}

.plan__badge i {
    font-size: 14px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Destaque para o plano Avanzato */
.plan__card--avanzato {
    transform: scale(1.05);
    border: 3px solid #D4AF37;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.plan__card--avanzato:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Ajustes no CTA dos planos */
.plan__cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.plan-details-btn {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    border: 2px solid #D4AF37;
}

.plan-details-btn:hover {
    background: #D4AF37;
    color: #1a1a1a;
}

/* Modais dos Planos */
.plan-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 2px solid #D4AF37;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #D4AF37;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close:hover {
    color: #F4D03F;
}

.modal-header {
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    color: #1a1a1a;
    padding: 30px;
    border-radius: 18px 18px 0 0;
    text-align: center;
    position: relative;
}

.modal-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 26, 26, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    margin-top: 15px;
    font-weight: 600;
}

.modal-badge--popular {
    background: rgba(26, 26, 26, 0.2);
}

.modal-badge--exclusive {
    background: rgba(139, 21, 56, 0.3);
    color: white;
}

.modal-body {
    padding: 40px;
}

.modal-price {
    text-align: center;
    margin-bottom: 40px;
}

.price-value {
    font-size: 48px;
    font-weight: 700;
    color: #D4AF37;
}

.price-period {
    font-size: 18px;
    color: #cccccc;
}

.price-contract {
    color: #999999;
    margin-top: 10px;
    font-size: 14px;
}

.modal-description {
    margin-bottom: 40px;
}

.modal-description h3 {
    color: #D4AF37;
    font-size: 24px;
    margin-bottom: 15px;
}

.modal-description p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 16px;
}

.modal-features h3 {
    color: #D4AF37;
    font-size: 24px;
    margin-bottom: 25px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-item i {
    color: #D4AF37;
    font-size: 24px;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-item h4 {
    color: #D4AF37;
    font-size: 18px;
    margin: 0 0 8px 0;
}

.feature-item p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.modal-results {
    margin-bottom: 40px;
}

.modal-results h3 {
    color: #D4AF37;
    font-size: 24px;
    margin-bottom: 20px;
}

.modal-results ul {
    list-style: none;
    padding: 0;
}

.modal-results li {
    color: #cccccc;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 30px;
}

.modal-results li:before {
    content: "✓";
    color: #D4AF37;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.modal-cta .btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
}

/* Responsividade para modais */
@media (max-width: 768px) {
    .plan__card--avanzato {
        transform: none;
    }
    
    .plan__card--avanzato:hover {
        transform: translateY(-10px);
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}


/* Blog Section */
.blog {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 80px 0;
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog__card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.blog__card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.blog__image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog__card:hover .blog__image img {
    transform: scale(1.05);
}

.blog__content {
    padding: 30px;
}

.blog__meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.blog__date {
    color: #999999;
    font-size: 14px;
}

.blog__category {
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    color: #1a1a1a;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.blog__title {
    font-size: 20px;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog__excerpt {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.blog__link {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog__link:hover {
    color: #F4D03F;
    transform: translateX(5px);
}

.blog__link i {
    font-size: 12px;
}

.blog__cta {
    text-align: center;
    margin-top: 50px;
}

/* Responsividade para blog */
@media (max-width: 768px) {
    .blog__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog__content {
        padding: 20px;
    }
}

