* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(to bottom right, #fff8f4, #ffeef3);
    color: #333;
    scroll-behavior: smooth;
}

/* HEADER */
header {
    background: white;
    padding: 15px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: #c2185b;
    letter-spacing: 1px;
}

nav a {
    text-decoration: none;
    margin: 0 15px;
    color: #444;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #c2185b;
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* HERO */
.hero {
    background: linear-gradient(to right, #ffe4ec, #fff8f4);
    padding: 120px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 45px;
    color: #c2185b;
    margin-bottom: 20px;
    animation: fadeInDown 1.5s ease;
}

.hero p {
    font-size: 18px;
    opacity: 0.8;
}

/* SECTION */
.section {
    padding: 80px 60px;
    text-align: center;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.08);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* BUTTONS */
button {
    padding: 12px 25px;
    border: none;
    background: linear-gradient(45deg, #c2185b, #ff6f91);
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(194,24,91,0.4);
}

/* FOOTER */
footer {
    background: #c2185b;
    color: white;
    padding: 30px;
    text-align: center;
    margin-top: 50px;
}

/* WHATSAPP */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    padding: 18px;
    border-radius: 50%;
    font-size: 24px;
    text-align: center;
    text-decoration: none;
    animation: pulse 2s infinite;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

@keyframes pulse {
    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); }
}

/* HERO ANIMATION */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
