﻿body {
    font-family: 'Poppins', Arial, sans-serif;
    color: #333;
}

.imgLogoMain {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px 0 20px 10%;
}

    .imgLogoMain img {
        display: block;
        height: auto;
        width: 160px;
    }

.txtLabelMain {
    color: #F0F0ED;
    font-size: 20px;
    align-self: end;
    padding-bottom: 20px;
    margin-left: -20px;
    transition: margin-left 0.3s ease, padding-bottom 0.3s ease, font-size 0.3s ease;
}

.fixed-top, .sb-nav-fixed #layoutSidenav #layoutSidenav_nav, .sb-nav-fixed .main-topnav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
}

.main-topnav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    padding-left: 0;
    height: 10rem;
    background-color: #0D1F2E;
    transition: height 0.3s ease, padding 0.3s ease;
}

    .main-topnav .imgLogoMain img {
        transition: width 0.3s ease;
    }

    .main-topnav.shrink {
        height: 4rem;
        padding-left: 1rem;
    }

        .main-topnav.shrink .imgLogoMain img {
            width: 60px;
        }

        .main-topnav.shrink .txtLabelMain {
            margin-left: 30px;
            padding-bottom: 10px;
        }

    .main-topnav.navbar-dark #sidebarToggle {
        color: rgba(255, 255, 255, 0.5);
    }

    .main-topnav.navbar-light #sidebarToggle {
        color: #212529;
    }

.header-right {
    padding-right: 10%;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-btn {
    background-color: transparent;
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.search-input {
    width: 0;
    padding: 8px;
    border: none;
    outline: none;
    border-radius: 4px;
    transition: width 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    background-color: #fff;
    color: #000;
}

    .search-input.show {
        width: 200px;
        opacity: 1;
        margin-left: 10px;
    }

.options-topbar {
    background-color: #65A09B;
    height: 3rem;
    margin-top: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topbar-btn {
    width: 120px;
    height: 30px;
    background-color: white;
    color: #65A09B;
    border: none;
    padding: 0.2rem 1rem;
    margin: 0 10px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 12px;
}

    .topbar-btn:hover {
        background-color: #4b7f77;
        color: white;
    }

.topbar-btn-hover {
    background-color: #4b7f77;
    color: white;
}

.main-content {
    margin: 40px;
    padding: 40px;
    border: 2px solid #0C1F2E;
}

.sn-btn-footer {
    z-index: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.sn-bg-button {
    z-index: 2;
    width: 40px;
    height: 40px;
    transition: fill 0.3s ease;
}

.facebook-icon {
    fill: #0866FF;
}

.whatsapp-icon {
    fill: #26D366;
}

.sn-btn-footer:hover svg path {
    fill: #0D1F2E;
}

.lnkBtnFooter {
    text-decoration: none;
    color: black
}

    .lnkBtnFooter:hover {
        text-decoration: underline;
        color: #65A09B;
    }

.btn-style {
    height: 40px;
    width: 120px;
    border: 2px solid #0D1F2E;
    background-color: #0D1F2E;
    color: #F0F0ED;
    border-radius: 10px;
}

    .btn-style:hover {
        background-color: transparent;
        color: #0D1F2E;
    }

.frm-container-main {
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.frm-container {
    text-align: center;
    border: 1px solid #65A09B;
    border-radius: 15px;
    width: 80%
}

.container-column {
    border-top: 4px solid #65A09B;
    margin: 10px 20px;
    padding: 20px 40px;
    text-align: center;
}

.btn-stl-register {
    color: #0D1F2E;
    fill: #0D1F2E;
    text-decoration: none;
}

    .btn-stl-register:hover {
        color: #65A09B;
        fill: #65A09B;
        text-decoration: underline;
    }



/********** Banner **********/
.container-banner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .carousel-image.active {
        opacity: 1;
    }

.wrap-banner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 8%;
}

.box-banner {
    position: relative;
    z-index: 2;
    text-align: left;
    color: white;
    max-width: 600px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

    .box-banner h1 {
        font-size: 48px;
        font-weight: bold;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .box-banner p {
        font-size: 20px;
        margin-bottom: 30px;
        line-height: 1.6;
    }

.btnBanner {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s;
}

    .btnBanner:hover {
        transform: scale(1.05);
        color: white;
    }


/********** Category Cards **********/
.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

    .category-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

.category-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.category-content {
    padding: 20px;
}


/********** Product Cards **********/
.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    }

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 15px;
}

.product-price {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
}

/********** Features **********/
.feature-box {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 15px;
}


/* === Contact Section (Footer Top) === */
#contact {
    background: #0D1F2E;
    color: #F0F0ED;
    padding: 60px 0 40px;
    font-size: 15px;
    line-height: 1.8;
}

    #contact h3 {
        font-size: 20px;
        font-weight: bold;
        color: #65A09B;
        margin-bottom: 20px;
    }

    #contact p {
        font-size: 14px;
        color: #dcdcdc;
    }

    /* Enlaces de cuenta */
    #contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        #contact ul li {
            margin-bottom: 10px;
        }

            #contact ul li a,
            #contact ul li button.lnkBtnFooter {
                color: #F0F0ED;
                text-decoration: none;
                transition: color 0.3s;
                font-size: 14px;
            }

                #contact ul li a:hover,
                #contact ul li button.lnkBtnFooter:hover {
                    color: #65A09B;
                    text-decoration: underline;
                }

    /* Social icons */
    #contact .sn-btn-footer {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s, transform 0.3s;
    }

        #contact .sn-btn-footer:hover {
            background: #65A09B;
            transform: scale(1.1);
        }

        #contact .sn-btn-footer svg {
            width: 24px;
            height: 24px;
        }

/* === Footer Bottom === */
#footer {
    background: #0B1926;
    color: #aaa;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

    #footer strong {
        color: #65A09B;
    }
