/* Custom styles */
body {
    padding-top: 76px;
}

.hero {
    position: relative;
    color: white;
    padding: 150px 0;
    margin-top: -76px;
    min-height: 80vh; /* Usando viewport height para melhor responsividade */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background {
    background: linear-gradient(135deg, #ff69b4 0%, #ffb6c1 100%);
}

.video-background video {
    width: auto;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    object-fit: contain;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.card {
    transition: transform 0.3s;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
}

.product-card img {
    height: 200px;
    object-fit: cover;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
}

.service-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1rem;
}

.service-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.price {
    font-weight: bold;
    color: #28a745;
    font-size: 1.1rem;
}

#contactForm {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar {
    background-color: #FF69B4; /* Cor rosa */
}

.navbar a {
    color: white;
}

.navbar a:hover {
    color: #FFC0CB; /* Rosa claro ao passar o mouse */
}

.navbar-brand {
    font-weight: bold;
    color: #FF69B4 !important;
}

.nav-link {
    font-weight: 500;
    color: white;
}

.nav-link:hover {
    color: #FFC0CB;
}

section {
    scroll-margin-top: 76px;
}

.gallery-img {
    border-radius: 10px;
    transition: transform 0.3s;
    cursor: pointer;
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.stars {
    color: #ffc107;
}

.stars-input {
    font-size: 1.5rem;
    color: #dee2e6;
    cursor: pointer;
}

.stars-input i:hover,
.stars-input i.active {
    color: #ffc107;
}

.review-text {
    font-style: italic;
    margin: 1rem 0;
}

.reviewer {
    font-weight: 500;
    color: #666;
}

.social-links a {
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #007bff !important;
}

/* Cart styles */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-remove {
    color: #dc3545;
    cursor: pointer;
}

/* Modal animations */
.modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease-in-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

.btn-primary {
    background-color: #FF69B4 !important;
    border-color: #FF69B4 !important;
}

.btn-primary:hover {
    background-color: #FFC0CB !important;
    border-color: #FFC0CB !important;
}

.bi {
    color: #FF69B4;
}

/* Mantém os ícones brancos quando estão dentro de botões */
.btn .bi {
    color: white;
}

/* Efeito hover nos ícones */
a:hover .bi {
    color: #FFC0CB;
}

.badge {
    background-color: #FF69B4; /* Cor rosa para badges */
}