/* ==========================================================================
   DESIGN SYSTEM - REIS MEN'S CLUB (CINEMATIC DARK LUXURY)
   ========================================================================== */

/* Variables / Tokens */
:root {
    --bg-primary: #0a0b0d; /* Fundo cinza escuro texturizado do logo */
    --bg-secondary: #111317; /* Slate escuro do logo */
    --bg-card: rgba(22, 25, 30, 0.75);
    
    --color-bronze: #8c92ac; /* Cinza metálico médio do logo */
    --color-bronze-light: #e5e8eb; /* Prateado/Platina brilhante do logo */
    --color-bronze-dark: #4b5059; /* Aço/Cinza escuro metálico */
    
    --color-silver: #f1f3f5;
    --color-silver-muted: #8a909a;
    
    --text-primary: #ffffff;
    --text-secondary: #9ea0a5;
    --text-muted: #64666b;
    
    --font-titles: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-glass: 1px solid rgba(255, 255, 255, 0.06);
    --border-glass-gold: 1px solid rgba(229, 232, 235, 0.15);
    
    --glow-bronze: 0 8px 32px rgba(140, 146, 172, 0.08);
    --glow-btn: 0 4px 20px rgba(229, 232, 235, 0.25);
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--color-bronze-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-bronze);
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Ambient Glow Effects */
.glow-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.glow-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
}

.glow-bronze-1 {
    width: 500px;
    height: 500px;
    background: var(--color-bronze);
    top: -10%;
    right: -10%;
}

.glow-bronze-2 {
    width: 600px;
    height: 600px;
    background: var(--color-bronze-dark);
    bottom: 20%;
    left: -15%;
}

/* Typography & General Styling */
h1, h2, h3, h4 {
    font-family: var(--font-titles);
    font-weight: 700;
    letter-spacing: 1px;
}

p {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 300;
}

.text-highlight {
    color: transparent;
    background: linear-gradient(135deg, var(--color-bronze-light) 0%, var(--color-bronze) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 0px; /* Luxury sharp edges */
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-bronze-light) 0%, var(--color-bronze) 100%);
    color: var(--bg-primary);
    border: none;
    box-shadow: var(--glow-btn);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.btn-primary:hover::after {
    left: 120%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(188, 163, 116, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--color-bronze-light);
    border: 1px solid var(--color-bronze);
}

.btn-outline:hover {
    background: var(--color-bronze);
    color: var(--text-primary);
    box-shadow: var(--glow-bronze);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Pulse animation for CTA buttons */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(188, 163, 116, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(188, 163, 116, 0); }
    100% { box-shadow: 0 0 0 0 rgba(188, 163, 116, 0); }
}

.pulse-btn {
    animation: pulse 2s infinite;
}

/* Sections General */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-bronze-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--color-silver);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
    padding: 24px 0;
}

.header.sticky {
    padding: 14px 0;
    background: rgba(7, 7, 9, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.logo-svg {
    width: 48px;
    height: 48px;
    color: var(--color-bronze-light); /* Platina brilhante do logo */
    transition: var(--transition-smooth);
}

.logo:hover .logo-svg {
    color: var(--text-primary);
    transform: scale(1.05) rotate(5deg);
}

.nav-menu-header {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-bronze-light);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle .line {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px 0;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 150px 80px 100px 24px;
    background-color: var(--bg-primary);
    z-index: 2;
}

.hero-content {
    max-width: 550px;
    width: 100%;
}

.hero-badge {
    background: rgba(229, 232, 235, 0.08);
    border: 1px solid rgba(229, 232, 235, 0.2);
    color: var(--color-bronze-light);
    padding: 6px 16px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    display: inline-block;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-right-bleed {
    background-image: url('images/hero_barber.png');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    min-height: 100%;
}

.hero-right-bleed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--bg-primary) 0%, transparent 60%);
    pointer-events: none;
}

.image-border-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-bronze);
    opacity: 0.3;
    pointer-events: none;
    transform: translate(8px, 8px);
    transition: var(--transition-smooth);
}

.image-border-glow:hover::before {
    transform: translate(0px, 0px);
    opacity: 0.8;
}

.hero-img {
    display: block;
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: cover;
}

/* ==========================================================================
   DIFFERENTIALS SECTION
   ========================================================================== */
.differentials {
    background-color: var(--bg-secondary);
    padding: 60px 0;
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
}

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

.diff-card {
    text-align: center;
    padding: 24px;
    transition: var(--transition-smooth);
}

.diff-icon {
    margin-bottom: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.diff-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--color-bronze-light);
    transition: var(--transition-smooth);
}

.diff-card:hover .diff-icon svg {
    stroke: var(--text-primary);
    transform: scale(1.1);
}

.diff-title {
    font-size: 1.2rem;
    color: var(--color-silver);
    margin-bottom: 12px;
}

.diff-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.grid-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-card);
    border: var(--border-glass);
    padding: 40px 32px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-bronze-light);
    box-shadow: var(--glow-bronze);
}

.service-icon {
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
}

.service-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--color-bronze-light);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon svg {
    stroke: var(--text-primary);
    transform: scale(1.1);
}

/* Se for o card destacado (Combo), usar bronze-light por padrão */
.highlighted-card .service-icon svg {
    stroke: var(--color-bronze-light);
}

.service-name {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.service-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-btn {
    color: var(--color-bronze-light);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-block;
    border-bottom: 1px solid transparent;
}

.service-btn:hover {
    color: var(--text-primary);
    border-bottom-color: var(--color-bronze-light);
}

/* Featured / Highlighted Card (Combo) */
.highlighted-card {
    border-color: rgba(188, 163, 116, 0.4);
    box-shadow: 0 10px 30px rgba(142, 111, 71, 0.1);
}

.service-badge-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-bronze);
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
}

