:root {
    --primary-color: #f79b72;
    --primary-color-dark: #e74c3c;
    --secondary-color: #2c3e50;
    --dark-color: #1a252f;
}

/* Font weight utility classes */
.fw-thin {
    font-weight: 200;
}

.fw-regular {
    font-weight: 400;
}

.fw-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-extrabold {
    font-weight: 800;
}

/* Font style utility classes */
.fst-italic {
    font-style: italic;
}

body {
    font-family: "Nunito Sans", sans-serif;
    line-height: 1.6;
    padding-top: 75px;
}

.navbar-brand {
    font-weight: bold;
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    margin: 0 10px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.hero-section {
    background: #ffffff;
    background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 50%);
    background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 50%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#DDDDDD", GradientType=1);
    color: white;
    padding: 120px 0;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-title span {
    color: var(--secondary-color);
}

.whatsapp-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: var(--primary-color-dark);
    color: white;
    transform: translateY(-2px);
}

.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-image img {
    height: 350px;
    object-fit: cover;
    border-radius: 1rem;
}

.about-bg {
    position: absolute;
    bottom: -10rem;
    right: -5rem;
    z-index: -1;
    width: 600px;
    opacity: 0.1;
}

.products-section {
    padding: 80px 0;
}

.section-title {
    position: relative;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    background: linear-gradient(45deg, #ddd, #eee);
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #999;
}

.product-image img {
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-name {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.construction-section {
    position: relative;
    background-image: url("/assets/images/backgrounds/2.webp");
    background-size: cover;
    color: white;
    padding: 300px 0 100px 0;
    text-align: center;
}

.construction-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.construction-section .whatsapp-btn {
    position: relative;
    background-color: white;
    color: #25d366;
    font-weight: 700;
}

.construction-section .whatsapp-btn i {
    font-size: 2rem;
}

.construction-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.partners-section {
    position: relative;
    background-image: url("/assets/images/backgrounds/1.webp");
    padding: 80px 0;
    background-color: #f8f9fa;
}

.partners-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
}

.partner-logo {
    position: relative;
    border-radius: 10px;
    margin: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.gallery-section {
    padding: 80px 0;
}

.gallery-item img {
    height: 200px;
    object-fit: cover;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-large {
    height: 250px;
}

.footer {
    background: #ffffff;
    background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 50%);
    background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 50%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#DDDDDD", GradientType=1);
    color: white;
    padding: 50px 0 30px;
}

.footer h5 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer a:hover {
    color: var(--primary-color-dark);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color-dark);
    color: white;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    .about-section,
    .products-section,
    .partners-section,
    .gallery-section {
        padding: 80px 0;
    }
    .about-image img {
        height: 200px;
    }

    .gallery-item,
    .gallery-large {
        height: 200px;
    }
    .footer {
        padding: 15px 0 10px;
    }
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 25px;
        font-size: 25px;
    }
    .about-bg {
        width: 300px;
        bottom: -3rem;
        right: -2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 30px 0;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .about-section,
    .products-section,
    .partners-section,
    .gallery-section {
        padding: 40px 0;
    }
    .about-image img {
        height: 200px;
    }

    .product-image {
        height: 200px;
    }
    .gallery-item,
    .gallery-large {
        height: 200px;
    }
    .footer {
        padding: 40px 0;
    }
    .navbar-brand img {
        width: 200px;
    }
    .about-bg {
        width: 200px;
    }
}
