.elementor-5986 .elementor-element.elementor-element-18243c6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-5986 .elementor-element.elementor-element-18243c6:not(.elementor-motion-effects-element-type-background), .elementor-5986 .elementor-element.elementor-element-18243c6 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#1A0505;}@media(max-width:767px){.elementor-5986 .elementor-element.elementor-element-18243c6{--margin-top:10px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}/* Start custom CSS */@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@200;400;700&display=swap');

:root {
    --bg-dark: #120505;
    --bg-card: #1c0a0a;
    --accent: #a4161a;
    --text-gold: #e6b8af;
    --white: #ffffff;
}

.velvet-about-page {
    background-color: var(--bg-dark);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    width: 100vw;
    
    /* AS LINHAS QUE CORRIGEM A SOBRA: */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.qs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.about-hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(18, 5, 5, 0.7), rgba(18, 5, 5, 0.7)), 
                url('https://images.unsplash.com/photo-1517524001090-349f99e322f2?auto=format&fit=crop&q=80') center/cover; /* Imagem de textura ou seda */
    border-bottom: 1px solid #331111;
}

.about-hero .qs-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 8vw, 70px);
    line-height: 1.1;
    color: white;
}

.about-hero .qs-title span {
    color:white;
    font-style: italic;
}

.hero-tagline {
    font-weight: 200;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 20px;
    color: white;
}

/* Manifesto */
.manifesto-section {
    padding: 100px 0;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-label {
    color: white;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 12px;
    margin-bottom: 15px;
    display: block;
}

.manifesto-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 30px;
    color: white;
}

.manifesto-text h2 span { color: var(--text-gold); }

.manifesto-text p {
    font-size: 17px;
    line-height: 1.8;
    color: white;
    margin-bottom: 20px;
}

/* Stats */
.manifesto-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    border-left: 2px solid var(--accent);
    padding-left: 25px;
}

.stat-number {
    display: block;
    font-size: 50px;
    font-family: 'Playfair Display', serif;
    color: white;
}

/* Exclusivity Cards */
.exclusivity-section {
    padding: 100px 0;
    background-color: #0d0404;
}

.section-title-center {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 35px;
    margin-bottom: 60px;
    color: white;
}

.exclusivity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.exc-card {
    background: var(--bg-card);
    padding: 50px 30px;
    border: 1px solid #2d1515;
    text-align: center;
    transition: all 0.5s ease;
}

.exc-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}

.exc-icon {
    font-size: 30px;
    color: var(--accent);
    margin-bottom: 20px;
}

.exc-card h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    color: white;
}

/* Parallax Quote */
.quote-parallax {
    padding: 150px 0;
    text-align: center;
    background: linear-gradient(rgba(18, 5, 5, 0.8), rgba(18, 5, 5, 0.8)), 
                url('https://images.unsplash.com/photo-1550684848-fac1c5b4e853?auto=format&fit=crop&q=80') center/cover;
}

blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 36px);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-gold);
}

/* CTA Section */
.about-cta {
    padding: 100px 0;
    text-align: center;
}
.about-cta  h2 {
    color: white;
}

.btn-velvet {
    display: inline-block;
    margin-top: 30px;
    padding: 20px 40px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn-velvet:hover {
    background: var(--white);
    color: var(--accent);
}

/* Responsividade */
@media (max-width: 900px) {
    .manifesto-grid, .exclusivity-grid { grid-template-columns: 1fr; }
    .about-hero { height: 60vh; }
}/* End custom CSS */