/* Previsão do Tempo - Estilos */

.previsao-tempo{
	padding: 0px!important;
}


.title.breadonly {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.title.page {
    background: #d32f2f;
    color: #fff;
    padding: 30px 0;
}

.title.page h1 {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
}

.whitebg {
    background: #fff;
    padding: 40px 0;
}

/* Alert Box - Severidade Meteorológica */
.alert-box {
    border-radius: 8px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.alert-box .alert-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(to bottom, #ff8c42, #ff7a2e);
}

.alert-box.alert-orange .alert-header {
    background: linear-gradient(to bottom, #ff8c42, #ff7a2e);
}

.alert-box.alert-red .alert-header {
    background: linear-gradient(to bottom, #e74c3c, #c0392b);
}

.alert-box.alert-yellow .alert-header {
    background: linear-gradient(to bottom, #f1c40f, #f39c12);
}

.alert-box.alert-green .alert-header {
    background: linear-gradient(to bottom, #2ecc71, #27ae60);
}

.alert-box.alert-purple .alert-header {
    background: linear-gradient(to bottom, #9b59b6, #8e44ad);
}

.alert-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.alert-exclamation {
    color: #e74c3c;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
}

.alert-title {
    color: #ffffff;
    font-size: 20px!important;
    font-weight: bold;
    margin: 0;
    margin-bottom: 0px!important;
    text-transform: uppercase;
}

.alert-box .alert-body {
    background: #fdfdfd;
    padding: 20px;
    color: #5d4037;
    font-size: 16px;
    line-height: 1.6;
}

.alert-box .alert-body p {
    margin: 0;
}

.alert-box .alert-body p strong,
.alert-box .alert-body p .highlight {
    color: #ff5722;
    font-weight: bold;
}

/* Boletim Meteorológico */
.boletim-meteorologico {
    margin-bottom: 30px;
}

.boletim-title {
    background: #1976d2;
    color: #fff;
    padding: 15px 20px;
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px 4px 0 0;
}

.pdf-viewer {
    border: 1px solid #ddd;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #f9f9f9;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pdf-viewer object {
    display: block;
    min-height: 500px;
    width: 100%;
}

.pdf-download {
    text-align: center;
}

.btn-download-pdf {
    display: inline-block;
    background: #be1522;
    color: #fff!important;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s;
    border: 1px solid #be1522;
}

.btn-download-pdf:hover {
    background: #fff;
    color: #be1522!important;
    text-decoration: none;
    border: 1px solid #be1522;
}

/* Imagem fixa */
.imagem-fixa-space {
    margin-bottom: 30px;
    border-radius: 4px;
    overflow: hidden;
}

.imagem-fixa-space img {
    width: 100%;
    height: auto;
    display: block;
}

/* Informes Meteorológicos */
.informes-meteorologicos {
    margin-bottom: 30px;
}

.informes-title {
    background: #efeff0;
    color: #4c4c4c;
    padding: 15px 20px;
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px 4px 0 0;
}

.informe-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.informe-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #d0d0d0;
    transform: translateY(-2px);
}

.informe-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #fff;
    border: none;
}

.informe-icon {
    font-size: 20px;
    margin-right: 16px;
    color: #be1522;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.informe-item:hover .informe-icon {
    background: #be1522;
    color: #fff;
    transform: scale(1.1);
}

.informe-item-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    flex: 1;
    line-height: 1.5;
}

.informe-link {
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.informe-link:hover {
    color: #be1522!important;
    text-decoration: none;
}

.informe-content {
    padding: 15px;
}

.informe-pdf {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #f9f9f9;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.informe-pdf object {
    display: block;
    min-height: 400px;
    width: 100%;
}

.aviso-informe {
    text-align: center!important;
}

/* Responsividade */
@media (max-width: 768px) {
    .alert-box .alert-header {
        flex-direction: column;
        text-align: center;
    }
    
    .alert-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .pdf-viewer object,
    .informe-pdf object {
        min-height: 300px;
    }
}