/*
Theme Name: ENAPP 
Theme URI: https://enapp.gov.ao
Author: Claudio Rodrigues 
Author URI: https: //cajweb.intro-image img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;com/
Description: ENAPP - Escola Nacional de Administração Pública. 
Version: 1.0 
Text Domain: enapp.gov.ao 
E mais um site desenvolvido pelo Web Developer Sênio Cláudio Rodrigues.

*/

/* Estilos para página de Comunicação e Marketing */
.comunicacao-marketing-section {
    overflow: hidden;
    position: relative;
}

.hero-comunicacao {
    position: relative;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
}

.hero-comunicacao:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(var(--theme-color-rgb), 0.08);
    z-index: -1;
    animation: pulse-bg 4s infinite ease-in-out;
}

@keyframes pulse-bg {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.9; }
    100% { transform: scale(1); opacity: 0.7; }
}

.comunicacao-intro-text {
    position: relative;
    padding: 2.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    z-index: 2;
    transition: all 0.4s ease;
}

.comunicacao-intro-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.comunicacao-intro-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.comunicacao-intro-text h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--theme-color);
    border-radius: 2px;
}

.comunicacao-intro-text .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.intro-image {
    position: relative;
}

.intro-image:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--theme-color);
    opacity: 0.2;
    border-radius: 15px;
    z-index: -1;
    transition: all 0.5s ease;
}

.intro-image:hover:before {
    top: 10px;
    left: 10px;
    opacity: 0.4;
}

.intro-image img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    transform: translateY(0);
}

.intro-image:hover img {
    transform: translateY(-10px);
}

.sub-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    background-color: rgba(55, 125, 255, 0.1);
    color: #377dff;
    padding: 5px 15px;
    border-radius: 50px;
}

.sec-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

/* Cards de Serviços */
.service-card {
    padding: 2.5rem 1.5rem;
    border-radius: 10px;
    background-color: #ffffff;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid transparent;
    height: 100%;
}

.service-card:hover {
    border-color: #377dff;
    transform: translateY(-10px);
}

.service-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    background-color: #377dff;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-card-icon {
    background-color: #222;
    transform: rotateY(180deg);
}

.service-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
}

.service-card-text p {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Feature Box */
.feature-box {
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    transition: all 0.4s ease;
    height: 100%;
    border-left: 3px solid #377dff;
}

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

.feature-box-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #377dff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.feature-box-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #222;
    position: relative;
    padding-bottom: 10px;
}

.feature-box-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #377dff;
}

.feature-box-content {
    color: #666;
}

/* Feature Image */
.feature-image {
    position: relative;
    padding: 15px;
}

.feature-image img {
    transition: all 0.5s ease;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #377dff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    box-shadow: 0 10px 20px rgba(55, 125, 255, 0.3);
}

.experience-content .counter {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-content .exp-text {
    font-size: 0.9rem;
    margin-top: 5px;
    text-transform: uppercase;
}

/* Lista de Serviços Elegante */
.elegant-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.elegant-list li {
    padding: 10px 0 10px 35px;
    position: relative;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    color: #666;
    transition: all 0.3s ease;
}

.elegant-list li:last-child {
    border-bottom: none;
}

.elegant-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 10px;
    color: #377dff;
    font-size: 1rem;
}

.elegant-list li:hover {
    color: #222;
    padding-left: 40px;
}

/* CTA Box */
.cta-box {
    padding: 3rem;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cta-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #377dff;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
}

.cta-text {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.contact-link {
    color: #555;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.contact-link:hover {
    color: #377dff;
    transform: translateX(5px);
}

.contact-link i {
    color: #377dff;
    font-size: 1.1rem;
}

/* Social Links Modernos */
.social-links-modern {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link-modern {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #377dff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-link-modern:hover {
    background-color: #377dff;
    color: #fff;
    transform: translateY(-5px);
}

/* Shapes Animadas */
.shape-mockup {
    position: absolute;
    z-index: -1;
    opacity: 0.3;
}

.jump {
    animation: jump 5s linear infinite;
}

.jump-reverse {
    animation: jumpReverse 5s linear infinite;
}

@keyframes jump {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes jumpReverse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
}

/* Efeito de hover nos cards de serviço */
.service-card:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: #377dff;
    transition: height 0.3s ease;
}

.service-card:hover:after {
    height: 100%;
}

/* Melhorias visuais gerais */
.comunicacao-intro-text:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 20px;
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, #377dff, transparent);
}

.comunicacao-intro-text h2 span {
    position: relative;
}

.comunicacao-intro-text h2 span:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #377dff;
}

.service-card-icon:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(55, 125, 255, 0.3);
    border-radius: 10px;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Estilos para Portfolio */
.sec-text {
    max-width: 650px;
    margin: 0 auto 1rem;
    color: #666;
}

.portfolio-card {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.08);
}

.popup-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background-color: #377dff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    opacity: 0;
}

.portfolio-card:hover .popup-image {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.popup-image:hover {
    background-color: #222;
    color: #fff;
}

.portfolio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-content {
    transform: translateY(0);
}

.portfolio-inner {
    position: relative;
}

.portfolio-title {
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 600;
}

.portfolio-title a {
    color: #fff;
    text-decoration: none;
}

.portfolio-tag {
    color: #ddd;
    font-size: 0.9rem;
}

/* Menu de filtro para portfólio */
.filter-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 8px 20px;
    border: none;
    background-color: #f5f5f5;
    color: #666;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: #377dff;
    color: #fff;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .comunicacao-intro-text {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .comunicacao-intro-text h2 {
        font-size: 2.2rem;
    }
    
    .sec-title {
        font-size: 1.8rem;
    }
    
    .cta-box {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-comunicacao {
        margin-bottom: 2rem;
    }
    
    .feature-box {
        margin-bottom: 1.5rem;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        right: 20px;
    }
    
    .experience-content .counter {
        font-size: 2rem;
    }
    
    .contactos-info {
        flex-direction: column;
    }
    
    .social-links-modern {
        margin-top: 1rem;
    }
    
    .portfolio-title {
        font-size: 1rem;
    }
    
    .portfolio-content {
        padding: 15px;
    }
}

