/* Estilos Globais */
:root {
    --primary-color: #1a3a5f;
    --secondary-color: #2c5282;
    --dark-color: #121212;
    --gray-color: #333333;
    --light-color: #ffffff;
    --accent-color: #25D366; /* Cor do WhatsApp */
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 5px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--gray-color);
    background-color: #f9f9f9;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--primary-color);
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--secondary-color); /* Blue border */
    color: var(--secondary-color); /* Blue text */
}

.btn-secondary:hover {
    background-color: var(--secondary-color); /* Blue background */
    color: var(--light-color); /* White text */
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* Specific styles for Google Button */
.google-btn {
    /* Inherit secondary style */
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.google-btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.google-btn i.fa-google {
    margin-right: 8px;
    font-size: 1.1rem; /* Slightly larger icon */
    color: inherit; /* Inherit color from button text */
}

/* Ensure no WhatsApp icon on Google button */
.google-btn i.fa-whatsapp {
    display: none !important; /* Hide WhatsApp icon specifically */
}
.google-btn:before {
    content: none !important; /* Remove any potential inherited pseudo-elements */
}

.btn-primary i, .btn-secondary i, .btn-whatsapp i, .btn-whatsapp-large i, .btn-whatsapp-footer i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.btn-primary:hover, .btn-secondary:hover, .btn-whatsapp:hover, .btn-whatsapp-large:hover, .btn-whatsapp-footer:hover {
    background-color: #128C7E;
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-whatsapp-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 20px;
}

.btn-whatsapp-footer {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-whatsapp-footer:hover {
    background-color: var(--accent-color);
    color: var(--light-color);
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-color);
    color: var(--light-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: var(--light-color);
}

/* Header */
header {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

.logo p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--secondary-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--gray-color);
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 80vh;
    background-image: url('hero_background_com_motorista.jpg');
    background-size: cover;
    background-position: center top; /* Ajustado para não cortar a cabeça */
    position: relative;
    display: flex;
    align-items: center;
    color: var(--light-color);
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 58, 95, 0.75), rgba(18, 18, 18, 0.65)); /* Contraste ajustado para destacar elementos */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-content {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    color: #E0E0E0; /* Cor de contraste suave */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--light-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .slogan {
    font-size: 2.2rem;
    font-style: italic;
    margin-bottom: 35px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.4);
    display: inline-block;
    border-radius: 5px;
}

/* Serviços */
.services {
    background-color: var(--light-color);
}

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

