/* Estilos Globais */
:root {
    --cor-primaria: #0056a6; /* Azul do logotipo */
    --cor-secundaria: #1e9a3e; /* Verde do logotipo */
    --cor-texto: #333333;
    --cor-fundo: #ffffff;
    --cor-fundo-alternativo: #f5f5f5;
    --fonte-principal: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --espacamento-secao: 80px 0;
    --borda-radius: 5px;
    --sombra-box: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fonte-principal);
    color: var(--cor-texto);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--cor-primaria);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--cor-primaria);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--cor-secundaria);
}

.btn {
    display: inline-block;
    background-color: var(--cor-primaria);
    color: white;
    padding: 12px 25px;
    border-radius: var(--borda-radius);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--cor-secundaria);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

section {
    padding: var(--espacamento-secao);
}

/* Cabeçalho */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--cor-texto);
    font-weight: 500;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--cor-primaria);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

.menu-mobile {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Banner Principal */
.banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 90px;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.banner h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Serviços */
.servicos {
    background-color: var(--cor-fundo-alternativo);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.servico-item {
    background: white;
    padding: 30px;
    border-radius: var(--borda-radius);
    text-align: center;
    box-shadow: var(--sombra-box);
    transition: transform 0.3s ease;
}

.servico-item:hover {
    transform: translateY(-10px);
}

.servico-icon {
    font-size: 3rem;
    color: var(--cor-primaria);
    margin-bottom: 20px;
}

.servico-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Sobre Nós */
.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sobre-texto p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.sobre-imagem .imagem-placeholder {
    background-color: #e9e9e9;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: var(--borda-radius);
}

.imagem-placeholder i {
    font-size: 3rem;
    color: #999;
    margin-bottom: 15px;
}

/* Portfólio */
.portfolio {
    background-color: var(--cor-fundo-alternativo);
}

.portfolio-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--borda-radius);
    box-shadow: var(--sombra-box);
}

.portfolio-item .imagem-placeholder {
    background-color: #e9e9e9;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Contato */
.contato-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contato-info {
    background-color: var(--cor-primaria);
    padding: 40px;
    border-radius: var(--borda-radius);
    color: white;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
}

.contato-form {
    background: white;
    padding: 40px;
    border-radius: var(--borda-radius);
    box-shadow: var(--sombra-box);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--borda-radius);
    font-family: var(--fonte-principal);
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

/* Rodapé */
footer {
    background-color: #222;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-info {
    text-align: center;
}

.footer-social {
    display: flex;
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-left: 15px;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--cor-secundaria);
    transform: translateY(-5px);
}

/* Responsividade */
@media (max-width: 992px) {
    h2 {
        font-size: 2rem;
    }
    
    .banner h1 {
        font-size: 2.8rem;
    }
    
    .sobre-content,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sobre-imagem {
        order: -1;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 90px);
        background-color: white;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 30px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .menu-mobile {
        display: block;
    }
    
    .banner {
        height: 80vh;
        margin-top: 80px;
    }
    
    .banner h1 {
        font-size: 2.2rem;
    }
    
    .banner p {
        font-size: 1rem;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo,
    .footer-info,
    .footer-social {
        margin-bottom: 20px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .banner h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .contato-info,
    .contato-form {
        padding: 25px;
    }
}
/* Estilos para placeholders de imagens */
.imagem-placeholder {
    background-color: #e9e9e9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: var(--borda-radius);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.imagem-placeholder i {
    font-size: 3rem;
    color: #999;
    margin-bottom: 15px;
}

.imagem-placeholder p {
    color: #666;
    font-weight: 500;
}

/* Estilo para indicar onde as imagens serão adicionadas */
.imagem-placeholder:hover {
    background-color: #d9d9d9;
    cursor: pointer;
}

.imagem-placeholder:hover::after {
    content: 'Clique para adicionar imagem';
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--cor-primaria);
}

/* Melhorias para o portfólio */
.portfolio-item {
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Estilo para destacar o slogan */
.slogan-destaque {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cor-primaria);
    text-align: center;
    margin: 30px 0;
    line-height: 1.4;
}

/* Estilo para depoimentos futuros */
.depoimentos {
    background-color: var(--cor-fundo);
    padding: var(--espacamento-secao);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.depoimento-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--borda-radius);
    box-shadow: var(--sombra-box);
    position: relative;
}

.depoimento-item::before {
    content: '\201C';
    font-size: 5rem;
    color: var(--cor-primaria);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 10px;
    line-height: 1;
}

.depoimento-texto {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.depoimento-autor {
    display: flex;
    align-items: center;
}

.depoimento-autor-foto {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e9e9e9;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.depoimento-autor-foto i {
    color: #999;
}

.depoimento-autor-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.depoimento-autor-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}
/* Estilos para o formulário de contato */
.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.mensagem-sucesso {
    background-color: #2ecc71;
    color: white;
    padding: 15px;
    border-radius: var(--borda-radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    animation: slideIn 0.5s ease;
    transition: opacity 0.5s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.mensagem-sucesso i {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Melhorias no botão de envio */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}
/* Melhorias para SEO */
/* Estrutura de dados Schema.org para empresa local */
.schema-org {
    display: none;
}

/* Melhorias de acessibilidade */
:focus {
    outline: 2px solid var(--cor-primaria);
    outline-offset: 2px;
}

/* Melhorias de desempenho */
img {
    max-width: 100%;
    height: auto;
}

/* Melhorias para impressão */
@media print {
    header, footer, .banner, .contato-form, .menu-mobile {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    a {
        text-decoration: none;
        color: #000;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    h2:after {
        display: none;
    }
    
    .servico-item, .sobre-content, .contato-info {
        page-break-inside: avoid;
        box-shadow: none;
    }
}
.whatsapp-button {
    position: fixed;
    bottom: 170px; /* Posicionado acima do botão do Instagram */
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-button i {
    margin-top: 2px;
}
.instagram-button {
    position: fixed;
    bottom: 90px; /* Posicionado abaixo do botão do WhatsApp */
    right: 20px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.instagram-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.instagram-button i {
    margin-top: 2px;
}