/* ==========================================================================
   ABOUT & FOUNDER SECTIONS
   ========================================================================== */
.about {
    background-color: var(--bg-secondary);
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.about-left-bleed {
    background-image: url('images/space_barber.png');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    min-height: 100%;
}

.about-left-bleed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, var(--bg-secondary) 0%, transparent 60%);
    pointer-events: none;
}

.about-right {
    display: flex;
    align-items: center;
    padding: 120px 24px 120px 80px;
    z-index: 2;
}

.about-content {
    max-width: 550px;
    width: 100%;
}

.about-text, .founder-text {
    font-size: 1rem;
    margin-bottom: 20px;
}

.founder-section {
    background-color: var(--bg-primary);
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-bottom: var(--border-glass);
}

.founder-left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 120px 80px 120px 24px;
    z-index: 2;
}

.founder-content {
    max-width: 550px;
    width: 100%;
}

.founder-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-bronze-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: -10px;
    margin-bottom: 24px;
    font-weight: 500;
}

.founder-right-bleed {
    background-image: url('images/founder_barber.png');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    min-height: 100%;
}

.founder-right-bleed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--bg-primary) 0%, transparent 60%);
    pointer-events: none;
}

.founder-signature {
    font-family: var(--font-titles);
    font-size: 1.5rem;
    color: var(--color-bronze-light);
    margin-top: 30px;
    font-style: italic;
    border-left: 2px solid var(--color-bronze);
    padding-left: 16px;
}

/* ==========================================================================
   CONTACT & LOCATION
   ========================================================================== */
.contact {
    background-color: var(--bg-secondary);
    border-top: var(--border-glass);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.info-block {
    margin-bottom: 40px;
}

.info-subtitle {
    font-size: 1.1rem;
    color: var(--color-bronze-light);
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1px;
}

.info-desc {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.hours-list li span:first-child {
    font-weight: 500;
    color: var(--text-primary);
}

/* CTA Card */
.contact-cta-card {
    background: linear-gradient(145deg, #121217 0%, #08080a 100%);
    border: var(--border-glass-gold);
    padding: 40px;
    box-shadow: var(--glow-bronze);
    text-align: center;
}

.cta-card-title {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--color-silver);
}

.cta-card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
    background-color: var(--bg-primary);
    padding: 80px 0 30px 0;
    border-top: var(--border-glass);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.social-links a {
    color: var(--color-bronze-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    color: var(--text-primary);
    border-bottom-color: var(--color-bronze-light);
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-bronze-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.easy-link {
    color: var(--color-bronze-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.easy-link:hover {
    color: var(--text-primary);
}

/* ==========================================================================
   LGPD BANNER & PRIVACY MODAL
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(14, 14, 18, 0.95);
    backdrop-filter: blur(10px);
    border: var(--border-glass-gold);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 2000;
    max-width: 600px;
    width: calc(100% - 40px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transition: opacity 0.5s, transform 0.5s;
}

.cookie-banner.hidden {
    opacity: 0;
    transform: translate(-50%, 20px);
    pointer-events: none;
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-secondary);
    border: var(--border-glass-gold);
    width: 100%;
    max-width: 550px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 50px rgba(0,0,0,0.8);
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-modal:hover {
    color: var(--text-primary);
}

.modal h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--color-bronze-light);
}

.modal-body p {
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .grid-services {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero, .about, .founder-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-left, .about-right, .founder-left {
        padding: 80px 24px;
        justify-content: center;
        text-align: center;
        position: relative;
        z-index: 2;
        background-color: transparent;
    }

    .hero-content, .about-content, .founder-content {
        margin: 0 auto;
    }

    .hero-right-bleed, .about-left-bleed, .founder-right-bleed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 100%;
        z-index: 1;
    }

    .hero-right-bleed::before, .founder-right-bleed::before {
        background: linear-gradient(to bottom, rgba(10, 11, 13, 0.75) 0%, rgba(10, 11, 13, 0.95) 100%) !important;
    }
    
    .about-left-bleed::before {
        background: linear-gradient(to bottom, rgba(17, 19, 23, 0.75) 0%, rgba(17, 19, 23, 0.95) 100%) !important;
    }
    
    .grid-differentials {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .grid-services {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Navigation Drawer Mobile */
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-secondary);
        border-left: var(--border-glass);
        padding: 24px 40px 40px;
        transition: var(--transition-smooth);
        z-index: 999;
        display: flex;
        flex-direction: column;
    }

    .nav-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(180, 190, 205, 0.12);
    }

    .mobile-menu-title {
        font-family: var(--font-accent);
        font-size: 1.1rem;
        letter-spacing: 3px;
        color: var(--platinum);
        font-weight: 500;
    }

    .close-menu {
        background: none;
        border: 1px solid rgba(180, 190, 205, 0.2);
        border-radius: 8px;
        color: var(--platinum);
        cursor: pointer;
        padding: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition-smooth);
    }

    .close-menu:hover {
        background: rgba(180, 190, 205, 0.1);
        border-color: var(--platinum);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 24px;
    }
    
    #nav-cta {
        display: none;
    }
    
    /* Hamburger to X animation */
    .mobile-toggle.active .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-toggle.active .line:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* Alinhamento de contêiner para telas muito largas */
@media (min-width: 1200px) {
    .hero-left {
        padding-left: calc(50vw - 576px);
    }
    .about-right {
        padding-right: calc(50vw - 576px);
    }
    .founder-left {
        padding-left: calc(50vw - 576px);
    }
}
