body{

    background:#e2e8f0;  /* mais contraste */
    color:#1e293b;
}

.hero {
    text-align: center;
    padding: 120px 20px;
    background: radial-gradient(circle at top, #334155, #0f172a);
    color: white;
    position: relative;
    height: 40dvh;

    display: flex;
    justify-content: space-around;
    align-items: center;
}

/* Mantendo sua divisão */
.heroLeft, .heroRight {
    width: 40%;
}

/* Lado esquerdo */
.heroLeft h1 {
    font-size: 2.5em;
    font-weight: 500;
}

.heroLeft p {
    font-size: 5em;
    font-weight: bold;
    text-transform: uppercase;
    color: #3b82f6;
}

/* Lado direito */
.heroRight {
    font-size: 1.2em;
    text-align: center;
}

.heroRight p {
    margin-bottom: 20px;
    color: #cbd5f5;
}

.heroRight span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.3em;
    color: white;
}

/* Botão */
.btn.big {
    padding: 12px 28px;
    font-size: 1em;
    border-radius: 8px;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.btn.big:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* SOBRE NÓS */
#aboutUs{
    padding: 60px 20px;
    background: #f8fafc;
}

/* Título */
#aboutUs h1{
    font-size: 3em;
    text-align: center;
    margin-bottom: 15px;
    color: #0f172a;
}

#aboutUs p{
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: #475569;
    font-size: 1.2em;
}

