/*
Theme Name: Novo Visor
Theme URI: https://visornews.com.br/
Author: Visor News
Author URI: https://visornews.com.br/
Description: Tema WordPress para o novo layout do Visor Notícias
Version: 0.1.0
Requires at least: 5.8
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: novo-visor
*/

/* Os estilos principais serão injetados via styles.css.php até termos um build. */

/* ==============================
   ESTILOS PARA COMPONENTE DE VÍDEO
   ============================== */

/* Container principal do vídeo */

.container-video-destaque {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.container-video-destaque:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Container do vídeo YouTube */
#video-youtube2 {
    position: relative;
    width: 100%;
    height: 300px; /* Altura fixa de 300px */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Estilo do embed do YouTube */
.youtube-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Botão de play personalizado */
.youtube-embed::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.youtube-embed::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 20px solid #dc3545;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    z-index: 1;
    transition: all 0.3s ease;
}

.youtube-embed:hover::before {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-embed:hover::after {
    border-left-color: #c82333;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Botão de status (Live/Ao Vivo) */
.btn-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
}

.btn-danger::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.6);
}

.btn-danger:hover::before {
    left: 100%;
}

/* Título do vídeo */
.title-inLive-mobile,
.title-inLive {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.title-inLive-mobile a,
.title-inLive a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.title-inLive-mobile a:hover,
.title-inLive a:hover {
    color: #dc3545;
}

/* Estilos responsivos para mobile */
@media (max-width: 768px) {
    .container-video-destaque {
        margin: 0 15px 20px 15px;
        border-radius: 12px;
    }
    
    #video-youtube2 {
        height: 200px; /* Altura menor para mobile */
    }
    
    .youtube-embed::before {
        width: 60px;
        height: 60px;
    }
    
    .youtube-embed::after {
        border-left: 15px solid #dc3545;
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
    }
    
    .title-inLive-mobile {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .btn-danger {
        margin: 0 auto;
        margin-top: 15px;
        margin-bottom: 15px;
        display: block;
        text-align: center;
    }
}

/* Estilos para desktop */
@media (min-width: 769px) {
    .desktop-video {
        padding-right: 20px;
    }
    
    .title-inLive {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .container-video-destaque {
        margin-bottom: 0;
    }
}

/* Animação de pulsação para indicar live */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

.btn-danger {
    animation: pulse 2s infinite;
}

/* Efeito de overlay no vídeo */
.youtube-embed::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
}

/* Gradiente sutil no container */
.container-video-destaque::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 16px;
}

/* Animações para carregamento do vídeo */
.video-loading {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s ease;
}

.video-loaded {
    opacity: 1;
    transform: scale(1);
}

/* Efeito de loading spinner */
.youtube-embed.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Melhorias adicionais para interatividade */
.youtube-embed:active {
    transform: scale(0.98);
}

/* Efeito de brilho no hover */
.container-video-destaque:hover::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
    border-radius: 18px;
    z-index: -1;
    animation: gradient-border 3s ease infinite;
}

