/* === RESET & BASE === */
body { 
    margin: 0;
    padding: 0;
    font-family: Verdana, sans-serif;
    color: #333;
}

/* === LOGO FIXO NO TOPO === */
.lado-esquerdo {
    position: absolute;
    top: 10px;  
    left: 10px; 
    display: flex;
    align-items: center;
    gap: 3px;   
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 3px 8px; 
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); 
}

/* Tamanhos reduzidos */
.logo {
    width: 15px;  
    height: 15px;
}

.titulo-logo {
    font-size: 16px; 
    color: #6a1b9a;
    font-weight: bold;
    margin: 0;
}

.slogan-logo {
    font-size: 8px;  
    font-weight: bold;
    color: #6a1b9a;
    margin: 0;
}

/* === TOPO (BANNER) === */
.topo {
    background-image: url('img/banner-topo.jpg');
    background-size: cover;
    background-position: bottom center;
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
}

.topo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.11);
    z-index: 1;
}

.conteudo-topo {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

/* Caixa de Texto Central */
.lado-direito {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.caixa-texto {
    background-color: rgba(255, 255, 255, 0.568);
    padding: 90px 130px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
    box-shadow: 30px 30px 20px rgba(0, 0, 0, 0.397);
}

.titulo-principal {
    color: #6a1b9a;
    margin-bottom: 20px;
    font-size: 2rem;
}

.botao-wpp {
    background-color: #6a1b9a;
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.botao-wpp:hover {
    background-color: #58117f;
}

.icone-wpp {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* === SEÇÃO SERVIÇOS === */
.secao-servicos {
    background: linear-gradient(to bottom, #f9f4ff, #ffffff);
    padding: 80px 10%;
    text-align: center;
}

.secao-servicos h2 {
    color: #6a1b9a;
    font-size: 2.2rem;
    margin-bottom: 40px;
    position: relative;
}

.secao-servicos h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #6a1b9a;
}

.container-servicos {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* CARDS COM BACKGROUND */
.card-servico {
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 380px;
    box-shadow: 0 10px 30px rgba(106, 27, 154, 0.1);
    transition: all 0.4s ease;
}

/* Overlay para melhor legibilidade */
.card-servico::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(106, 27, 154, 0.7), rgba(106, 27, 154, 0.2));
}

/* Classes específicas para cada imagem de fundo */
.card-banho {
    background-image: url('./img/banho.png');
}

.card-veterinario {
    background-image: url('./img/veterinario.png');
}

.card-dogwalker {
    background-image: url('./img/dog-walker.png');
}

.card-creche {
    background-image: url('./img/creche.png');
}

.card-produtos {
    background-image: url('./img/loja.png');
}

/* Conteúdo de texto */
.texto-servico {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    color: white;
    text-align: left;
    z-index: 2;
}

.texto-servico h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.texto-servico p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Efeitos de hover */
.card-servico:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(106, 27, 154, 0.3);
}

.card-servico:hover::before {
    background: linear-gradient(to top, rgba(106, 27, 154, 0.8), rgba(106, 27, 154, 0.3));
}


/* Responsividade */
@media (max-width: 768px) {
    .container-servicos {
        grid-template-columns: 1fr;
    }
    
    .card-servico {
        height: 300px;
    }
    
    .texto-servico {
        padding: 20px;
    }
}

/* === FAIXAS ROXAS === */
.faixa-roxa {
    background-color: #6a1b9a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.faixa-roxa h2 {
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    padding: 0 25px;
}

.faixa-roxa span {
    color: #f5f5f5;
    text-decoration: underline;
}

.links-redes-sociais {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.links-redes-sociais a {
    transition: all 0.3s ease;
}

.links-redes-sociais img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 0 transparent);
    transition: all 0.3s ease;
}

.links-redes-sociais img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8)) brightness(1.1);
}

/* === SEÇÃO MARCAS === */
.secao-marcas {
    padding: 50px 0;
    text-align: center;
}

.secao-marcas h2 {
    color: #6a1b9a;
    font-size: 2rem;
    text-decoration: underline;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.img-marcas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0 10%;
}

.img-marcas img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.img-marcas img:hover {
    transform: scale(1.05);
}

/* === SEÇÃO MAPA === */
.secao-onde-estamos {
    padding: 60px 10%;
    text-align: center;
    background: linear-gradient(to bottom, #f9f4ff, #ffffff);
    position: relative;
}

/* Container centralizador */
.container-mapa {
    max-width: 800px;
    margin: 0 auto;
}

/* Estilo do mapa */
.secao-onde-estamos iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 20px 30px rgba(106, 27, 154, 0.15);
    margin-bottom: 20px;
}

/* Grupo de localização */
.grupo-localizacao {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Endereço destacado */
.endereco-destaque {
    background: white;
    padding: 12px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Ícone do pin */
.icone-pin {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 8px;
}

/* Botão de rota */
.botao-rota {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #6a1b9a;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
}

.botao-rota:hover {
    background: #58117f;
    transform: translateY(-3px);
}

/* Responsividade */
@media (max-width: 768px) {
    .secao-onde-estamos iframe {
        height: 300px;
    }
    
    .grupo-localizacao {
        flex-direction: column;
    }
    
    .endereco-destaque, 
    .botao-rota {
        width: 100%;
        text-align: center;
    }
}
/* === RODAPÉ === */
/* === GLITCH EFFECT === */
.glitch-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #6a1b9a;
    padding: 20px;
}

.glitch {
    position: relative;
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    animation: glitch 1s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden;
    color: white;
    background: transparent;
    clip: rect(0, 0, 0, 0);
}

.glitch::before {
    animation: glitchTop 1s infinite;
    color: #f0f;
}

.glitch::after {
    animation: glitchBottom 1.5s infinite;
    color: #0ff;
}

@keyframes glitch {
    0% {
        transform: none;
    }
    20% {
        transform: skew(-5deg);
    }
    40% {
        transform: skew(5deg);
    }
    60% {
        transform: skew(-5deg);
    }
    80% {
        transform: skew(5deg);
    }
    100% {
        transform: none;
    }
}

@keyframes glitchTop {
    0% {
        clip: rect(0, 9999px, 0, 0);
    }
    10% {
        clip: rect(0, 9999px, 5px, 0);
        transform: translate(-2px, -2px);
    }
    20% {
        clip: rect(0, 9999px, 0, 0);
    }
}

@keyframes glitchBottom {
    0% {
        clip: rect(0, 9999px, 0, 0);
    }
    10% {
        clip: rect(5px, 9999px, 10px, 0);
        transform: translate(2px, 2px);
    }
    20% {
        clip: rect(0, 9999px, 0, 0);
    }
}

/* === RESPONSIVIDADE (Mobile) === */
@media (max-width: 768px) {
    .lado-esquerdo {
        top: 10px;
        left: 10px;
        padding: 3px 5px;
    }
    
    .titulo-logo {
        font-size: 18px;
    }
    
    .slogan-logo {
        font-size: 7px;
    }

    .caixa-texto {
        padding: 50px 20px;
        margin: 0 20px;
    }

    .titulo-principal {
        font-size: 1.5rem;
    }

    .secao-servicos, .secao-marcas, .secao-onde-estamos {
        padding: 30px 5%;
    }

    .img-marcas {
        gap: 10px;
    }

    .img-marcas img {
        height: 70px;
    }
}