/* Container dos cards */
.card-body{
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Card */
.card{
    width: 300px;
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover */
.card:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Linha destaque no topo */
.card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

/* Cores por tipo */
.card.user::before{
    background: #3b82f6;
}

.card.analist::before{
    background: #3b82f6;;
}

.card.admin::before{
    background: #3b82f6;;
}

/* Título do card */
.card h3{
    text-align: center;
    font-size: 1.6em;
    margin-bottom: 20px;
    color: #0f172a;
}

/* Lista */
.card ul{
    list-style: none;
    padding: 0;
}

.card ul li{
    padding: 12px 0;
    font-size: 1.1em;
    color: #334155;
    border-bottom: 1px solid #e2e8f0;
}

.card ul li:last-child{
    border-bottom: none;
}

/* Links */
.card ul li a{
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.card ul li a:hover{
    text-decoration: underline;
}

/* Sugestão */
.sugestao{
    margin-top: 50px;
    text-align: center;
}

.sugestao h6{
    font-size: 1em;
    color: #64748b;
}

.sugestao a{
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #0f172a;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.sugestao a:hover{
    background: #1e293b;
}

/* ADMIN DIV */
.album{
    width: 100%;
    margin-top: 80px;
    padding: 0 40px;
}


.album img:hover{
    cursor: pointer;
}

.albumHeader{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 50px;
}

.albumHeader h1{
    font-size: 2.2rem;
    color: white;
    font-weight: 700;
}

.albumHeader a{
    text-decoration: none;
    background: #3b82f6;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
}

.albumHeader a:hover{
    background: #2563eb;
    transform: translateY(-2px);
}

/* BODY */
.albumBody{
    width: 100%;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* ESQUERDA */
.albumLeft{
    width: 50%;
    background: #0f172a;;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.albumLeft img{
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.albumLeft p{
    font-size: 1rem;
    line-height: 1.6;
}

/* DIREITA */
.albumRight{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CARDS */
.cardAlbum{
    display: flex;
    align-items: center;
    gap: 20px;
    background: #0f172a;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.25s;
}

.cardAlbum:hover{
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.cardAlbum img{
    width: 400px; /* maior base */
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.cardAlbum p{
    font-size: 0.95rem;
    line-height: 1.5;
}


.cardAlbum{
    display: flex;
    align-items: center;
    gap: 20px;
}



.cardAlbum .textAlbum, .albumLeft .textAlbum{
    color: white;
    font-weight: bold;
}


/* ANIMAÇÃO PARA ABRIR IMG */

.overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;

    transition: background 0.25s ease;
}

.overlay img{
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;

    opacity: 0;
    transform: scale(0.95);
    transition: all 0.25s ease;
}

/* estado ativo */
.overlay.show{
    background: rgba(0,0,0,0.75);
}

.overlay.show img{
    opacity: 1;
    transform: scale(1);
}




/* SERVICES */

#services {
    padding: 80px 20px;
    background: radial-gradient( #1e293b, #0f172a);
    color: #e2e8f0;
    text-align: center;
}

#services h1 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #f8fafc;
}

/* GRID DOS CARDS */
.cardServ-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

/* CARD */
.cardServ {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

/* efeito hover */
.cardServ:hover {
    transform: translateY(-6px);
    border-color: #3b82f6;
}

/* destaque no topo */
.cardServ::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #3b82f6, #22c55e);
}

/* TEXTO */
.cardServ p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 🔥 DESTAQUE PRINCIPAL */
.cardServ span {
    display: inline-block;
    margin: 8px 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    padding: 4px 10px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* FUTURAS ADIÇÕES */
.cardFuture {
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    padding: 20px;
    margin: 20px auto;
    max-width: 700px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.08);
}

.cardFuture h3 {
    margin-bottom: 10px;
    color: #38bdf8;
}

.cardFuture ul {
    padding-left: 18px;
}

.cardFuture li {
    margin-bottom: 6px;
}


/* CONTATOS */
#contact {
    padding: 100px 20px;
    background: radial-gradient( #1e293b, #0f172a);
    color: #e2e8f0;
    display: flex;
    justify-content: center;
}

/* Container geral */
.contact-container {
    width: 100%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

#form-status {
  margin-top: 10px;
  font-weight: 600;
}

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #f8fafc;
}

.contact-header p {
    font-size: 0.95rem;
    color: #94a3b8;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Grupo de campos */
.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: #cbd5f5;
}

/* Inputs */
.form-group input,
.form-group textarea {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(15, 23, 42, 0.6);
    color: #f1f5f9;
    outline: none;
    transition: 0.2s ease;
    font-size: 0.9rem;
}

/* Focus bonito */
.form-group input:focus,
.form-group textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59,130,246,0.25);
}

/* Placeholder */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

/* Botão */
.btn-submit {
    margin-top: 10px;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.25s ease;
}

/* Hover do botão */
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59,130,246,0.4);
}

/* Extra contato */
.contact-extra {
    margin-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
}

.contact-options {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-options span {
    background: rgba(255,255,255,0.05);
    padding: 8px 14px;
    border-radius: 8px;
}

/* Responsivo */
@media (max-width: 600px) {
    .contact-container {
        padding: 25px;
    }

    .contact-header h1 {
        font-size: 1.7rem;
    }
}




/* ================= MOBILE FIRST AJUSTES ================= */

@media (max-width: 920px){


    /* HERO */
    .hero{
        padding:60px 20px;
        flex-direction: column;
        height: auto;
    }
    .heroLeft, .heroRight{
        width: 100%;
    }
    .heroLeft h1{
        font-size: 1.8em;
        
    }
    .heroLeft p{
        font-size: 2.6em;
        text-align: center;
    }


    #aboutUs{
        width: 100%;
        margin: auto;
        padding: 0;
        gap: 0;
        margin-top: 20px;
    }

    #aboutUs p{
        width: 100%;
    }

    .album{
        width: 100%;
        padding: 0;
        gap: 0;
        margin: 0;
        margin-top: 20px;
        
    }
    .albumHeader{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .albumBody{
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        background: #0f172a;
    }
    
    .albumLeft, .albumRight, .cardAlbum{
        width: 100%;
        padding: 0;
        gap: 0;
        margin: auto;
    }
    .cardAlbum{
        margin-bottom: 20px;
    }
    .albumLeft img, .cardAlbum img{
        width: 100%;
        /* height: 22vh; */
      
    }
    
    .cardAlbum{

        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
    }
   
   
    .overlay.show img{
    opacity: 1;
    transform: scale(1.2);
}



}



/* ================= TELAS MUITO PEQUENAS ================= */

@media (max-width: 400px){

    .hero h1{
        font-size:1.5rem;
    }

  
}

*{
    scroll-behavior:smooth;
}