@keyframes gradient-border {
    0%, 100% {
        background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
    }
    50% {
        background: linear-gradient(45deg, #764ba2, #667eea, #764ba2);
    }
}

/* Indicador de live mais proeminente */
.btn-danger:before {
    content: '● ';
    color: #fff;
    font-size: 12px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}


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

body {
    font-family: 'Noto Sans', Arial, sans-serif;
    background-color: #ffffff;
    line-height: 1.6;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, article a h3, .more-news-item a{
    text-decoration: none;
    color: #303030;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.archive-header{
    padding: 0px 24px;
    display: flex;
    place-items: center;
}

.archive-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.archive-post-item {
    width: 400px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.archive-post-item:hover {
    transform: translateY(-2px);
}

.archive-post-item .post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.archive-post-item .post-content {
    padding: 16px;
}

.archive-post-item .post-title {
    font-family: 'Domine', serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #303030;
    margin-bottom: 8px;
}

.archive-post-item .post-title a {
    color: inherit;
    text-decoration: none;
}

.archive-post-item .post-meta {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: #666666;
    margin-bottom: 12px;
}

.archive-post-item .post-category {
    text-transform: uppercase;
    font-weight: 700;
    color: #0ba5ab;
}

.archive-post-item .post-excerpt {
    font-size: 14px;
    line-height: 20px;
    color: #666666;
}

@media (max-width: 768px) {
    .archive-posts {
        grid-template-columns: 1fr;
    }
}

/* Header Styles */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background-color: #ffffff;
}

.menu-icon, .search-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.logo {
    width: 113px;
    height: 46px;
    cursor: pointer;
}

/* Navigation Bar */
.nav-bar {
    background-color: #0ba5ab;
    padding: 12px 16px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    place-content: center;
    gap: 36px;
    overflow-x: auto;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 20px;
    height: 20px;
    background-color: #ffcccc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #b00404;
    border-radius: 4px;
    animation: pulse 2s infinite;
}

.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.nav-item:hover {
    opacity: 0.8;
}

.nav-item.active {
    font-weight: 700;
}

/* Ad Banner */
.ad-banner {
    width: 100%;
    height: 200px;
    text-align: center;
    place-content: center;
}

/* Main Content */
.main-content {
    display: flex;
    gap: 32px;
    padding: 24px;
    align-items: flex-start;
}

.featured-article {
    flex: 1;
    max-width: 434px;
}

.featured-image {
    width: 100%;
    height: 251px;
    border-radius: 4px;
    object-fit: cover;
    margin-bottom: 20px;
}

.category-tag {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0ba5ab;
    margin-bottom: 8px;
}

.article-title {
    font-family: 'Domine', serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    color: #000000;
    margin-bottom: 18px;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-item {
    display: flex;
    gap: 12px;
}

.related-item a{
    display: contents;
}

.related-image {
    width: 100px;
    height: 88px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.related-content {
    flex: 1;
}

.related-category {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0ba5ab;
    margin-bottom: 6px;
}

.related-title {
    font-family: 'Domine', serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    color: #303030;
}

/* Latest News Section */
.latest-news {
    flex: 1;
    max-width: 375px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.section-title {
    font-family: 'Domine', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1e1e1e;
}

.section-line {
    flex: 1;
    height: 1px;
    background-color: #0ba5ab;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    display: flex;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s;
}

.news-item:hover {
    transform: translateY(-2px);
}

.news-item a {
    display: contents;
}

.news-image {
    width: 100px;
    height: 88px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.news-content {
    flex: 1;
}

.news-category {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0ba5ab;
    margin-bottom: 6px;
}

.news-title {
    font-family: 'Domine', serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    color: #000000;
}

/* Real Estate Section */
.real-estate-section {
    flex: 1;
    max-width: 343px;
}

.real-estate-card {
    background-color: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    overflow: hidden;
}

.real-estate-header {
    background-color: #0ba5ab;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px 12px 0 0;
}

.real-estate-content {
    padding: 16px;
}

.real-estate-content .news-item{
    margin-bottom: 11px;
}

.real-estate-image {
    width: 100%;
    height: 164px;
    border-radius: 4px;
    object-fit: cover;
    margin-bottom: 16px;
}

.time-stamp {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.clock-icon {
    width: 16px;
    height: 16px;
}

.time-text {
    font-size: 12px;
    color: #000000;
    text-transform: lowercase;
}

/* Web Stories Section */
.web-stories {
    padding: 24px;
    background-color: #ffffff;
}

.stories-grid {
    display: flex;
    gap: 42px;
    margin-top: 20px;
}

.story-card {
    flex: 1;
    max-width: 170px;
    cursor: pointer;
    transition: transform 0.3s;
}

.story-card:hover {
    transform: translateY(-2px);
}

.story-image {
    width: 100%;
    height: 205px;
    border-radius: 4px;
    object-fit: cover;
    margin-bottom: 12px;
}

.story-category {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0ba5ab;
    margin-bottom: 6px;
}

.story-title {
    font-family: 'Domine', serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    color: #303030;
}

/* Columnists Section */
.columnists-section {
    background-color: #0ba5ab;
    padding: 24px;
    position: relative;
}

.columnists-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.columnists-title {
    font-family: 'Domine', serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.columnists-line {
    flex: 1;
    height: 1px;
    background-color: #ffffff;
}

.columnists-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
}

.columnist-item {
    display: flex;
    gap: 12px;
    min-width: 300px;
    cursor: pointer;
}

.columnist-avatar {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    object-fit: cover;
    flex-shrink: 0;
}

.columnist-content {
    flex: 1;
}

.columnist-category {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffeeaa;
    margin-bottom: 6px;
}

.columnist-title {
    font-family: 'Domine', serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    color: #ffffff;
}

/* Regional Coverage */
.regional-section {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    padding-bottom: 24px;
}

.regional-content {
    flex: 2;
}

.filter-buttons {
    display: flex;
    gap: 16px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid #b1b1b1;
    border-radius: 8px;
    background-color: #ffffff;
    color: #303030;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.filter-btn.active {
    background-color: #0ba5ab;
    color: #ffffff;
    border-color: #0ba5ab;
}

.filter-btn:hover {
    background-color: #f5f5f5;
    transform: translateY(-1px);
}

.filter-icon {
    width: 22px;
    height: 22px;
    border-radius: 4px;
}

.regional-news-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.regional-news-list article a{
    text-decoration: none;
}

.regional-news-item {
    border-left: 4px solid #0ba5ab;
    padding-left: 12px;
    cursor: pointer;
}

.regional-category {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0ba5ab;
    margin-bottom: 6px;
}

.regional-title {
    font-family: 'Domine', serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #000000;
}

.regional-title .location {
    color: #0ba5ab;
    text-decoration: underline;
}

.regional-title .time {
    color: #303030;
    font-weight: 400;
}

/* Real Estate Sidebar */
.real-estate-sidebar {
    flex: 1;
    max-width: 486px;
}
.real-estate-sidebar .category-news-list article a{
    text-decoration: none;
    color: #0ba5ab;
}

.real-estate-header-sidebar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.real-estate-icon {
    width: 16px;
    height: 16px;
    background-color: #0ba5ab;
}

.real-estate-title {
    font-family: 'Domine', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1e1e1e;
}

.real-estate-line {
    flex: 1;
    height: 1px;
    background-color: #0ba5ab;
}

.real-estate-featured {
    background-color: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.real-estate-featured-image {
    width: 100%;
    height: 277px;
    object-fit: cover;
}

.real-estate-featured-content {
    padding: 20px;
}

.real-estate-category {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0ba5ab;
    margin-bottom: 8px;
}

.real-estate-featured-title {
    font-family: 'Domine', serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    color: #303030;
    margin-bottom: 12px;
}

.real-estate-description {
    font-size: 14px;
    line-height: 21px;
    color: #303030;
    height: 90px;
}

/* Utility Classes */
.divider {
    width: 100%;
    height: 1px;
    background-color: #d9d9d9;
}

.ad-placeholder {
    background-color: #7d00cb;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    border-radius: 8px;
}

/* Animation for Live Indicator */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Footer Styles */
.footer {
    background-color: #0ba5ab;
    padding: 24px;
    text-align: center;
}

.footer-logo {
    width: 226px;
    height: 107px;
    margin: 0 auto 24px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.social-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.8;
}

.app-download-text {
    font-family: 'Domine', serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 24px;
}

.app-badge {
    height: 45px;
    width: 150px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.app-badge:hover {
    opacity: 0.8;
}

.footer-links {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 21px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: underline;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-bottom {
    background-color: #105e61;
    padding: 12px;
    text-align: center;
}

.footer-copyright {
    font-size: 16px;
    color: #ffffff;
}

.footer-copyright .brand {
    font-weight: 700;
}

/* Article Layout Styles */
.article-container {
    display: flex;
    gap: 57px;
    padding: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.article-main {
    flex: 2;
    max-width: 800px;
}
.article-main ul{
    padding-left: 20px;
}

.article-sidebar {
    flex: 1;
    max-width: 375px;
}

/* Article Header */
.article-header {
    margin-bottom: 24px;
}

.article-category a{
    color: #0ba5ab;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    text-decoration: none;
}

.main-article-title {
    font-family: 'Domine', serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: #000000;
    margin-bottom: 16px;
}

.article-subtitle {
    font-size: 18px;
    line-height: 24px;
    color: #666666;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: #000000;
    font-size: 14px;
}

.article-date {
    font-size: 12px;
    color: #666666;
}

.share-buttons {
    display: flex;
    gap: 12px;
    margin-left: auto;
}

.share-btn {
    width: 32px;
    height: 32px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.share-btn:hover {
    opacity: 0.8;
}

.share-btn.whatsapp { background-color: #25D366; }
.share-btn.facebook { background-color: #1877F2; }
.share-btn.twitter { background-color: #1DA1F2; }
.share-btn.instagram { background-color: #E4405F; }

/* Article Featured Image */
.article-featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}

.image-caption {
    font-size: 12px;
    color: #666666;
    font-style: italic;
    margin-bottom: 24px;
}

/* Article Content */
.article-content {
    font-size: 16px;
    line-height: 28px;
    color: #303030;
}

.article-content p {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 400;
    line-height: 34px;
}

.article-content h2 {
    font-family: 'Domine', serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 32px 0 16px 0;
}

.article-content h3 {
    font-family: 'Domine', serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 24px 0 12px 0;
}

.article-content blockquote {
    border-left: 4px solid #0ba5ab;
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    color: #666666;
}

/* Summary Button */
.summary-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 300px;
    padding: 12px 16px;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.summary-btn:hover {
    background-color: #f0f0f0;
    border-color: #d0d0d0;
}

.summary-btn svg {
    color: #666666;
    transition: transform 0.3s ease;
}

.summary-btn.expanded svg {
    transform: rotate(180deg);
}

/* Sidebar Styles */
.sidebar-section {
    margin-bottom: 32px;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.sidebar-title {
    font-family: 'Domine', serif;
    font-size: 20px;
    font-weight: 700;
    color: #1e1e1e;
}

.sidebar-line {
    flex: 1;
    height: 1px;
    background-color: #0ba5ab;
}

/* Related Articles for Article Page */
.related-article {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    cursor: pointer;
    transition: transform 0.3s;
}

.related-article:hover {
    transform: translateY(-2px);
}

.related-article-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* Responsive Design for Articles */
@media (max-width: 768px) {
    .article-container {
        flex-direction: column;
        padding: 16px;
    }

    .main-article-title {
        font-size: 24px;
        line-height: 32px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .share-buttons {
        margin-left: 0;
    }

    .article-featured-image {
        height: 250px;
    }
}

/* Category News List for different sections */
.category-news-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.category-news-item {
    display: flex;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s;
}

.category-news-item:hover {
    transform: translateY(-2px);
}

.category-news-item a{
    display: contents;
}

.category-news-image {
    width: 88px;
    height: 88px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.category-news-content {
    flex: 1;
}

.category-news-category {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.category-news-title {
    font-family: 'Domine', serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    color: #000000;
}

/* Category Sections */
.category-sections {
    display: flex;
    gap: 32px;
    padding: 24px;
}

.category-section {
    flex: 1;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.category-icon {
    width: 16px;
    height: 16px;
}

.category-icon.sports {
    background-color: #14ae5c;
}

.category-icon.general {
    background-color: #0ba5ab;
}

.category-icon.politics {
    background-color: #2c2c2c;
}

.category-title {
    font-family: 'Domine', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1e1e1e;
}

.category-line {
    flex: 1;
    height: 1px;
}

.category-line.sports {
    background-color: #14ae5c;
}

.category-line.general {
    background-color: #0ba5ab;
}

.category-line.politics {
    background-color: #2c2c2c;
}

.category-featured {
    background-color: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 18px;
    height: 434px;
}

.category-featured.simple {
    height: auto;
    border: none;
}
.category-featured.simple .category-featured-content{
    padding: 0;
    height: auto;
}
.category-featured.simple .category-featured-title{
    font-size: 16px;
}

.category-featured-image {
    width: 100%;
    height: 205px;
    object-fit: cover;
}

.category-featured-content {
    padding: 20px;
    height: 215px;
}

.category-featured-category {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.category-featured-category.sports {
    color: #14ae5c;
}

.category-featured-category.general {
    color: #0ba5ab;
}

.category-featured-category.politics {
    color: #2c2c2c;
}

.category-featured-title {
    font-family: 'Domine', serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    color: #303030;
    margin-bottom: 12px;
}

.category-featured-description {
    font-size: 14px;
    line-height: 21px;
    color: #303030;
}

.category-news-category.sports {
    color: #14ae5c;
}

.category-news-category.general {
    color: #0ba5ab;
}

.category-news-category.politics {
    color: #2c2c2c;
}

.expand-btn {
    width: 32px;
    height: 32px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto 0;
    transition: transform 0.3s;
}

.expand-btn:hover {
    transform: scale(1.1);
}

.expand-btn.sports {
    background-color: #14ae5c;
}

.expand-btn.general {
    background-color: #0ba5ab;
}

.expand-btn.politics {
    background-color: #2c2c2c;
}

.expand-icon {
    width: 16px;
    height: 8px;
}

/* Podcasts Section Styles */
.podcasts-section {
    background-color: #303030;
    padding: 24px;
}

.podcasts-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.podcasts-title {
    font-family: 'Domine', serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.podcasts-line {
    flex: 1;
    height: 1px;
    background-color: #ffffff;
}

.podcasts-content {
    display: flex;
    gap: 32px;
}

.podcast-featured {
    flex: 1;
    max-width: 490px;
    border: 1px solid #464646;
    border-radius: 24px;
    overflow: hidden;
}

.podcast-featured-image {
    width: 100%;
    height: 198px;
    object-fit: cover;
    position: relative;
}

.podcast-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.podcast-icon {
    width: 16px;
    height: 16px;
}

.podcast-label {
    font-family: 'Domine', serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.podcast-featured-content {
    padding: 20px;
}

.podcast-episode {
    font-family: 'Domine', serif;
    font-size: 12px;
    text-transform: uppercase;
    color: #abfbff;
    margin-bottom: 8px;
}

.podcast-featured-title {
    font-family: 'Domine', serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
    color: #ffffff;
    margin-bottom: 12px;
}

.podcast-featured-description {
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    color: #ffffff;
    margin-bottom: 16px;
}

.podcast-play-btn {
    background-color: #0ba5ab;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 20px;
    font-family: 'Domine', serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    transition: background-color 0.3s;
}

.podcast-play-btn:hover {
    background-color: #0a9299;
}

.podcast-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #ffffff;
}

.podcast-duration-icon {
    width: 12px;
    height: 12px;
}

.podcast-dot {
    width: 4px;
    height: 4px;
    background-color: #86faff;
    border-radius: 2px;
}

.podcast-updated {
    color: #abfbff;
}

.podcasts-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.podcasts-row {
    display: flex;
    gap: 24px;
}

.podcast-item {
    flex: 1;
    background-color: #373737;
    border-radius: 24px;
    height: 392px;
}

.podcast-item-image {
    width: 100%;
    height: 119px;
    border-radius: 24px 24px 0 0;
    object-fit: cover;
    position: relative;
}

.podcast-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 165, 171, 0.5);
    border-radius: 24px 24px 0 0;
}

.podcast-item-content {
    padding: 16px;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.podcast-item-episode {
    font-family: 'Domine', serif;
    font-size: 12px;
    text-transform: uppercase;
    color: #abfbff;
}

.podcast-item-title {
    font-family: 'Domine', serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 23px;
    color: #ffffff;
}

.podcast-item-play-btn {
    width: 117px;
    height: 40px;
    background-color: #0ba5ab;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Domine', serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.podcast-item-play-btn:hover {
    background-color: #0a9299;
}

.podcast-item-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #ffffff;
}

/* More News Section */
.more-news-section {
    padding: 24px;
}

.more-news-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.more-news-icon {
    width: 16px;
    height: 16px;
    background-color: #0889c5;
}

.more-news-title {
    font-family: 'Domine', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1e1e1e;
}

.more-news-line {
    flex: 1;
    height: 1px;
    background-color: #0889c5;
}

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

.more-news-item {
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.more-news-item:hover {
    transform: translateY(-2px);
}

.more-news-image {
    width: 100%;
    height: 205px;
    object-fit: cover;
}

.more-news-content {
    padding: 20px;
}

.more-news-category {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0889c5;
    margin-bottom: 8px;
}

.more-news-item-title {
    font-family: 'Domine', serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    color: #303030;
    margin-bottom: 12px;
}

.more-news-description {
    font-size: 14px;
    line-height: 21px;
    color: #303030;
}

/* Read More Section */
.read-more-section {
    padding: 24px;
}

.read-more-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.read-more-title {
    font-family: 'Domine', serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}

.read-more-line {
    flex: 1;
    height: 1px;
    background-color: #0ba5ab;
}

.read-more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.read-more-item {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s;
}

.read-more-item:hover {
    transform: translateY(-2px);
}

.read-more-image {
    width: 100%;
    height: 202px;
    border-radius: 4px;
    object-fit: cover;
    margin-bottom: 12px;
}

.read-more-category {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0ba5ab;
    margin-bottom: 6px;
}

.read-more-item-title {
    font-family: 'Domine', serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #303030;
}

.read-more-item-title .location {
    color: #0ba5ab;
    text-decoration: underline;
}

.read-more-item-title .time {
    color: #303030;
    font-weight: 400;
}

/* Security Section */
.security-section {
    display: flex;
    gap: 32px;
    padding: 24px;
}

.security-content {
    flex: 1;
}

.security-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.security-icon {
    width: 16px;
    height: 16px;
    background-color: #eb221e;
}

.security-title {
    font-family: 'Domine', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1e1e1e;
}

.security-line {
    flex: 1;
    height: 1px;
    background-color: #eb221e;
}

.security-featured {
    background-color: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 18px;
    height: 434px;
}

.security-featured-image {
    width: 100%;
    height: 205px;
    object-fit: cover;
}

.security-featured-content {
    padding: 20px;
}

.security-category {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #eb221e;
    margin-bottom: 8px;
}

.security-featured-title {
    font-family: 'Domine', serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    color: #303030;
    margin-bottom: 12px;
}

.security-description {
    font-size: 14px;
    line-height: 21px;
    color: #303030;
}

.security-news-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.security-news-item {
    display: flex;
    height: 88px;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s;
}

.security-news-item:hover {
    transform: translateY(-2px);
}

.security-news-item a{
    display: contents;
}

.security-news-image {
    width: 88px;
    height: 88px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.security-news-content {
    flex: 1;
}

.security-news-category {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #eb221e;
    margin-bottom: 6px;
}

.security-news-title {
    font-family: 'Domine', serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    color: #000000;
}

.security-expand-btn {
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background-color: #eb221e;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto 0;
    transition: transform 0.3s;
}

.security-expand-btn:hover {
    transform: scale(1.1);
}

/* Specials Section */
.specials-section {
    width: 375px;
    background-color: #303030;
    padding: 24px;
    border-radius: 8px;
}

.specials-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.specials-title {
    font-family: 'Domine', serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.specials-line {
    flex: 1;
    height: 1px;
    background-color: #ffffff;
}

.specials-featured {
    border: 1px solid #464646;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.specials-featured-image {
    width: 100%;
    height: 205px;
    object-fit: cover;
    position: relative;
}

.specials-featured .specials-content h3 a{
    color: white;
}
.specials-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #62a542;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

.specials-content {
    padding: 20px;
}

.specials-category {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #62a542;
    margin-bottom: 8px;
}

.specials-featured-title {
    font-family: 'Domine', serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
    color: #ffffff;
    margin-bottom: 12px;
}

.specials-description {
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    color: #ffffff;
}

.specials-grid {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.specials-item {
    flex: 1;
}

.specials-item-image {
    width: 100%;
    height: 84px;
    border-radius: 4px;
    object-fit: cover;
    margin-bottom: 8px;
}

.specials-item-category {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 6px;
}

.specials-item-title {
    font-family: 'Domine', serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 23px;
    color: #ffffff;
}

/* Focus States for Accessibility */
.filter-btn:focus,
.podcast-play-btn:focus,
.expand-btn:focus {
    outline: 2px solid #0ba5ab;
    outline-offset: 2px;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Interactive States */
.news-item:hover,
.story-card:hover,
.more-news-item:hover,
.read-more-item:hover {
    transform: translateY(-2px);
    transition: transform 0.3s;
}

/* Additional Responsive Design */
@media (max-width: 768px) {
    .specials-section{
        width: 100%;
    }
    
    .container{
        padding: 0px 24px;
    }

    .featured-article{
        max-width: 100%;
    }

    .ad-banner{
        padding: 24px;
        margin: 20px 0px;
    }
    
    .ad-banner img{
        max-width: 100%;
    }

    .nav-bar + .ad-banner{
        margin: 0px 0px 20px 0px;
    }

    .main-content {
        flex-direction: column;
    }

    .category-sections {
        flex-direction: column;
    }

    .security-section {
        flex-direction: column;
    }

    .regional-section {
        flex-direction: column;
    }

    .podcasts-content {
        flex-direction: column;
    }

    .podcasts-row {
        flex-direction: column;
    }

    .read-more-grid {
        grid-template-columns: 1fr;
    }

    .more-news-grid {
        grid-template-columns: 1fr;
    }

    .stories-grid {
        flex-direction: row;
        flex-wrap: wrap;
        row-gap: 15px;
    }
    
    .stories-grid .story-card .story-image{
        height: 155px;
    }

    .columnists-grid {
        flex-direction: column;
    }

    .app-badges {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .nav-bar {
        padding: 8px;
        gap: 16px;
    }

    .section-title {
        font-size: 20px;
    }

    .category-title {
        font-size: 20px;
    }

    .filter-buttons {
        gap: 8px;
    }

    .filter-btn {
        font-size: 14px;
        padding: 6px 12px;
    }
} 

/* Archive Layout */
.archive-container{
    display:flex;
    gap:32px;
    padding:24px;
    max-width:1280px;
    margin:0 auto;
    align-items:flex-start;
}
.archive-main{flex:2;}
.archive-sidebar{flex:1;max-width:375px;}


@media(max-width:768px){
  .archive-container{flex-direction:column;}
}

/* Página Quem Somos */
.quem-somos-intro {
    margin-bottom: 40px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #138589;
}

.quem-somos-intro h2 {
    font-family: 'Domine', serif;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
    font-weight: 500;
}

.equipe-section {
    margin-bottom: 40px;
}

.equipe-section .section-title {
    font-family: 'Domine', serif;
    font-size: 2rem;
    color: #138589;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.equipe-member {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.equipe-avatar-container {
    text-align: center;
    margin-bottom: 20px;
}

.equipe-avatar {
    border-radius: 50%;
    width: 120px !important;
    height: 120px !important;
    object-fit: cover;
    border: 4px solid #138589;
    box-shadow: 0 4px 12px rgba(19, 133, 137, 0.2);
}

.equipe-info {
    text-align: center;
}

.equipe-name {
    font-family: 'Domine', serif;
    font-size: 1.4rem;
    color: #138589;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.equipe-description {
    font-family: 'Inter', sans-serif;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.fale-conosco-section {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #138589 0%, #0f6b6f 100%);
    border-radius: 12px;
    text-align: center;
}

.fale-conosco-section .section-title {
    font-family: 'Domine', serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.fale-conosco-link {
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    display: inline-block;
}

.fale-conosco-link:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.fale-conosco-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    color: rgba(255, 255, 255, 0.9);
}

.fale-conosco-url {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-block;
    transition: background 0.3s ease;
}

.fale-conosco-link:hover .fale-conosco-url {
    background: rgba(255, 255, 255, 0.2);
}

.page-content {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e9ecef;
}

/* Responsivo para Quem Somos */
@media (max-width: 768px) {
    .equipe-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .equipe-member {
        padding: 20px;
    }
    
    .equipe-avatar {
        width: 100px !important;
        height: 100px !important;
    }
    
    .quem-somos-intro {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .quem-somos-intro h2 {
        font-size: 1.3rem;
    }
    
    .equipe-section .section-title,
    .fale-conosco-section .section-title {
        font-size: 1.6rem;
    }
    
    .fale-conosco-section {
        padding: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .equipe-name {
        font-size: 1.2rem;
    }
    
    .equipe-description {
        font-size: 0.9rem;
    }
    
    .fale-conosco-text {
        font-size: 1rem;
    }
    
    .fale-conosco-url {
        font-size: 1.1rem;
        padding: 10px 20px;
    }
}

/* Página Fale Conosco */
.fale-conosco-intro {
    margin-bottom: 40px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #138589;
}

.fale-conosco-intro h2 {
    font-family: 'Domine', serif;
    font-size: 1.8rem;
    line-height: 1.4;
    color: #138589;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.fale-conosco-intro p {
    font-family: 'Inter', sans-serif;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

.contato-info-section {
    margin-bottom: 50px;
}

.empresa-info {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #138589 0%, #0f6b6f 100%);
    border-radius: 12px;
    color: white;
}

.empresa-info .section-title {
    font-family: 'Domine', serif;
    font-size: 2.2rem;
    color: white;
    margin: 0 0 10px 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.empresa-info .section-title svg {
    stroke: white;
}

.empresa-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

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

.contato-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

.contato-icon {
    background: rgba(19, 133, 137, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-info h4 {
    font-family: 'Domine', serif;
    font-size: 1.2rem;
    color: #138589;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.contato-info p {
    font-family: 'Inter', sans-serif;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.contato-info a {
    color: #138589;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contato-info a:hover {
    color: #0f6b6f;
    text-decoration: underline;
}

.mapa-section {
    margin-bottom: 40px;
}

.mapa-section .section-title {
    font-family: 'Domine', serif;
    font-size: 1.8rem;
    color: #138589;
    margin-bottom: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mapa-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.mapa-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Responsivo para Fale Conosco */
@media (max-width: 768px) {
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contato-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .contato-icon {
        align-self: center;
    }
    
    .fale-conosco-intro {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .fale-conosco-intro h2 {
        font-size: 1.5rem;
    }
    
    .empresa-info {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .empresa-info .section-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .empresa-subtitle {
        font-size: 1.1rem;
    }
    
    .mapa-section .section-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .mapa-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contato-item {
        padding: 18px;
    }
    
    .contato-icon {
        width: 45px;
        height: 45px;
    }
    
    .contato-info h4 {
        font-size: 1.1rem;
    }
    
    .contato-info p {
        font-size: 0.9rem;
    }
    
    .fale-conosco-intro h2 {
        font-size: 1.4rem;
    }
    
    .fale-conosco-intro p {
        font-size: 1rem;
    }
    
    .empresa-info .section-title {
        font-size: 1.6rem;
    }
    
    .mapa-container iframe {
        height: 250px;
    }
} 