<!DOCTYPE html> Home Safe Home - Capacitación en Seguridad Infantil
<meta name="description" content="Capacitación y asesoría en seguridad infantil para familias y cuidadores. Certificaciones oficiales y consultorías personalizadas."/>

<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&amp;family=Montserrat:wght@400;500;600&amp;display=swap" rel="stylesheet"/>

<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>

<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"/>

<!-- Custom Styles -->
<style>
    :root {
        --primary-blue: #2E5A88;
        --secondary-yellow: #FFD700;
        --text-dark: #333333;
        --bg-light: #F8F9FA;
    }
    
    body {
        font-family: 'Montserrat', sans-serif;
    }
    
    .font-poppins {
        font-family: 'Poppins', sans-serif;
    }
    
    .hero-bg {
        background: linear-gradient(135deg, var(--primary-blue) 0%, #1a3a5f 100%);
    }
    
    .card-hover {
        transition: all 0.3s ease;
    }
    
    .card-hover:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(46, 90, 136, 0.15);
    }
    
    .btn-primary {
        background-color: var(--primary-blue);
        color: white;
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
        background-color: #1a3a5f;
        transform: translateY(-2px);
    }
    
    .btn-secondary {
        background-color: var(--secondary-yellow);
        color: var(--primary-blue);
        transition: all 0.3s ease;
    }
    
    .btn-secondary:hover {
        background-color: #e6c200;
        transform: translateY(-2px);
    }
    
    .whatsapp-float {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        background-color: #25D366;
        color: white;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
        transition: all 0.3s ease;
    }
    
    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    }
    
    .testimonial-card {
        background: white;
        border-radius: 16px;
        padding: 24px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        margin: 0 12px;
    }
    
    .slick-dots {
        bottom: -40px;
    }
    
    .slick-dots li button:before {
        color: var(--primary-blue);
        opacity: 0.3;
    }
    
    .slick-dots li.slick-active button:before {
        opacity: 1;
        color: var(--secondary-yellow);
    }
    
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }
    
    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }
</style>