/* 
   VR Hair - Elementos Visuais e Texturas
   Adicionando degradês, texturas e sombras para maior sofisticação
*/

/* Degradês suaves */
/* .hero-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
} */

.section-title:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--medium-color) 100%);
}

.product-card {
    background: linear-gradient(180deg, #ffffff 0%, var(--lighter-color) 100%);
}

.btn-primary {
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

/* Texturas sutis */
body {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23637952' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-attachment: fixed;
}

.featured-products, .testimonials {
    position: relative;
}

.featured-products:before, .testimonials:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23bf9b81' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

/* Sombras suaves */
header {
    box-shadow: 0 2px 15px rgba(99, 88, 64, 0.1);
}

.product-card, .course-card, .testimonial-card, .salon-card, .blog-card {
    box-shadow: 0 5px 15px rgba(99, 88, 64, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-card:hover, .course-card:hover, .testimonial-card:hover, .salon-card:hover, .blog-card:hover {
    box-shadow: 0 8px 25px rgba(99, 88, 64, 0.1);
    transform: translateY(-5px);
}

.btn {
    box-shadow: 0 3px 6px rgba(191, 155, 129, 0.2);
}

.btn:hover {
    box-shadow: 0 5px 12px rgba(191, 155, 129, 0.3);
}

/* Efeitos de transição */
.section-title, .product-info h3, .course-info h3, .testimonial-author h4, .blog-title {
    position: relative;
    display: inline-block;
}

.section-title:after, .product-info h3:after, .course-info h3:after, .testimonial-author h4:after, .blog-title:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.section-title:hover:after, .product-info h3:hover:after, .course-info h3:hover:after, .testimonial-author h4:hover:after, .blog-title:hover:after {
    width: 100%;
}

/* Estilo para imagens */
.product-image img, .course-image img, .blog-image img {
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img, .course-card:hover .course-image img, .blog-card:hover .blog-image img {
    transform: scale(1.05);
}

/* Estilo para o blog */
.blog-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--lighter-color) 0%, #ffffff 100%);
}

.blog-card {
    margin-bottom: 2rem;
    background-color: #ffffff;
    border-radius: 5px;
    overflow: hidden;
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

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

.blog-info {
    padding: 1.5rem;
}

.blog-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--gray-color);
}

.blog-meta span {
    margin-right: 1rem;
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 0.25rem;
    color: var(--secondary-color);
}

.blog-excerpt {
    margin-bottom: 1rem;
    color: var(--dark-color);
    line-height: 1.6;
}

.blog-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.blog-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.blog-link:hover i {
    transform: translateX(3px);
}
