/* \\192.168.18.39\excelecer_dev2\public_html\assets\css\style-img-hero-bg.css */

/* Background fixo */
.hero-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: -1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hero-bg.png');
    background-image: url('../img/Excelecer-asa-3.png');
    background-repeat: repeat;
    background-size: auto;
    background-position: center center;
    z-index: 1;
    opacity: 0.9;
}

/* Container principal para o conteúdo */
.content-wrapper {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Estilo para o main */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    gap: 2rem;
    width: 100%;
}

/* Estilo para os conteúdos hero */
.hero-content {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.page-header {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto;
}

/* Estilos para botões */
.btn-primary {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary:hover::before {
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
}

/* Footer ajustado */
.main-footer {
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    margin-top: auto;
    padding: 40px 0;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
    text-align: center;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Efeitos para o footer */
.main-footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
              transparent, 
              rgba(255, 255, 255, 0.4), 
              transparent);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.admin-contacts {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 12px;
    margin: 30px auto;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2),
                inset 0 0 10px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.admin-contacts:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3),
                inset 0 0 15px rgba(255, 255, 255, 0.1);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.contact-list a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-list a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-icon {
    width: 30px;
    height: auto;
    margin: 30px auto;
    display: block;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-icon:hover {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.9));
    opacity: 1;
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        width: 95%;
        padding: 1.5rem;
    }
    
    main {
        padding: 1rem 0;
        gap: 1.5rem;
    }
    
    .contact-list {
        gap: 15px;
        flex-direction: column;
    }
    
    .admin-contacts {
        margin: 20px auto;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .page-header h2 {
        font-size: 1.5rem;
    }
}