﻿.hero {
    margin-top: 110px; /* afastado do header */
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #3a1c71 0%, #d76d77 50%, #f6c945 100%);
    color: #fff;
    padding: 6rem 2rem;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

    /* Título */
    .hero h1 {
        font-size: 3rem;
        line-height: 1.2;
        font-weight: 700;
        background: linear-gradient(90deg, #fff, #f6c945);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Subtítulo */
    .hero p {
        color: rgba(255, 255, 255, 0.85);
        font-size: 1.2rem;
        margin-top: 1rem;
    }

/* Imagem */
.hero-img {
    max-width: 420px;
    border-radius: 20px;
    border: 3px solid #fff;
    box-shadow: 0 0 50px rgba(246, 201, 69, 0.4);
    transition: transform .5s ease;
}

    .hero-img:hover {
        transform: scale(1.05);
    }


@media (min-width: 992px) {
    .hero-img {
        max-width: 95%;
    }
}


.hero-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(246,201,69,0.4);
}



.sobre-nos {
    background: linear-gradient(135deg, #1c1c1c, #3a3a3a, #b8860b, #2a2a2a);
    background-size: 400% 400%;
    animation: gradientMove 18s ease-in-out infinite;
    padding: 5rem 1rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.sobre-nos img {
    border-radius: 50%;
}

.sobre-nos h2, .sobre-nos p {
    animation: fadeUp 1s ease;
}

.sobre-nos p {
    font-size: 20px;
}

.sobre-nos h2 {
    font-size: 30px;
}


.card-product {
    background: var(--night-2);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: .25s ease;
}

.card-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,.4);
}

.card-product .card-title {
    color: var(--gold);
    font-weight: 600;
}

.card-product .price {
    font-weight: 700;
}

.img-cover-220 {
    height: 220px;
    width: 100%;
    object-fit: cover;
    background: #0c0f13;
}

.product-modal .modal-dialog {
    max-width: 720px;
}

.product-modal .modal-body {
    display: flex;
    flex-wrap: wrap;
}

.product-modal .carousel-inner {
    border: none;
    border-radius: 0;
}

.product-modal .carousel-item img {
    width: 100%;
    height: 400px; 
    object-fit: cover; 
    background: #0c0f13;
    border-radius: 10px;
}


.carousel-wrapper {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--night-2);
    padding: 1rem;
    margin-bottom: 1rem;
}

.carousel-inner {
    border: none !important;
    border-radius: 10px !important;
    overflow: hidden;
}

.carousel-item {
    transition: transform .6s ease, opacity .6s ease;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    z-index: 5;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(90%) sepia(80%) saturate(400%) hue-rotate(345deg) brightness(105%) contrast(90%);
}

.carousel-indicators {
    display: none !important;
}

.form-label {
    display: block;
    margin-bottom: .5rem;
}


.card-depto {
    background: var(--night-2);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 2rem 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    text-align: center;
}

.card-depto:hover {
    transform: translateY(-6px);
    background: rgba(246, 201, 69, 0.05);
    box-shadow: 0 8px 20px rgba(246, 201, 69, 0.2);
}

.card-depto i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.depto-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
}

@media (max-width: 736px) {
    .hero-img {
        max-width: 95%;
    }

    .depto-title{
        font-size: 0.8rem;
    }

    .sobre-nos p{
        font-size: 1rem;
    }

    .sobre-nos img{
        max-width: 200px;
      
    }

}