/* ===== RESET E ESTILOS GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.interface {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid #3498db;
}

header .interface {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo a {
    display: block;
    transition: transform 0.3s;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* MENU ICONS */
.menu-icons {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.menu-icons li {
    position: relative;
}

.menu-icons a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    border-radius: 12px;
    transition: all 0.3s;
    background: transparent;
    min-width: 80px;
}

.menu-icons a i {
    font-size: 1.4rem;
    color: #3498db;
    transition: all 0.3s;
}

.menu-icons a span {
    font-size: 0.85rem;
    white-space: nowrap;
}

.menu-icons a:hover {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f7ff 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.15);
}

.menu-icons a:hover i {
    color: #1a73e8;
    transform: scale(1.1);
}

/* DROPDOWN */
.menu-icons .dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
    padding: 10px 0;
    border: 1px solid #e9ecef;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 20px;
    gap: 12px;
    color: #495057;
    font-weight: 500;
    text-align: left;
    border-radius: 0;
    background: transparent;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #1a73e8;
}

/* BOTÃO SUPORTE */
.btn-contato a {
    text-decoration: none;
}

.btn-contato button {
    background: linear-gradient(135deg, #1a73e8 0%, #3498db 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 6px 15px rgba(26, 115, 232, 0.2);
}

.btn-contato button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 115, 232, 0.3);
    background: linear-gradient(135deg, #0d62d9 0%, #2980b9 100%);
}

.btn-contato i {
    font-size: 1.1rem;
}

/* ===== SEÇÃO HISTÓRIA F. DINIZ ===== */
.historia-fdiniz {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.historia-fdiniz::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(46, 204, 113, 0.05) 100%);
    z-index: 0;
}

.titulo-secao {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.titulo-secao::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* VÍDEO COM ANIMAÇÃO */
.historia-video-capa {
    max-width: 800px;
    margin: 0 auto 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    transform: translateY(30px);
    opacity: 0;
    animation: slideUpFade 0.8s ease forwards;
    animation-delay: 0.2s;
}

@keyframes slideUpFade {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.historia-video-capa video {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.historia-video-capa:hover video {
    transform: scale(1.02);
}

.historia-video-capa::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.1), rgba(46, 204, 113, 0.1));
    pointer-events: none;
    border-radius: 20px;
}

