* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f4f4f4;
    color: #333;
}

/* HEADER */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #7a2e0a, #a0522d);
    color: #fff;
    padding: 20px 30px;
    animation: fadeDown 1s ease;
}

/* Logo */
.logo {
    width: 90px;
    transition: transform 0.4s ease;
}

.logo:hover {
    transform: scale(1.08);
}

/* Header center */
.header-center {
    text-align: center;
}

.header-center h1 {
    font-size: 30px;
}

.header-center p {
    font-size: 16px;
}

.company {
    font-size: 14px;
    opacity: 0.9;
}

/* Header right */
.header-right {
    text-align: right;
    font-size: 15px;
}

.phone {
    font-weight: bold;
}

/* MAIN CONTAINER */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 25px;
    animation: fadeUp 1.2s ease;
}

h2 {
    color: #7a2e0a;
    margin: 25px 0 10px;
}

h3 {
    color: #8b4513;
    margin-top: 15px;
}

p {
    margin-bottom: 12px;
    line-height: 1.6;
}

ul {
    margin-left: 20px;
}

ul li {
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

ul li:hover {
    transform: translateX(6px);
}

/* GALLERY */
.gallery {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.gallery img {
    width: 32%;
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* CONTACT CARD */
.contact-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-top: 35px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    transition: all 0.4s ease;
}

.btn-whatsapp:hover {
    background: #1ebd5a;
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(37,211,102,0.5);
}

/* FOOTER */
.footer {
    background: #7a2e0a;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

/* Animations */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .header-right {
        text-align: center;
    }

    .gallery img {
        width: 100%;
    }
}
