    /* MapaSite Custom Styles */

/* Melhorar a integração da imagem personalizada */
.spotlight .image img {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Ajustar o banner principal */
#banner h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#banner p {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

#banner p strong {
    color: #9bf1ff;
    font-weight: 600;
}

/* Melhorar os ícones principais */
.icons.major li .icon {
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(155, 241, 255, 0.3);
}

.icons.major li .icon.style1 {
    background: linear-gradient(45deg, #6cc04a, #9bf1ff);
}

.icons.major li .icon.style2 {
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
}

.icons.major li .icon.style3 {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
}

/* Melhorar a seção de contato */
#contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

#contact .button.primary {
    background: #25D366;
    border: none;
    font-size: 1.1rem;
    padding: 1rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

#contact .button.primary:hover {
    background: #1DAE51;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

#contact .button.primary i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Melhorar as features */
.features li .icon {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.features li h3 {
    color: #2e3842;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Ajustar o footer */
#footer {
    background: #1a1d23;
}

#footer .icons li a {
    color: #9bf1ff;
    transition: all 0.3s ease;
}

#footer .icons li a:hover {
    color: #ffffff;
    transform: scale(1.1);
}

/* Responsividade melhorada */
@media screen and (max-width: 768px) {
    #banner h2 {
        font-size: 2.5rem;
    }
    
    #banner p {
        font-size: 1.1rem;
    }
    
    .spotlight {
        flex-direction: column;
    }
    
    .spotlight .image {
        margin-bottom: 2rem;
    }
}

/* Animações suaves */
.spotlight .content {
    transition: transform 0.3s ease;
}

.spotlight:hover .content {
    transform: translateX(10px);
}

.features li {
    transition: transform 0.3s ease;
}

.features li:hover {
    transform: translateY(-5px);
}

/* Melhorar a legibilidade */
.wrapper.style1 {
    background: linear-gradient(135deg, #050607 0%, #2c4875 100%);
}

.wrapper.style3 {
    background: linear-gradient(135deg, #343a35 0%, #525f75 100%);
}

/* Destacar informações de contato */
.contact-info p {
    background: rgba(255,255,255,0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    margin: 0.5rem auto;
    display: inline-block;
    backdrop-filter: blur(10px);
}
