/* =============================================
Pet Paris - Estilos Customizados
Tema WordPress: Pet Paris
============================================= */

:root {
    --primary-blue: #001e62; /* Azul Marinho da Logo */
    --primary-red: #ed1c24;  /* Vermelho da Logo */
    --white: #ffffff;
    --light-gray: #f4f4f4;
    
    /* Backgrounds solicitados */
    --bg-gradient-hero: linear-gradient(rgba(0, 30, 98, 0.85), rgba(0, 30, 98, 0.85)), url('../images/hotel.jpeg');
    --bg-paws: url('../images/patas_fundo.png');
}

body {
    font-family: 'Ruda', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Utilitários de Seção */
section {
    padding: 80px 0;
    position: relative;
}

/* Estilos de Alternância de Background */
.section-gradient {
    background: var(--bg-gradient-hero);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.section-paws {
    background-color: var(--white);
    background-image: var(--bg-paws);
    background-repeat: repeat;
    background-size: 200px; /* Ajuste conforme o tamanho da imagem de patinhas */
}

.section-title {
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: inherit;
}

.section-paws .section-title { color: var(--primary-blue); }

.section-patas {
    position: relative;
    color: var(--white);
    transition: background 0.3s, border-radius 0.3s;
}

.section-patas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 30, 98, 0.85);
    background-image: url('../images/patas_fundo.png');
    background-size: cover;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.section-patas > * {
    position: relative;
    z-index: 1;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.navbar-brand {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.navbar-brand img {
    max-height: 90px;
}
.nav-link {
    font-weight: 700;
    color: var(--primary-blue) !important;
    text-transform: uppercase;
    margin: 0 10px;
}
.nav-link:hover { color: var(--primary-red) !important; }

/* Botões */
.btn-paris {
    background-color: var(--primary-red);
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 900;
    text-transform: uppercase;
    border: none;
    transition: transform 0.2s, background 0.3s;
}
.btn-paris:hover {
    background-color: #c41217;
    color: white;
    transform: scale(1.05);
}

/* Botão WhatsApp */
.btn-whatsapp {
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 900;
    text-transform: uppercase;
    border: none;
    transition: transform 0.2s, background 0.3s;
}
.btn-whatsapp:hover {
    background-color: #1da851;
    color: white;
    transform: scale(1.05);
}

/* Hero (Section 1) */
.hero {
    padding: 120px 0;
    text-align: left;
}
.hero h1 { font-size: 3.5rem; line-height: 1.1; }
.hero h2 { font-size: 1.5rem; opacity: 0.9; margin: 20px 0 40px; }

/* Imagens (Geral) - Adicionado Efeito de Animação */
.img-rounded {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.img-rounded:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* Container de imagem para evitar que o zoom quebre o layout */
.img-container {
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
}

/* Cards de Especialidades (Section 4) */
.spec-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    border-bottom: 5px solid var(--primary-red);
    height: 100%;
    transition: transform 0.3s;
}
.spec-card:hover { transform: translateY(-5px); }
.spec-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* Contato/Mapa (Section 7) */
.contact-box {
    background: var(--primary-blue);
    color: white;
    padding: 40px;
    border-radius: 20px;
}
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

/* Footer */
footer {
    background: #eee;
    padding: 50px 0 20px;
}
.footer-highlight {
    background: var(--white);
    border-left: 6px solid var(--primary-red);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    font-weight: 500;
    color: var(--primary-blue);
}
.footer-logo {
    max-height: 80px;
}
.footer-logo-white {
    background: white;
    padding: 10px;
    border-radius: 10px;
}
.feyth-logo {
    max-height: 30px;
    transition: transform 0.3s, opacity 0.3s;
}
.feyth-link {
    display: inline-block;
    text-decoration: none;
}
.feyth-link:hover .feyth-logo {
    transform: scale(1.05);
    opacity: 0.8;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    section { padding: 60px 0; }
}
