@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --roxo-escuro: #4B0082;      
    --roxo-medio: #8A2BE2;   
    --roxo-claro: #9370DB;     
    --roxo-palido: #E6E6FA;      
    --black: #121212;            
    --white: #FFFFFF;           
    --cinza-claro: #F5F5F5;       
    --cinza-medio: #E0E0E0;      
    --cinza-escuro: #757575;        
}


body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.btn-primary {
    display: inline-block;
    background-color: var(--roxo-escuro);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--roxo-medio);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(75, 0, 130, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--roxo-escuro);
    padding: 10px 24px;
    border: 2px solid var(--roxo-escuro);
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--roxo-escuro);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(75, 0, 130, 0.2);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    color: var(--roxo-escuro);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--roxo-medio);
    margin: 15px auto 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    text-align: center;
}

.logo-container h1 {
    font-size: 2.5rem;
    color: var(--roxo-escuro);
    letter-spacing: 3px;
    margin-bottom: 0;
    cursor: pointer;
}

.logo-container h1:hover {
    color: var(--roxo-claro);
    transition: 1s;
}

.tagline {
    font-size: 0.9rem;
    color: var(--cinza-escuro);
    font-style: italic;
    margin-top: -5px;
}

.menu {
    display: flex;
    gap: 25px;
}

.menu a {
    color: var(--black);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--roxo-medio);
    transition: width 0.3s ease;
}

.menu a:hover::after,
.menu a.active::after {
    width: 100%;
}

.menu a.active {
    color: var(--roxo-escuro);
}

.icons {
    display: flex;
    gap: 20px;
}

.icon {
    font-size: 1.2rem;
    color: var(--black);
    position: relative;
}

.icon:hover {
    color: var(--roxo-medio);
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--roxo-escuro);
    color: var(--white);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

.page-header {
    text-align: center;
    font-size: 2rem;
    margin: 2rem 0;
    color: var(--roxo-escuro);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--cinza-escuro);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: linear-gradient(145deg, var(--cor-roxa) 0%, var(--cor-roxa-escura) 100%);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><text x="50%" y="50%" font-family="Arial" font-size="24" fill="rgba(255,255,255,0.1)" text-anchor="middle" alignment-baseline="middle">PÚRPURA</text></svg>');
    background-repeat: repeat;
    opacity: 0.2;
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-text h2 {
    color: var(--roxo-escuro);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--roxo-claro);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.values-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.values-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.values-list li::before {
    content: "•";
    color: var(--roxo-escuro);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.values-list li span {
    font-weight: bold;
    color: var(--roxo-medio);
}

.team-section, .store-section {
    margin-bottom: 4rem;
}

.team-section h2, .store-section h2 {
    color: var(--roxo-escuro);
    text-align: center;
    margin-bottom: 2rem;
}

.team-section > p, .store-section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
}

.team-member {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: auto;
    width: auto;
    background-color: var(--cinza-claro);
    position: relative;
}

.member-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, var(--roxo-escuro) 0%, transparent 100%);
    opacity: 0.3;
}

.team-member h3 {
    color: var(--black);
    margin: 1rem 0 0.2rem;
}

.team-member p {
    color: var(--roxo-escuro);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}

.store-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--roxo-escuro);
    transition: transform 0.3s;
}

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

.store-card h3 {
    color: var(--roxo-escuro);
    margin-bottom: 0.8rem;
}

.store-card p {
    margin-bottom: 0.5rem;
    color: var(--cinza-escuro);
}

.cta-section {
    text-align: center;
    padding: 3rem;
    background-color: var(--cinza-claro);
    border-radius: 10px;
}

.cta-section h2 {
    color: var(--black);
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .cta-button {
    display: inline-block;
    background-color: var(--roxo-escuro);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid var(--roxo-medio);
}

.cta-section .cta-button:hover {
    background-color: transparent;
    color: var(--roxo-medio);
}

/* * Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 5% 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--roxo-medio);
}

.footer-column p {
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--cinza-medio);
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--roxo-medio);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--cinza-medio);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--cinza-medio);
    font-size: 0.9rem;
}

.contact-info i {
    margin-right: 10px;
    color: var(--roxo-claro);
}

.payment-methods {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.payment-methods i {
    font-size: 1.8rem;
    color: var(--cinza-medio);
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    color: var(--white);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--cinza-medio);
    font-size: 0.9rem;
}

/* * Responsividade */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .team-grid, .stores-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 992px) {
    header {
        flex-direction: column;
        padding: 15px 5%;
    }
    
    .logo-container {
        margin-bottom: 15px;
    }
    
    .menu {
        margin: 15px 0;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .promotion-content h2 {
        font-size: 2.2rem;
    }
    
    .promotion-content p {
        font-size: 1.2rem;
    }
}