/* Body */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    padding: 0;
    background-color: #ffffff;
}

/* Navbar */
.navbar {
    background-color: #f1cd88;
    padding: 5px;
}

.logo {
    width: 85px;
    margin-left: 20px;
}

.navbar-nav .nav-item .nav-link {
    color: #ffffff !important;
    font-weight: bold;
    margin-left: 30px;
    padding: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #6A1B9A !important;
    border-radius: 20px;
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

/* Principal Section */
#principal {
    background-color: inherit;
    padding: 60px 0;
}

#principal h1 {
    color: #6b4468;
    border-bottom: 3px solid #6b4468;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

#principal p {
    font-size: 1.25rem;
    color: #333;
}

/* Fade-in Effect */
.fade-in {
    opacity: 0;
    transition: opacity 1.5s ease-in;
}

.fade-in.show {
    opacity: 1;
}

/* Temas Section */
#temas h2 {
    color: #6b4468;
    border-bottom: 3px solid #6b4468;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

#temas p.lead {
    margin-bottom: 20px;
    color: #000000;
}

.carousel-item .item-featured {
    margin-bottom: 30px;
}

/* Product Image */
.product-image {
    position: relative;
}

.product-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

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

/* Item Label */
.item-new-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #28a745;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
}

.product-title {
    margin-top: 15px; 
    margin-bottom: 10px;
    font-size: 1.2em;
}

.item-featured img {
    cursor: pointer;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 43%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #6c757d;
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
    outline: none;
}

.carousel-control-prev {
    left: -70px;
}

.carousel-control-next {
    right: -70px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #343a40;
    color: #fff;
}

/* WhatsApp Button */
.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    border-color: #25D366;
    padding: 10px 15px;
    font-size: 18px;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #139444;
    color: #ffffff;
    border-color: #139444;
}

/* Fullscreen Carousel */
.fullscreen-carousel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    height: auto;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 10px;
}

.fullscreen-carousel .carousel-inner {
    width: 100%;
    height: auto;
}

.fullscreen-carousel .carousel-inner img {
    width: 100%;
    max-height: 800px;
    height: auto;
    object-fit: cover;
}

/* Fullscreen Close Button */
.fullscreen-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    font-size: 30px;
    background: none;
    border: none;
    outline: none;
    z-index: 1051;
}

/* Sobre Section */
#sobre {
    background-color: #f8f9fa;
    padding: 60px 0;
}

#sobre h2 {
    color: #6b4468;
    border-bottom: 3px solid #6b4468;
    display: inline-block;
    padding-bottom: 10px;
}

#sobre h3 {
    color: #333;
}

#sobre p {
    color: #555;
    line-height: 1.6;
}

#sobre img {
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Contato Section */
#contato {
    background-color: inherit;
    padding: 60px 0;
}

#contato h2 {
    color: #6b4468;
    border-bottom: 3px solid #6b4468;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.contact-icon {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-icon.instagram i {
    color: #E4405F;
}

.contact-icon.facebook i {
    color: #1877F2;
}

.contact-icon.whatsapp i {
    color: #25D366;
}

.contact-icon:hover i {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.contact-icon p {
    margin-top: 10px;
    color: #333;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: #343a40;
    color: #ffffff;
}

.footer h5 {
    font-weight: bold;
    margin-bottom: 15px;
}

.footer p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer .social-icons a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer .social-icons a:hover {
    color: #6c757d;
}

.footer hr {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

.footer .fa-phone-alt,
.footer .fa-envelope {
    margin-right: 10px;
}

.footer .social-icons a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer .social-icons a:hover .fa-instagram {
    color: #C13584;
}

.footer .social-icons a:hover .fa-facebook-f {
    color: #1877F2;
}

.footer .social-icons a:hover .fa-whatsapp {
    color: #25D366;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #6b4468;
    color: #fff;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 20px;
    display: none;
    z-index: 1000;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.back-to-top:hover {
    background-color: #f1cd88;
    color: #6b4468;
    text-decoration: none;
}

/* Media Queries para dispositivos pequenos */
@media (max-width: 767.98px) {
    .fade-in {
        width: 30%;
        height: auto;
    }

    .carousel-item .col-xs-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .carousel-item .col-xs-12:nth-child(n+2) {
        display: none;
    }

    .item-featured {
        padding: 10px;
    }

    .item-featured .product-image {
        width: 80%;
        margin: 0 auto;
    }

    .item-featured .product-title {
        font-size: 18px;
        margin-top: 10px;
        font-weight: bold;
    }

    .item-featured img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .item-new-label {
        font-size: 10px;
        padding: 3px 7px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        position: absolute;
        top: 43%;
        transform: translateY(-50%);
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        font-size: 20px;
        background-color: rgba(0, 0, 0, 0.5);
        color: #fff;
        border-radius: 50%;
    }

    .carousel-control-prev {
        left: 50px;
    }

    .carousel-control-next {
        right: 50px;
    }

    .carousel-indicators {
        bottom: 10px;
    }

    .carousel-indicators li {
        background-color: rgba(255, 255, 255, 0.8);
    }

    .fullscreen-carousel .carousel-control-prev,
    .fullscreen-carousel .carousel-control-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        font-size: 20px;
        background-color: rgba(0, 0, 0, 0.5);
        color: #fff;
        border-radius: 50%;
    }

    .fullscreen-carousel .carousel-control-prev {
        left: 30px;
    }

    .fullscreen-carousel .carousel-control-next {
        right: 30px;
    }

    .fullscreen-carousel .carousel-indicators {
        bottom: 10px;
    }

    .fullscreen-carousel .carousel-indicators li {
        background-color: rgba(255, 255, 255, 0.8);
    }
}

/* Media Queries para dispositivos médios */
@media (max-width: 992px) {
    .navbar-nav {
        text-align: center;
        width: 100%;
    }

    .navbar-nav .nav-item {
        display: block;
        width: 100%;
    }

    .navbar-nav .nav-item .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}
