/* ===== RESET ===== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #cfcdcd;
    color: #333333;
}

/* ===== TOPO ===== */
.topo {
    background: #08042c;
    color: #fff;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img {
    height: 70px;
    width: auto;
    display: block;
}

/* Menu */
.menu a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

/* HERO HOME COM IMAGEM */
.hero-home {
    background:
        linear-gradient(rgba(73, 67, 67, 0.55), rgba(0,0,0,0.55)),
        url('images/h.jpg') no-repeat center center / cover;
}

/* Conteúdo do hero */
.hero-content {
    max-width: 900px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.3em;
    line-height: 1.6;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-block;
    background: #c9a14a;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.3s;
    text-align: center; 
}

.portfolio-resumo .btn {
    display: block;      
    width: fit-content;   
    margin: 20px auto 0; 
}

.btn:hover {
    background: #b0883e;
}

/* ===== SEÇÕES ===== */
section {
    padding: 50px 30px;
}

/* ===== CARDS ===== */
.cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    padding: 30px;
    flex: 1;
    min-width: 250px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover do card */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(206, 187, 187, 0.2);
}

/* Imagem dentro do card reage junto */
.card img {
    width: 100%;
    height: 200px;
    background: #f0f0f0;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.card:hover img {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 20px rgba(206, 187, 187, 0.25);
    filter: brightness(0.95);
}

/* ===== VALORES ===== */
.valores {
    padding: 60px 30px;
    background: #dad4d4;
    text-align: center;
}

.valores h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
}

.cards-valores {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.card-valor {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    flex: 1 1 250px;
    max-width: 300px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-valor img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.card-valor:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.card-valor:hover img {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    filter: brightness(0.95);
}

.card-valor h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.card-valor p,
.card-valor ul {
    font-size: 1em;
    line-height: 1.6;
}

.card-valor ul {
    padding-left: 20px;
}

.card-valor ul li {
    margin-bottom: 8px;
}

/* ===== GALERIA ===== */
.galeria img {
    width: 30%;
    height: 200px;
    object-fit: cover;
    margin: 1%;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

/* Hover da galeria igual aos cards */
.galeria img:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 20px rgba(206, 187, 187, 0.25);
    filter: brightness(0.95);
}

/* ===== BANNER VALORES ===== */
.banner-valores {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('../images/banner.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.banner-valores h3 {
    font-size: 2em;
    margin-bottom: 15px;
}

.banner-valores p {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px;
}

.banner-valores .btn {
    margin-top: 15px;
}

/* ===== FORM ===== */
form input,
form textarea,
form select {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
}

form button {
    padding: 12px 25px;
    background: #c9a14a;
    color: #fff;
    border: none;
    cursor: pointer;
}

/* ===== RODAPÉ ===== */
.rodape {
    background: #1e1e1e;
    color: #fff;
    text-align: center;
    padding: 25px 15px;
}

.rodape-content h4 {
    margin: 0 0 10px 0;
    font-size: 1em;
    font-weight: 500;
    color: #c9a14a;
}

.rodape-content p {
    margin: 5px 0;
    font-size: 0.9em;
}

.rodape-redes {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.rodape-icon {
    width: 25px;
    height: 25px;
    transition: transform 0.3s, filter 0.3s;
    cursor: pointer;
}

.rodape-icon:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}

@media (max-width: 480px) {
    .rodape-content h4,
    .rodape-content p {
        font-size: 0.85em;
    }

    .rodape-icon {
        width: 25px;
        height: 25px;
    }
}


/* ===== ANIMAÇÃO ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SERVIÇOS INTRO ===== */
.intro-servicos {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: justify;
    font-size: 1.1em;
    line-height: 1.7;
    text-indent: 1.2em;
    hyphens: auto;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.intro-servicos.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== CTA SERVIÇOS ===== */
.cta-servicos {
    margin-top: 60px;
    text-align: center;
}

.cta-servicos h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.cta-servicos p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.2em;
    }

    .hero-content p {
        font-size: 1.1em;
    }

    .card img,
    .card-valor img,
    .galeria img {
        height: 150px;
    }

    .galeria img {
        width: 48%;
    }

    .intro-servicos {
        font-size: 1em;
        line-height: 1.6;
        text-indent: 1em;
    }
}

@media (max-width: 480px) {
    .galeria img {
        width: 100%;
        height: 150px;
    }

    .intro-servicos {
        font-size: 0.95em;
        line-height: 1.5;
        text-indent: 0.8em;
    }
}
.contacto {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 20px;
    background: #f5f5f5;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contacto h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #08042c;
}

.contacto p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #333;
}

.contatos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.contato-item {
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contato-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.contato-item .icon {
    width: 40px;    /* ícone maior para destaque */
    height: 40px;
    margin-right: 12px;
    cursor: pointer;
    transition: transform 0.3s;
}

.contato-item .icon:hover {
    transform: scale(1.1);
}

.contato-item a {
    font-size: 1.2em;
    color: #08042c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    margin-left: 5px;
}

.contato-item a:hover {
    color: #c9a14a;
}

@media (max-width: 768px) {
    .contatos {
        flex-direction: column;
        gap: 20px;
    }
}
