* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #111;
    color: white;
    overflow-x: hidden;
}

/* MENU */

.navbar {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 25px 60px;

    z-index: 100;

}

.logo h1 {

    color: white;

    font-size: 30px;

}

.nav-links {

    display: flex;

    list-style: none;

}

.nav-links li {

    margin-left: 30px;

}

.nav-links a {

    color: white;

    text-decoration: none;

    font-size: 18px;

    transition: .3s;

}

.nav-links a:hover {

    color: #d4af37;

}


/* HERO */

.hero {

    height: 100vh;

    background: url("./img/foto2.jpg");

    background-size: cover;

    background-position: center;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 20px;

}

.overlay {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, .65);

}

.hero-conteudo {

    position: relative;

    z-index: 2;

    max-width: 900px;

    margin: auto;

    color: white;

}

.topo {

    background: #d4af37;

    padding: 10px 20px;

    border-radius: 30px;

    display: inline-block;

    margin-bottom: 25px;

    color: black;

    font-weight: bold;

}

.hero h1 {

    font-size: 60px;

    margin-bottom: 20px;

    line-height: 1.2;

}

.hero p {

    font-size: 22px;

    margin-bottom: 30px;

}

.beneficios {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin-bottom: 35px;

}

.item {

    background: rgba(255, 255, 255, .1);

    padding: 15px;

    border-radius: 15px;

    backdrop-filter: blur(8px);

}

.btn {

    display: inline-block;

    background: #25D366;

    padding: 18px 35px;

    color: white;

    text-decoration: none;

    border-radius: 50px;

    font-weight: bold;

    font-size: 20px;

}

/* DEPOIMENTOS */

.secao-depoimentos {

    padding: 20px 0px;

    text-align: center;

}

.container-depoimentos {

    display: flex;

    justify-content: center;

    gap: 30px;

    flex-wrap: wrap;

}
.titulo-depoimentos{

font-size:40px;

margin-bottom:40px;

}

.cartao-depoimento{

width:220px;

padding:15px;

background:#797876;

border-radius:20px;

text-align:center;

}
/* celular - depoimentos */
/* FOTO CLIENTE */

.foto-cliente{

width:100px;

height:100px;

border-radius:50%;

object-fit:cover;

display:block;

margin:0 auto 10px;

}

/* CELULAR */

