/* --- RESET E VARIÁVEIS --- */
:root {
    --bg-color: #fafaf9; /* stone-50 */
    --text-main: #292524; /* stone-800 */
    --text-muted: #78716c; /* stone-500 */
    --primary: #f59e0b; /* amber-500 */
    --primary-hover: #d97706; /* amber-600 */
    --primary-dark: #78350f; /* amber-900 */
    --light-amber: #fef3c7; /* amber-100 */
    --success: #10b981; /* emerald-500 */
}

/* Configuração suave para rolar a página ao clicar nos links internos */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Poppins', serif;
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HERO SECTION (CABEÇALHO) --- */
.hero {
    position: relative;
    background-color: var(--primary-dark);
    color: white;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    min-height: 80vh;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
}

.badge {
    background-color: var(--primary-hover);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.1rem;
    color: #e7e5e4;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* --- BENEFÍCIOS --- */
.benefits {
    padding: 80px 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border: 1px solid #f5f5f4;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.icon-box {
    background-color: var(--light-amber);
    color: var(--primary-hover);
    padding: 12px;
    border-radius: 12px;
    font-size: 1.2rem;
}

.benefit-text h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.benefit-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- FILHOTES --- */
.puppies-section {
    background-color: #f5f5f4;
    padding: 80px 20px;
    border-top: 1px solid #e7e5e4;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--text-main);
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.puppies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1150px;
    margin: 0 auto;
}

.puppy-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid #e7e5e4;
    transition: box-shadow 0.3s;
}

.puppy-card:hover {
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}

.puppy-img-container {
    position: relative;
    height: 250px;
    background-color: #e7e5e4;
}

.puppy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-badge {
    position: absolute;
    top: 16px; left: 16px;
    background-color: var(--success);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.puppy-info {
    padding: 24px;
}

.puppy-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.puppy-type {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.puppy-type i {
    color: var(--primary-hover);
}

.puppy-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f5f5f4;
}

.puppy-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.btn-secondary {
    display: inline-block;
    text-decoration: none;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* --- FAQ (ACCORDION) --- */
.faq-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border: 1px solid #e7e5e4;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 600;
}

.faq-question i.fa-chevron-down {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.4s ease-out, padding 0.4s ease-out; 
    background-color: #fafaf9; 
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 24px;
}

/* Classes controladas pelo jQuery */
.faq-item.accordion-open {
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.1);
}

.faq-item.accordion-open .faq-answer { 
    max-height: 200px; 
    padding-bottom: 20px; 
}

.faq-item.accordion-open i.fa-chevron-down { 
    transform: rotate(180deg); 
}

/* --- BOTÃO FLUTUANTE WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366; /* Verde oficial do WhatsApp */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Animação de pulso */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
/* --- BOTÕES DO HERO (LADO A LADO) --- */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap; /* Garante que não quebre em telas pequenas */
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary-dark);
}

/* --- RODAPÉ (FOOTER) --- */
.site-footer {
    background-color: var(--primary-dark);
    color: #e7e5e4;
    padding: 40px 20px;
    text-align: center;
    border-top: 4px solid var(--primary);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.social-links a {
    color: white;
    font-size: 2rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-5px); /* Dá um pulinho suave ao passar o mouse */
}
/* Responsividade Básica (Telas Mobile) */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}