/* Estilos Gerais */
:root {
    --primary-color: #f7b500;
    --secondary-color: #333;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-color: #f4f4f4;
    --dark-color: #222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4 {
    margin-bottom: 15px;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 25px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

section {
    padding: 80px 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.btn-contato, .btn-whatsapp {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-align: center;
}

.btn-contato {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-contato:hover, .btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    background-color: var(--dark-color);
    color: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Menu Desktop */
.menu-desktop {
    display: flex;
    align-items: center;
}

.menu-desktop ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-desktop li {
    margin: 0 15px;
}

.menu-desktop a {
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
}

.menu-desktop a:hover {
    color: var(--primary-color);
}

.menu-desktop a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.menu-desktop a:hover::after {
    width: 100%;
}

.contato-header {
    display: flex;
    align-items: center;
}

.telefone {
    margin-right: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.telefone i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Botão WhatsApp Mobile */
.mobile-whatsapp {
    display: none;
}

.btn-whatsapp-mobile {
    background-color: #25D366;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-whatsapp-mobile:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.desktop-only {
    display: flex;
}

.btn-whatsapp-header {
    background-color: #25D366;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.btn-whatsapp-header:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

/* Banner */
.banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 180px 0 100px;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.banner h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.banner-image {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Emergência */
.emergencia {
    background-color: var(--primary-color);
    color: var(--dark-color);
    text-align: center;
    padding: 50px 0;
}

.experiencia {
    margin-top: 30px;
}

.anos span {
    font-size: 4rem;
    font-weight: 700;
    display: block;
}

/* Quem Somos */
.quem-somos {
    text-align: center;
    background-color: var(--light-color);
}

.servicos-tipos {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.tipo {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 300px;
}

.tipo:hover {
    transform: translateY(-10px);
}

.tipo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tipo span {
    display: block;
    padding: 15px;
    font-weight: 600;
    color: var(--dark-color);
    background-color: var(--primary-color);
}

/* Diferenciais */
.diferenciais {
    background-color: white;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.diferencial {
    text-align: center;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.diferencial:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.diferencial i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.diferencial h3 {
    font-size: 1.5rem;
}

/* Serviços */
.servicos {
    background-color: var(--light-color);
    text-align: center;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.servico {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.servico:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.servico img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.servico i {
    font-size: 3rem;
    color: var(--primary-color);
    margin: 20px 0;
}

.servico h3 {
    font-size: 1.5rem;
    padding: 0 15px;
}

.servico p {
    padding: 0 15px 20px;
}

/* Processo */
.processo {
    text-align: center;
}

.etapas {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.etapa {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.numero {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Depoimentos */
.depoimentos {
    background-color: var(--light-color);
    text-align: center;
}

.depoimentos-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.depoimentos-slider::-webkit-scrollbar {
    display: none;
}

.depoimento {
    flex: 0 0 300px;
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    scroll-snap-align: start;
}

.estrelas {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cliente {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nome {
    font-weight: 600;
}

.data {
    color: #777;
    font-size: 0.9rem;
}

/* Emergência Contato */
.emergencia-contato {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
}

.horarios {
    margin: 40px 0;
}

.horario {
    display: flex;
    justify-content: space-between;
    max-width: 400px;
    margin: 0 auto;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.telefone-grande {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin: 20px 0;
}

/* Contato */
.contato {
    text-align: center;
}

.contato-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.info {
    flex: 1;
    min-width: 250px;
    padding: 20px;
}

.info i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo, .footer-links, .footer-contato {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo h2 {
    color: var(--primary-color);
    text-align: left;
}

.footer-logo h2:after {
    left: 0;
    transform: none;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contato p {
    margin-bottom: 10px;
}

.footer-contato i {
    color: var(--primary-color);
    margin-right: 10px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.desenvolvido-por {
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.8;
}

.desenvolvido-por a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.desenvolvido-por a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-legal {
    margin-top: 15px;
    font-size: 0.9rem;
}

.footer-legal a {
    color: #ccc;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Botão flutuante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    background-color: #128C7E;
}

/* Responsividade */
@media (max-width: 992px) {
    h2 {
        font-size: 2.2rem;
    }
    
    h3 {
        font-size: 1.6rem;
    }
    
    .banner h2 {
        font-size: 2.5rem;
    }
    
    /* Ajustar menu para telas médias */
    .menu-desktop li {
        margin: 0 10px;
    }
    
    .menu-desktop a {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    header .container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo {
        margin-bottom: 0;
    }
    
    /* Ocultar menu desktop e contato em mobile */
    .menu-desktop, .desktop-only {
        display: none;
    }
    
    /* Mostrar botão WhatsApp mobile */
    .mobile-whatsapp {
        display: block;
    }
    
    .banner {
        padding: 150px 0 60px;
    }
    
    .banner h2 {
        font-size: 2rem;
    }
    
    .banner p {
        font-size: 1rem;
    }
    
    .anos span {
        font-size: 3rem;
    }
    
    .etapas {
        flex-direction: column;
    }
    
    .depoimento {
        flex: 0 0 85%;
    }
    
    .telefone-grande {
        font-size: 2rem;
    }
    
    .footer-logo h2 {
        text-align: center;
    }
    
    .footer-logo h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .banner {
        padding: 130px 0 50px;
    }
    
    .banner h2 {
        font-size: 1.8rem;
    }
    
    .btn-contato, .btn-whatsapp {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .btn-whatsapp-header {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .anos span {
        font-size: 2.5rem;
    }
    
    .depoimento {
        flex: 0 0 100%;
        padding: 20px;
    }
    
    .telefone-grande {
        font-size: 1.8rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}/* E
stilos para páginas legais (Termos de Uso e Política de Privacidade) */
.pagina-legal {
    padding-top: 150px;
    padding-bottom: 80px;
}

.pagina-legal h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-align: center;
}

.ultima-atualizacao {
    text-align: center;
    color: #777;
    margin-bottom: 40px;
    font-style: italic;
}

.conteudo-legal {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.conteudo-legal h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: left;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.conteudo-legal h2:after {
    display: none;
}

.conteudo-legal p {
    margin-bottom: 20px;
}

.conteudo-legal ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.conteudo-legal ul li {
    margin-bottom: 10px;
}

.conteudo-legal strong {
    font-weight: 700;
}

@media (max-width: 768px) {
    .pagina-legal {
        padding-top: 120px;
    }
    
    .pagina-legal h1 {
        font-size: 2rem;
    }
    
    .conteudo-legal h2 {
        font-size: 1.5rem;
    }
}