:root {
    --pink-light: #F7ABAD;
    --purple-dark: #7B255D;
    --coral: #D66166;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-text: #4A4A4A;
    --gold: #D4AF37;
    --cream: #FFF8E7;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.header-floating {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.hero {
    background: linear-gradient(135deg, var(--pink-light) 0%, #fff 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background-color: var(--pink-light);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.35;  /* Aumentado de 0.15 para 0.35 */
    z-index: 0;
}

/* Make sure other hero elements are above the background */
.hero-background-shapes,
.container {
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('pattern.svg') repeat;
    opacity: 0.08;
}

.hero h1 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-image-wrapper img {
    border: 12px solid var(--white);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Corrigindo a duplicação de estilos para hero-image-wrapper */
.hero-image-wrapper {
    position: relative;
    padding: 20px;
}

.hero-image-wrapper img {
    border: 10px solid var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover img {
    transform: translateY(-10px);
}

.floating-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--purple-dark);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(123, 37, 93, 0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter-card {
    background: linear-gradient(to right, #f8f9fa, #fff);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('pattern.svg') repeat;
    opacity: 0.03;
    z-index: 0;
}

.newsletter-card > * {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background-color: var(--purple-dark);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background-color: var(--coral);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(214, 97, 102, 0.2);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow-icon {
    transform: translateX(5px);
}

.newsletter-form .form-control {
    border-radius: 50px;
    padding: 12px 25px;
    border: 2px solid #eee;
}

.footer {
    background: var(--purple-dark);
    color: var(--white);
    padding: 60px 0;
    margin-top: 60px;
}

.footer-logo {
    max-width: 120px;
    filter: brightness(0) invert(1);
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--pink-light);
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .newsletter-card {
        padding: 30px;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 30px;
    }
}

.artist-story {
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.artist-story h2 {
    color: var(--purple-dark);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.artist-story p {
    color: #666;
    margin-bottom: 1.5rem;
}

.craftsmanship-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .craftsmanship-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .highlight-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

.highlight-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.highlight-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-dark), var(--coral));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.highlight-card:hover::after {
    transform: scaleX(1);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--purple-dark);
    transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1);
}

.highlight-card h3 {
    color: var(--purple-dark);
    margin-bottom: 1rem;
}

.highlight-card p {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .artist-story {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .craftsmanship-highlights {
        grid-template-columns: 1fr;
    }
}

/* Estilos para os novos elementos */

/* Estilos gerais de seção */
.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--coral);
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: var(--purple-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-dark), var(--coral));
    margin: 0 auto 25px;
}

.section-description {
    color: var(--gray-text);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Estilos para a seção hero */
.pre-title {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--coral);
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline {
    border: 1px solid var(--purple-dark);
    color: var(--purple-dark);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline:hover {
    background-color: rgba(123, 37, 93, 0.05);
    transform: translateY(-2px);
}

/* Estilos para os links sociais na navbar */
.nav-social-links {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}

.nav-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.nav-social-link.whatsapp {
    background: #25D366;
    color: white;
}

.nav-social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nav-social-link i {
    font-size: 1rem;
}

/* Responsividade para os links sociais */
@media (max-width: 991px) {
    .nav-social-links {
        margin-top: 15px;
        margin-left: 0;
        justify-content: center;
    }
    
    .nav-social-link {
        padding: 10px 15px;
        justify-content: center;
        width: 100%;
        max-width: 150px;
    }
    
    .navbar-collapse {
        text-align: center;
        padding: 20px 0;
    }
    
    .navbar-nav {
        margin-bottom: 15px;
    }
}

.hero-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.hero-social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.hero-social-link.whatsapp {
    background: #25D366;
    color: white;
}

.hero-social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.hero-social-link i {
    font-size: 1.2rem;
}

.hero-social-link span {
    font-size: 0.9rem;
}

.hero-features {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 15px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.hero-feature i {
    color: var(--coral);
}

.hero-feature span {
    font-size: 0.9rem;
    color: var(--purple-dark);
    font-weight: 500;
}

.hero-image-container {
    position: relative;
}

.hero-decoration-1 {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 3px solid var(--pink-light);
    border-radius: 50%;
    top: -20px;
    left: -20px;
    z-index: -1;
}

.hero-decoration-2 {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--coral);
    opacity: 0.1;
    border-radius: 50%;
    bottom: 30px;
    right: 0;
    z-index: -1;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Estilos para produtos */
.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--purple-dark);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-info h3 {
    color: var(--purple-dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Estilos para a seção de depoimentos */
.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    position: relative;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.testimonial-rating {
    margin-bottom: 20px;
    color: var(--gold);
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray-text);
    line-height: 1.8;
    position: relative;
    padding-left: 25px;
}

.testimonial-content p::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    position: absolute;
    top: -15px;
    left: 0;
    font-size: 4rem;
    color: var(--pink-light);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--pink-light);
}

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

.author-name {
    font-weight: 600;
    color: var(--purple-dark);
}

.author-title {
    font-size: 0.85rem;
    color: var(--gray-text);
}

/* Estilos para a assinatura do artista */
.artist-signature {
    max-width: 150px;
}

/* Responsividade */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .testimonial-card {
        margin-bottom: 30px;
    }
}

/* Estilos aprimorados para notificações */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    width: 350px;
}

.notification {
    background: white;
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateX(400px);
    opacity: 0;
    animation: slideIn 0.5s forwards, fadeOut 0.5s 5s forwards;
    position: relative;
    border-left: 5px solid var(--purple-dark);
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
}

.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    border-radius: 12px;
    pointer-events: none;
}

.notification.success {
    border-left-color: #4CAF50;
}

.notification.success::after {
    content: '✓';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #4CAF50;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.notification.error, .notification.invalid {
    border-left-color: #F44336;
}

.notification.error::after, .notification.invalid::after {
    content: '!';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #F44336;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(244, 67, 54, 0.3);
}

.notification.duplicate {
    border-left-color: #FF9800;
}

.notification.duplicate::after {
    content: 'i';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #FF9800;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-style: italic;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-30px);
    }
}

/* Responsividade para notificações */
@media (max-width: 576px) {
    .notification-container {
        width: calc(100% - 40px);
        right: 20px;
    }
}