/* ========== CORREÇÕES PARA CELULAR ========== */
@media (max-width: 768px) {
    /* MENU RESPONSIVO */
    .navbar {
        flex-direction: column;
        padding: 20px 20px;
        background: rgba(0, 0, 0, 0.8);
        position: fixed;
        top: 0;
    }

    .logo h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-links li {
        margin-left: 0;
    }

    .nav-links a {
        font-size: 14px;
    }

    /* HERO - AJUSTE PARA TELA PEQUENA */
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .topo {
        font-size: 12px;
        padding: 6px 15px;
    }

    /* BENEFÍCIOS - UMA COLUNA NO CELULAR */
    .beneficios {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .item {
        padding: 12px;
        font-size: 14px;
    }

    .btn {
        padding: 14px 25px;
        font-size: 18px;
    }

    /* AJUSTE GERAL DO CONTEÚDO HERO */
    .hero-conteudo {
        padding: 0 15px;
    }
}

/* Para telas MUITO pequenas (celulares antigos) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 14px;
    }

    .navbar {
        padding: 15px;
    }

    .logo h1 {
        font-size: 20px;
    }
}
/* ========== RODAPÉ COM ÍCONES ========== */
footer {
    background: #111;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-social a {
    color: white;
    font-size: 28px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-social a:hover {
    color: #d4af37;
    transform: scale(1.1);
}

/* Responsivo para celular */
@media (max-width: 768px) {
    .footer-social {
        gap: 25px;
    }
    
    .footer-social a {
        font-size: 32px;
    }
}
/* ========== RODAPÉ AJUSTADO ========== */
footer {
    background: #111;
    padding: 40px 20px 30px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Informações do rodapé */
.footer-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.footer-coluna {
    flex: 1;
    min-width: 180px;
}

.footer-coluna h3 {
    color: #d4af37;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-coluna p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.footer-coluna a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-coluna a:hover {
    color: #d4af37;
}

/* Ícones sociais */
.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.footer-social a {
    color: white;
    font-size: 22px;
    transition: all 0.3s;
}

.footer-social a:hover {
    color: #d4af37;
    transform: scale(1.1);
}

/* Copyright */
.footer-copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 12px;
}

/* Versão celular */
@media (max-width: 768px) {
    footer {
        padding: 30px 20px 20px;
    }
    
    .footer-info {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .footer-coluna {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-coluna h3 {
        font-size: 16px;
    }
    
    .footer-coluna p,
    .footer-coluna a {
        font-size: 13px;
    }
}
/* ========== PÁGINA DE CONTATO ========== */
.contato-section {
    padding: 120px 20px 60px;
    background: #111;
    min-height: 100vh;
}

.contato-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 40px;
}

.contato-info {
    flex: 1;
    min-width: 280px;
}

.topo-contato {
    background: #d4af37;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: bold;
    color: black;
    display: inline-block;
    margin-bottom: 15px;
}

.contato-info h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: white;
}

.subtitulo {
    color: #d4af37;
    margin-bottom: 30px;
    font-size: 14px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #d4af37;
}

.info-item strong {
    display: block;
    font-size: 14px;
    color: #d4af37;
}

.info-item p {
    font-size: 14px;
    color: #ccc;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    padding: 12px 25px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.contato-form {
    flex: 1;
    min-width: 280px;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 20px;
}

.contato-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #d4af37;
}

.contato-form input,
.contato-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 14px;
}

.contato-form input:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.btn-enviar {
    width: 100%;
    padding: 14px;
    background: #d4af37;
    border: none;
    border-radius: 50px;
    color: black;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
}

.btn-enviar:hover {
    background: #c4a02e;
}

@media (max-width: 768px) {
    .contato-section {
        padding: 100px 15px 40px;
    }
    
    .contato-container {
        padding: 20px;
        flex-direction: column;
    }
    
    .contato-info h2 {
        font-size: 24px;
    }
}
.estrelas {
    color: #FFD700;
    font-size: 18px;
    letter-spacing: 2px;
    margin: 10px 0;
}
/* ========== AJUSTE DA PÁGINA DE SERVIÇOS (SEM QUEBRAR) ========== */

/* Título principal */
.servicos-section h1 {
    font-size: 48px;
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

/* Container dos cards */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cada card de serviço */
.servico-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.servico-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

/* Ícone/emoji */
.servico-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

/* Título do card */
.servico-card h3 {
    font-size: 24px;
    color: #d4af37;
    margin-bottom: 15px;
}

/* Descrição */
.servico-card p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
}

/* Botão do card */
.servico-btn {
    display: inline-block;
    margin-top: 20px;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
}

.servico-btn:hover {
    background: #128C7E;
}

/* Responsivo celular */
@media (max-width: 768px) {
    .servicos-section h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .servico-card {
        padding: 25px 15px;
    }
    
    .servico-card h3 {
        font-size: 20px;
    }
}
/* Adicione no style do servicos.html */
body {
    background: #111;  /* Muda para preto igual as outras páginas */
}

.menu {
    background: #111;
    border-bottom: 1px solid #d4af37;
}

.menu a:hover {
    color: #d4af37;
}

/* Cards de serviços mais bonitos */
div[style*="grid-template-columns: 1fr 1fr"] div {
    transition: transform 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

div[style*="grid-template-columns: 1fr 1fr"] div:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

div[style*="grid-template-columns: 1fr 1fr"] h3 {
    color: #d4af37;
    margin-bottom: 10px;
}
