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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 60px;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

nav a.burger-icon {
    display: none;
    font-size: 28px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

nav a.burger-icon:hover {
    color: #cd5c5c;
}

#links {
    display: flex;
    gap: 10px;
}

#links a {
    color: #333;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

#links a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #cd5c5c, #a0522d);
    transition: width 0.3s ease;
}

#links a:hover {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    color: #cd5c5c;
}

#links a:hover::before {
    width: 60%;
}

/* Header */
header {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('https://images.unsplash.com/photo-1505691938895-1758d7feb511') no-repeat center center/cover;
    padding: 180px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(205, 92, 92, 0.2), transparent);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

header h1 {
    font-size: 4em;
    color: #fff;
    margin: 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease;
    position: relative;
    z-index: 1;
}

header p {
    font-size: 1.5em;
    color: #fff;
    margin-top: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.3s both;
    position: relative;
    z-index: 1;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #1ebe5b);
    color: white;
    font-size: 32px;
    padding: 18px 20px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-button:hover {
    background: linear-gradient(135deg, #1ebe5b, #25D366);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    transform: scale(1.1);
    animation: none;
}

/* Sections */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

section h2 {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 50px;
    color: #333;
    position: relative;
    display: inline-block;
    width: 100%;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #cd5c5c, #a0522d);
    border-radius: 2px;
}

/* Products */
.products {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.product {
    background: white;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(205, 92, 92, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(205, 92, 92, 0.3);
}

.product:hover::before {
    opacity: 1;
}

.product img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product:hover img {
    transform: scale(1.1);
}

.product h3 {
    margin: 25px 0 15px;
    font-size: 1.6em;
    color: #cd5c5c;
    padding: 0 20px;
}

.product p {
    padding: 0 20px 30px;
    color: #666;
    line-height: 1.6;
}

/* Call Buttons */
.call-buttons {
    text-align: center;
    margin: 60px 0;
}

.call-buttons a {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 50px;
    margin: 15px;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.call-buttons a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.call-buttons a:hover::before {
    width: 300px;
    height: 300px;
}

.call-buttons a:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.5);
    transform: translateY(-3px);
}

/* Contact Section */
#contact {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

#contact p {
    font-size: 1.2em;
    margin: 20px 0;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Call Buttons */
.call-buttons {
    text-align: center;
    margin: 40px 0;
}

.call-buttons a {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 50px;
    margin: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.call-buttons a:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.5);
    transform: translateY(-3px);
}

.call-buttons a i {
    font-size: 1.2em;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 50px rgba(205, 92, 92, 0.3);
}

/* Map */
iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

/* Go Top Button */
#goTopBtn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    font-size: 24px;
    border: none;
    outline: none;
    background: linear-gradient(135deg, #333, #555);
    color: white;
    cursor: pointer;
    padding: 15px 18px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: none;
    transition: all 0.3s ease;
}

#goTopBtn:hover {
    background: linear-gradient(135deg, #cd5c5c, #a0522d);
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(205, 92, 92, 0.4);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
    font-size: 1.1em;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    nav {
        padding: 0 20px;
        height: 70px;
    }

    nav a.burger-icon {
        display: block;
    }

    #links {
        position: absolute;
        top: 70px;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        width: 100%;
        padding: 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        display: none;
        gap: 0;
    }

    #links.open {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    #links a {
        text-align: center;
        padding: 15px;
        border-bottom: 1px solid #f0f0f0;
    }

    #links a:last-child {
        border-bottom: none;
    }

    .nav-logo {
        height: 50px;
    }

    header h1 {
        font-size: 2.5em;
    }

    header p {
        font-size: 1.2em;
    }

    section h2 {
        font-size: 2.2em;
    }

    .product {
        width: 100%;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        font-size: 28px;
        padding: 15px 17px;
    }

    #goTopBtn {
        bottom: 20px;
        left: 20px;
    }
}