/* Reset e estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    margin-top: 50px;
    overflow-x: hidden;
    padding-top: 0px;
    background-color: #ffffff;
}

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

/* Estilos da Seção Press Release */
.press-release-section {
    padding: 80px 0 60px;
    background-color: #ffffff;
    text-align: center;
    min-height: 100vh;
}

.press-release-section .section-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.press-release-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #e74c3c;
}

.press-release-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.press-release-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: fit-content;
}

.press-release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.press-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.press-release-card:hover .press-image img {
    transform: scale(1.05);
}

.press-content {
    padding: 30px;
    text-align: left;
}

.press-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.press-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.press-content p:last-child {
    margin-bottom: 0;
}

/* Responsividade para Press Release */
@media (max-width: 1200px) {
    .press-release-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .press-release-section {
        padding: 60px 0 40px;
    }
    
    .press-release-section .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .press-release-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .press-content {
        padding: 25px;
    }
    
    .press-content h3 {
        font-size: 1.3rem;
    }
    
    .press-image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .press-release-section {
        padding: 50px 0 30px;
    }
    
    .press-release-section .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .container {
        width: 95%;
        padding: 1rem 0;
    }
    
    .press-content {
        padding: 20px;
    }
    
    .press-content h3 {
        font-size: 1.2rem;
    }
    
    .press-image {
        height: 200px;
    }
    
    .press-release-grid {
        gap: 25px;
    }
}

/* Estilos para o cabeçalho e rodapé */
header {
    position: relative;
    z-index: 1000;
}

footer {
    margin-top: auto;
}

/* Garantir que as imagens carreguem corretamente */
.press-image img {
    display: block;
    max-width: 100%;
}

/* Melhorar a legibilidade */
.press-content {
    line-height: 1.7;
}

.press-content h3 {
    font-weight: 600;
    color: #2c3e50;
}

/* Efeito de loading para imagens */
.press-image {
    background: #f8f9fa;
    position: relative;
}

.press-image img {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Botão Ler mais */
.press-read-more {
    margin-top: 20px;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.read-more-btn {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid #e74c3c;
}

.read-more-btn:hover {
    background: transparent;
    color: #e74c3c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Responsividade do botão */
@media (max-width: 768px) {
    .press-read-more {
        margin-top: 15px;
        padding-top: 12px;
    }
    
    .read-more-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}