/* TEXTO COM ANIMAÇÃO */
.historia-texto {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.coluna-esquerda, .coluna-direita {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideRightFade 0.8s ease forwards;
}

.coluna-esquerda {
    animation-delay: 0.4s;
    margin-bottom: 40px;
}

.coluna-direita {
    transform: translateX(30px);
    animation-name: slideLeftFade;
    animation-delay: 0.6s;
}

@keyframes slideRightFade {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideLeftFade {
    from {
        transform: translateX(30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.historia-texto p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 25px;
    text-align: justify;
}

.coluna-esquerda, .coluna-direita {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #3498db;
}

.coluna-direita {
    border-left-color: #2ecc71;
}

/* TEXTO DESTAQUE */
.destaque {
    text-align: center;
    font-size: 1.8rem !important;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f7ff 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    animation: scaleFade 0.8s ease forwards;
    animation-delay: 0.8s;
}

@keyframes scaleFade {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.destaque::before {
    content: '❝';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 3rem;
    color: rgba(52, 152, 219, 0.2);
    font-family: serif;
}

.destaque::after {
    content: '❞';
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 3rem;
    color: rgba(52, 152, 219, 0.2);
    font-family: serif;
}

/* LINHA DO TEMPO (OPCIONAL - ADICIONE SE QUISER) */
.linha-tempo {
    display: flex;
    justify-content: space-between;
    margin: 60px auto;
    max-width: 800px;
    position: relative;
}

.linha-tempo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transform: translateY(-50%);
}

.marca-tempo {
    position: relative;
    text-align: center;
    width: 100px;
    z-index: 1;
}

.marca-tempo .ano {
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #3498db;
    border: 3px solid #3498db;
    margin: 0 auto 10px;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.marca-tempo .evento {
    font-size: 0.9rem;
    color: #5a6c7d;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .menu-icons {
        gap: 15px;
    }
    
    .menu-icons a {
        min-width: 70px;
        padding: 10px 12px;
    }
    
    .menu-icons a span {
        font-size: 0.8rem;
    }
    
    .titulo-secao {
        font-size: 2rem;
    }
    
    .historia-texto p {
        font-size: 1.1rem;
    }
    
    .destaque {
        font-size: 1.5rem !important;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    header .interface {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .menu-icons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .btn-contato {
        width: 100%;
        text-align: center;
    }
    
    .btn-contato button {
        width: 100%;
        justify-content: center;
    }
    
    .titulo-secao {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .coluna-esquerda, .coluna-direita {
        padding: 20px;
    }
    
    .destaque {
        font-size: 1.3rem !important;
        padding: 20px;
    }
    
    .historia-video-capa {
        margin: 0 15px 40px;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .menu-icons {
        gap: 8px;
    }
    
    .menu-icons a {
        min-width: 60px;
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .menu-icons a i {
        font-size: 1.2rem;
    }
    
    .menu-icons a span {
        font-size: 0.75rem;
    }
    
    .titulo-secao {
        font-size: 1.6rem;
    }
    
    .historia-texto p {
        font-size: 1rem;
        text-align: left;
    }
    
    .destaque {
        font-size: 1.2rem !important;
        padding: 15px;
    }
    
    .dropdown-menu {
        min-width: 180px;
        left: -60px;
        transform: translateX(0) translateY(10px);
    }
    
    .dropdown:hover .dropdown-menu {
        transform: translateX(0) translateY(0);
    }
}

/* ANIMAÇÕES ADICIONAIS */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.logo:hover img {
    animation: float 3s ease-in-out infinite;
}

/* DECORAÇÕES DE FUNDO */
.historia-fdiniz::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.05) 0%, rgba(52, 152, 219, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

/* SCROLL SUAVE PARA O VÍDEO */
.historia-video-capa video:focus {
    outline: 3px solid #3498db;
    outline-offset: 3px;
}

/* ===== RODAPÉ ===== */
.rodape {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: #ecf0f1;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #3498db;
}

.rodape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #3498db);
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.rodape::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" opacity="0.03"><path d="M0 0v10c50 0 50 20 100 20s50-20 100-20 50 20 100 20 50-20 100-20 50 20 100 20 50-20 100-20 50 20 100 20 50-20 100-20 50 20 100 20 50-20 100-20 50 20 100 20 50-20 100-20 50 20 100 20V0z" fill="white"/></svg>');
    background-size: 1200px 120px;
    opacity: 0.1;
}

.rodape-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.rodape-coluna {
    padding: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: footerFadeUp 0.8s ease forwards;
}

.rodape-coluna:nth-child(1) { animation-delay: 0.1s; }
.rodape-coluna:nth-child(2) { animation-delay: 0.3s; }
.rodape-coluna:nth-child(3) { animation-delay: 0.5s; }

@keyframes footerFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* LOGO NO RODAPÉ */
.logo-rodape {
    max-width: 200px;
    height: auto;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
    transition: all 0.5s ease;
    position: relative;
}

.logo-rodape:hover {
    transform: scale(1.05) rotate(-2deg);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(52, 152, 219, 0.5));
}

.rodape-coluna p {
    line-height: 1.7;
    color: #bdc3c7;
    margin-bottom: 0;
    font-size: 1.05rem;
    text-align: justify;
    padding-right: 20px;
}

/* TÍTULOS DAS COLUNAS */
.rodape-coluna h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.rodape-coluna h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.rodape-coluna h3:hover::after {
    width: 100%;
}

/* MENU DO RODAPÉ */
.rodape-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rodape-menu li {
    margin-bottom: 15px;
    transform: translateX(-10px);
    opacity: 0;
    animation: menuSlideIn 0.5s ease forwards;
}

.rodape-menu li:nth-child(1) { animation-delay: 0.4s; }
.rodape-menu li:nth-child(2) { animation-delay: 0.5s; }
.rodape-menu li:nth-child(3) { animation-delay: 0.6s; }
.rodape-menu li:nth-child(4) { animation-delay: 0.7s; }

@keyframes menuSlideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.rodape-menu a {
    color: #bdc3c7;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    padding: 10px 15px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.rodape-menu a::before {
    content: '›';
    color: #3498db;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.rodape-menu a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.5s ease;
}

.rodape-menu a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rodape-menu a:hover::before {
    transform: translateX(5px);
    color: #2ecc71;
}

.rodape-menu a:hover::after {
    left: 100%;
}

/* CONTATOS NO RODAPÉ */
.rodape-contato {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rodape-contato li {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(-10px);
    animation: contactSlideIn 0.5s ease forwards;
}

.rodape-contato li:nth-child(1) { animation-delay: 0.6s; }
.rodape-contato li:nth-child(2) { animation-delay: 0.7s; }
.rodape-contato li:nth-child(3) { animation-delay: 0.8s; }

@keyframes contactSlideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.rodape-contato a, .rodape-contato li {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s;
    padding: 12px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.rodape-contato a::before, .rodape-contato li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #3498db, #2ecc71);
    transition: height 0.3s ease;
}

.rodape-contato a:hover::before, .rodape-contato li:hover::before {
    height: 100%;
}

.rodape-contato i {
    color: #3498db;
    font-size: 1.3rem;
    min-width: 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.rodape-contato span {
    line-height: 1.6;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.rodape-contato a:hover, .rodape-contato li:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.rodape-contato a:hover i, .rodape-contato li:hover i {
    color: #2ecc71;
    transform: scale(1.2);
}

/* REDES SOCIAIS (OPCIONAL) */
.rodape-redes {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.rede-social {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.rede-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    opacity: 0;
    transition: opacity 0.3s;
}

.rede-social i {
    position: relative;
    z-index: 1;
}

.rede-social:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.rede-social:hover::before {
    opacity: 1;
}

/* COPYRIGHT */
.rodape-copy {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 1s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.rodape-copy p {
    margin: 0;
    letter-spacing: 0.5px;
}

.rodape-copy::before {
    content: '❤';
    color: #e74c3c;
    margin-right: 10px;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

/* BOTÃO VOLTAR AO TOPO */
.voltar-topo {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 1.2s;
}

.voltar-topo:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .rodape-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
    }
    
    .rodape-coluna {
        padding: 15px;
    }
    
    .logo-rodape {
        max-width: 180px;
    }
    
    .rodape-coluna h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .rodape {
        padding: 50px 0 25px;
    }
    
    .rodape-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .rodape-coluna h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .rodape-coluna h3:hover::after {
        width: 50px;
    }
    
    .rodape-menu a:hover {
        transform: translateX(0);
    }
    
    .rodape-contato a:hover, .rodape-contato li:hover {
        transform: translateX(0);
    }
    
    .rodape-coluna p {
        text-align: center;
        padding-right: 0;
    }
    
    .rodape-menu a, .rodape-contato a, .rodape-contato li {
        justify-content: center;
        text-align: left;
    }
    
    .voltar-topo {
        right: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .rodape {
        padding: 40px 0 20px;
    }
    
    .rodape-coluna {
        padding: 10px;
    }
    
    .logo-rodape {
        max-width: 150px;
    }
    
    .rodape-coluna h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .rodape-menu li, .rodape-contato li {
        margin-bottom: 15px;
    }
    
    .rodape-menu a, .rodape-contato a, .rodape-contato li {
        padding: 10px 15px;
    }
    
    .rodape-copy {
        font-size: 0.85rem;
    }
    
    .voltar-topo {
        right: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* EFEITOS DE HOVER GLOBAIS */
.rodape a {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ANIMAÇÃO DE BRILHO PARA OS LINKS */
.rodape a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transition: width 0.3s ease;
}

.rodape a:hover::after {
    width: 100%;
}

/* DECORAÇÃO EXTRA */
.rodape .decoracao {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.05) 0%, rgba(46, 204, 113, 0.02) 70%);
    z-index: 0;
}

.rodape .decoracao:nth-child(1) {
    top: -150px;
    left: -150px;
}

.rodape .decoracao:nth-child(2) {
    bottom: -150px;
    right: -150px;
}