.service-card {
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card .icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.humor-text {
    font-style: italic;
    color: #666;
    font-size: 0.9em;
}

.service-card.highlight {
    border: 2px solid var(--secondary-color);
    position: relative;
}

.service-card.highlight::before {
    content: 'Exclusivo';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cta-container {
    text-align: center;
    margin-top: 30px;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Diferenciais */
.features {
    background-color: #f5f5f5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-card .icon {
    width: 70px;
    height: 70px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.slogan-banner {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 50px;
    font-size: 1.3rem;
    font-style: italic;
}

/* Contador */
.counter {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 60px 0;
}

.counter .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.counter-item .number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.counter-item p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Depoimentos */
.testimonials {
    background-color: var(--light-color);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial {
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin: 0 auto;
    max-width: 600px;
}

.testimonial .quote {
    position: relative;
    padding: 20px 0;
}

.testimonial .quote i.fa-quote-left {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--secondary-color);
    opacity: 0.3;
    font-size: 1.5rem;
}

.testimonial .quote i.fa-quote-right {
    position: absolute;
    bottom: 0;
    right: 0;
    color: var(--secondary-color);
    opacity: 0.3;
    font-size: 1.5rem;
}

.testimonial .quote p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 20px;
}

.testimonial .author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial .author .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 15px;
}

.testimonial .author .info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial .author .info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #777;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

.google-reviews {
    text-align: center;
    margin-top: 30px;
}

.google-reviews .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #4285F4;
    border: 2px solid #4285F4;
    padding: 12px 25px;
    font-weight: 600;
    transition: var(--transition);
}

.google-reviews .btn-secondary i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.google-reviews .btn-secondary:hover {
    background-color: #4285F4;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* Áreas de Atuação */
.areas {
    background-color: #f5f5f5;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.area-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.area-card .icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.area-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Contato */
.contact {
    background-color: var(--light-color);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
}

.contact-info h3 {
    color: var(--light-color);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--light-color);
}

.info-item p {
    margin-bottom: 0;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

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

.footer-logo h2 {
    color: var(--light-color);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.footer-logo p {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--light-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--light-color);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #aaa;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    color: #aaa;
    font-size: 0.9rem;
}

.slogan-footer {
    font-style: italic;
    color: #888;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-wrap: wrap;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--light-color);
        z-index: 1000;
        transition: var(--transition);
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 20px;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .counter-item .number {
        font-size: 2.5rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 60vh;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .hero-content .slogan {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .services-grid,
    .features-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .counter .container {
        grid-template-columns: 1fr 1fr;
    }
    
    .counter-item .number {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo,
    .footer-links,
    .footer-contact {
        margin-bottom: 30px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}


/* Ajustes para Imagens dos Serviços */
.service-card .service-image {
    height: 200px; /* Altura fixa para padronizar */
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
}

.service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem cubra a área sem distorcer */
    display: block;
}




/* Ajuste para slogan abaixo do botão de contato */
.hero-content .slogan {
    white-space: nowrap; /* Impede a quebra de linha */
    font-size: 1.5rem; /* Ajustado para caber em uma linha */
    font-weight: 700; /* Deixar em negrito */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.5);
    display: block; /* Alterado para block para centralizar */
    border-radius: 5px;
    margin: 20px auto 35px; /* Espaçamento acima e centralizado */
    text-align: center; /* Garantir texto centralizado */
    max-width: 100%; /* Usar largura total para centralização perfeita */
    color: #FFD700; /* Amarelo Semáforo */
    position: relative; /* Adicionar posicionamento relativo */
    left: 0; /* Garantir que não haja deslocamento */
    right: 0; /* Garantir que não haja deslocamento */
}

/* Ajuste cor botão WhatsApp Hero */
.hero .btn-primary {
    background-color: var(--accent-color); /* Verde WhatsApp */
    color: var(--light-color);
    /* Manter outros estilos como padding, border-radius, etc. */
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.hero .btn-primary:hover {
    background-color: #128C7E; /* Verde mais escuro no hover */
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.hero .btn-primary i {
    color: var(--light-color); /* Garantir que o ícone fique branco */
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Ajuste para botão WhatsApp grande na seção de contato */
.btn-whatsapp-large {
    background-color: var(--accent-color); /* Verde WhatsApp */
    color: var(--light-color);
    padding: 15px 30px;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-whatsapp-large:hover {
    background-color: #128C7E; /* Verde mais escuro no hover */
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-whatsapp-large i {
    color: var(--light-color); /* Garantir que o ícone fique branco */
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Ajuste responsivo para o slogan */
@media (max-width: 768px) {
    .hero-content .slogan {
        font-size: 1.3rem; /* Reduzir fonte em telas menores */
        white-space: normal; /* Permitir quebra em telas muito pequenas se necessário */
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .hero-content .slogan {
        font-size: 1.1rem; /* Reduzir ainda mais */
        padding: 6px 10px;
    }
}

/* Estilos para a seção de Blog */
.blog {
    padding: 80px 0;
    background-color: var(--light-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 40px;
}

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

.blog-post {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.blog-date {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
    font-style: italic;
}

.blog-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-color);
}

.blog-read-more {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    transition: var(--transition);
}

.blog-read-more:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsividade para o Blog */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Melhorias de SEO e Acessibilidade */
.blog-post h3 {
    font-weight: 700;
}

.blog-content p {
    font-size: 1rem;
}

/* Preparação para migração de domínio */
.domain-independent {
    position: relative;
}
