/* Estilos específicos da página Imprensa */

/* Introdução da Imprensa */
.press-intro {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.05), rgba(0, 172, 193, 0.05));
    padding: 4rem 0;
    margin-top: -2rem;
}

.intro-content {
    text-align: center;
}

.intro-content h2 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.intro-content > p {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Grid de Estatísticas */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

/* Releases */
.press-releases {
    padding: 4rem 0;
}

.press-releases h2 {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.release-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

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

.release-card.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(0, 172, 193, 0.05), rgba(0, 119, 182, 0.05));
}

.release-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.release-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.release-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.release-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.release-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.highlight-tag {
    background: rgba(0, 119, 182, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.release-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.release-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Cobertura na Mídia */
.press-coverage {
    background: #f8f9fa;
    padding: 4rem 0;
}

.press-coverage h2 {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.coverage-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.coverage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.coverage-item h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.coverage-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Kit de Imprensa */
.press-kit {
    padding: 4rem 0;
}

.press-kit h2 {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.kit-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.kit-description p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.kit-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.kit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.kit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.kit-item h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.kit-item p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.kit-download {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.kit-download:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* Contato para Imprensa */
.press-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 0;
    color: white;
}

.contact-box {
    text-align: center;
}

.contact-box h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.contact-box > p {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    opacity: 0.95;
}

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

.contact-info-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info-item h3 {
    color: white;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.contact-info-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.contact-info-item a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.contact-info-item p {
    color: white;
    opacity: 0.95;
}

/* Newsletter */
.newsletter-press {
    padding: 4rem 0;
    background: #f8f9fa;
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.newsletter-box h2 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.newsletter-box > p {
    color: #666;
    margin-bottom: 2rem;
}

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

.newsletter-form input {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 1rem 2rem;
    margin-top: 0.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .intro-content h2,
    .press-releases h2,
    .press-coverage h2,
    .press-kit h2,
    .contact-box h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .releases-grid {
        grid-template-columns: 1fr;
    }

    .coverage-grid,
    .kit-items,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .press-intro {
        padding: 2rem 0;
    }

    .intro-content h2 {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .release-card {
        padding: 1.5rem;
    }

    .newsletter-box h2 {
        font-size: 1.5rem;
    }
}

/* Seção Revista Náutica */
.revista-nautica-section {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.05), rgba(0, 172, 193, 0.05));
    border-radius: 15px;
}

.revista-nautica-section h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.section-intro {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.revista-image-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.revista-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.revista-image-item img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    padding: 1rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 500;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .revista-images {
        grid-template-columns: 1fr;
    }
    
    .revista-nautica-section h3 {
        font-size: 1.4rem;
    }
    
    .section-intro {
        font-size: 1rem;
    }
}
