/* =============================================
   style.css - Estilos comunes para Doggy Day Care
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500;600&display=swap');

:root {
    --primary: #10b981;     /* Emerald */
    --primary-dark: #047857;
    --text-dark: #064e3b;
    --bg-light: #f8f5f0;
}
h3 { text-align: center;}
/* Tipografía general */
body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--bg-light);
}

.heading {
    font-family: 'Playfair Display', sans-serif;
}

/* Navbar */
nav {
    background-color: white;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    color: #4a5524;
}

nav .logo-img {
    width: 4.5rem;      /* Logo grande */
    height: 4.5rem;
    object-fit: contain;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Tarjetas */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(16 185 129 / 0.15), 
                0 8px 10px -6px rgb(16 185 129 / 0.15);
}

/* Botón WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 50;
    animation: pulse 2s infinite;
}
/*verde amarillo oscuro*/
#verdefeo{
    color:#4a5524
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Utilidades */
.text-primary { color: var(--primary); }
.bg-primary { background-color: var(--primary); }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }
}