@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

/* VARIÁVEIS */
:root {
    --bg-color-trans: rgba(255, 252, 247, 0.9);
    --primary: #e67e22;
    --secondary: #6d4c41;
    --text: #2d3436;
    --card-bg: #ffffff;
}

/* RESET E BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    border: 0;
    width: 100%;
}

body { 
    font-family: 'Poppins', sans-serif; 
    color: var(--text); 
    background: #fffcf7; 
    line-height: 1.5; 
}

h1, h2, h3, .logo { font-family: 'Fredoka', sans-serif; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* BACKGROUND SLIDER */
.background-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-color: #40958d;
}

.background-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 10;
    min-height: 100vh;
}

/* HEADER & NAV */
header { 
    background: rgba(255,255,255,0.95); 
    padding: 1rem 0; 
    position: sticky; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    margin-top: 0; 
}

nav { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 1.8rem; color: var(--secondary); font-weight: bold; }
.logo span { color: var(--primary); }

.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { text-decoration: none; color: var(--secondary); font-weight: 500; cursor: pointer; }

/* HERO & BREED CARDS */
.hero { background: var(--bg-color-trans); padding: 60px 20px; text-align: center; border-radius: 30px; margin: 30px 0; }

.breed-selector { display: flex; gap: 20px; margin-bottom: 50px; }

.breed-card { 
    flex: 1; 
    background: #fff; 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    cursor: pointer; 
    border: 3px solid #fff; 
    transition: 0.3s; 
}

.breed-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.breed-card img { width: 100%; height: 300px; object-fit: cover; }
.breed-card .info { padding: 20px; text-align: center; }

/* SOBRE */
.about-section { background: var(--bg-color-trans); padding: 50px; border-radius: 30px; text-align: center; margin-bottom: 50px; }
.about-icons { display: flex; justify-content: center; gap: 30px; margin-top: 20px; color: var(--primary); font-size: 1.1rem; }

/* MODAL DE CONTATO */
.modal { display: none; position: fixed; z-index: 2000; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); }

.modal-content { 
    background: #fff; 
    margin: 15% auto; 
    padding: 40px; 
    border-radius: 25px; 
    width: 90%; 
    max-width: 400px; 
    position: relative; 
    text-align: center; 
    border: 3px solid var(--primary); 
}

.close-btn { position: absolute; right: 20px; top: 10px; font-size: 25px; cursor: pointer; }

.contact-item { 
    margin: 18px 0; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
}

.contact-item i {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

/* LINKS CLICÁVEIS NO MODAL */
.link-clicavel {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.link-clicavel:hover {
    color: var(--primary);
    transform: scale(1.05);
}

/* CORES DOS ÍCONES */
.fa-whatsapp { color: #25D366; }
.fa-envelope { color: #EA4335; }
.fa-map-marker-alt { color: var(--secondary); }

.fa-instagram {
    background: -webkit-linear-gradient(#f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* INDICADOR DE CLIQUE ANIMADO */
.click-indicator {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-brilha 2s infinite;
    /* Estilo Dourado Poms de Luz */
    background: rgba(241, 196, 15, 0.15);
    border: 1px solid rgba(241, 196, 15, 0.4);
    color: #f1c40f;
}

@keyframes pulse-brilha {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(241, 196, 15, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 10px 5px rgba(241, 196, 15, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(241, 196, 15, 0); }
}

/* WHATSAPP FLOAT - VERSÃO PREMIUM */
.whatsapp-float { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    background-color: #25d366; 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    z-index: 1000; 
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); 
    transition: all 0.3s ease;
}

/* ESTA É A LINHA QUE RESOLVE O "CAMUFLADO" */
.whatsapp-float i {
    color: #ffffff !important; /* Branco puro e obrigatório */
    font-size: 32px;
    margin: 0;
    padding: 0;
}

.whatsapp-float:hover {
    transform: scale(1.1); 
    background-color: #1ebe57; 
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Efeito de Pulso */
.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: zap-pulse 2s infinite;
    z-index: -1;
}

@keyframes zap-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* PÁGINA DE DETALHES */
.detail-page {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.detail-page h1 {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 30px;
    border-bottom: 3px dashed var(--primary);
    padding-bottom: 15px;
    display: inline-block;
}

.btn-back {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-back:hover { background: var(--primary); transform: translateX(-5px); }

/* GALERIA */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
    border: 5px solid white;
}

.gallery-item:hover { transform: scale(1.03); box-shadow: 0 8px 25px rgba(230, 126, 34, 0.2); }

/* FOOTER */
footer {
    background: var(--secondary);
    color: white;
    padding: 40px 0;
    margin-top: 50px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0.8;
}

/* ANIMAÇÕES */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}