﻿body {
    font-family: 'Segoe UI', sans-serif;
}

.custom-navbar {
    background: rgba(0,0,0,0.8);
}

.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c');
    /*background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(../img/hero-bg.jpg);*/
    background-size: cover;
    background-position: center;
}

.service-card {
    background: white;
    border-radius: 15px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .service-card:hover {
        transform: translateY(-8px);
    }

.service-icon {
    font-size: 40px;
    color: #ffb703;
}

.quote-section {
    background: #1d3557;
}

.footer {
    background: #111;
    color: white;
}

.custom-green-btn {
    background: linear-gradient(135deg, #1b8f4c, #157a3e);
    border: none;
    color: white;
    border-radius: 30px;
    padding: 8px 22px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .custom-green-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    }

.service-icon {
    font-size: 40px;
    color: #1b8f4c;
}

.section-icon {
    color: #1b8f4c;
}

.btn-green {
    background: linear-gradient(135deg, #1b8f4c, #157a3e);
    border: none;
    color: white;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-green:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    }

.gallery-section {
    background-color: #f8f9fa;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

    .gallery-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .gallery-card:hover img {
        transform: scale(1.1);
    }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(21, 122, 62, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
    padding: 20px;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #fff;
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

    .fade-in.show {
        opacity: 1;
        transform: translateY(0);
    }


.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #1b8f4c, #157a3e);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
}

    .back-to-top:hover {
        transform: translateY(-5px);
    }

.quote-section .section-icon {
    color: #ffffff;
}


/*Productos*/
.product-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
}

.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
}

.product-color {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    margin: auto;
    margin-bottom: 6px;
    border: 1px solid #ccc;
}

.product-card.selected {
    border: 2px solid #0d6efd;
}

