/* Estilos para templates de serviço */

/* Hero Section */
.hero-section {
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    position: relative;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.hero-content {
    position: absolute;
    bottom: 50px;
    width: 100%;
}

/* Breadcrumb */
.breadcrumb-item a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-item.active {
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Carrossel */
.carousel-img {
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.carousel-caption {
    background: rgba(0,0,0,0.6);
    border-radius: 8px;
    padding: 15px;
}

.thumbnail-img {
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.thumbnail-img:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

/* Card de Informações */
.card.sticky-top {
    top: 20px;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: none;
    border-radius: 12px;
}

.price-tag {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: -10px -15px 20px;
}

.empresa-info {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.empresa-info i {
    width: 20px;
    text-align: center;
    margin-right: 8px;
}

/* Botões de Contato */
.btn-lg {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-lg i {
    margin-right: 8px;
}

.btn-success {
    background-color: #25D366;
    border-color: #25D366;
}

.btn-success:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
}

.btn-primary:hover,
.btn-info:hover {
    transform: translateY(-2px);
}

/* Descrição do Serviço */
.bg-light {
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero-content {
        bottom: 30px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .carousel-img {
        height: 300px;
    }
    
    .card.sticky-top {
        position: static !important;
        margin-top: 20px;
    }
    
    .thumbnail-img {
        height: 60px;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.card,
.carousel {
    animation: fadeIn 0.6s ease-out;
} 