/* About Section */
.about-section {
    padding: 80px 0 100px;
    background-color: var(--bg-light);
}

.about-section h1 {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-text {
    padding-top: 60px;
}

.about-text p {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--primary-black);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Values Section */
.values-section {
    padding: 0;
    background-color: var(--primary-black);
    position: relative;
    overflow: hidden;
}

.values-content {
    position: relative;
    background-image: url('./material/banner_3.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 80px;
}

.values-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
}

.values-content .container {
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px 0;
    position: relative;
}

.value-card {
    text-align: left;
    padding: 0 40px;
    background-color: transparent;
    color: var(--primary-white);
    position: relative;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 1px;
    height: calc(100% + 20px);
    background-color: rgba(255, 255, 255, 0.3);
}

.value-card:first-child::before {
    display: none;
}

.value-card:first-child {
    padding-left: 0;
}

.value-card:last-child {
    padding-right: 0;
}

.value-card:hover {
    transform: none;
    box-shadow: none;
}

.value-icon {
    margin-bottom: 20px;
    color: var(--primary-white);
}

.value-icon svg {
    width: 35px;
    height: 35px;
}

.value-card h3 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-white);
}

.value-card p {
    font-size: 12px;
    line-height: 1.6;
    color: #999;
}

/* Brand Banner */
.brand-banner {
    background-color: var(--primary-white);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 0;
    line-height: 0;
}

.brand-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* The Team Section */
.team-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.team-text h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.team-text p {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--primary-black);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Team Slider */
.team-slider {
    position: relative;
}

.team-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.team-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.team-slide.active {
    opacity: 1;
}

.team-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.team-dot {
    width: 10px;
    height: 10px;
    border: 2px solid var(--primary-black);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.team-dot.active {
    background-color: var(--primary-black);
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-black);
    background-image: url('./material/BG_nao_encontras_o_par.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text-left h2 {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-white);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.cta-text-right {
    text-align: left;
}

.cta-text-right p {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-white {
    display: inline-block;
    background-color: var(--primary-white);
    color: var(--primary-black);
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: #eee;
    transform: translateY(-2px);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.gallery-section h2 {
    font-size: 64px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -3px;
    line-height: 1.05;
    margin-bottom: 50px;
}

.gallery-wrapper {
    position: relative;
    overflow: hidden;
}

.gallery-page {
    display: none;
}

.gallery-page.active {
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.gallery-numbers {
    display: flex;
    gap: 5px;
}

.page-nav,
.page-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.page-nav {
    font-size: 16px;
}

.page-nav:hover:not(:disabled) {
    background: #f0f0f0;
}

.page-nav:disabled {
    color: #ccc;
    cursor: not-allowed;
}

.page-num {
    border: 2px solid transparent;
}

.page-num:hover {
    border-color: #e0e0e0;
}

.page-num.active {
    background: var(--primary-black);
    color: var(--primary-white);
    border-color: var(--primary-black);
}

/* Store Location */
.store-location {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.location-text h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.location-text .address,
.location-text .hours {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.location-text strong {
    color: var(--primary-black);
    font-weight: 700;
}

.btn-black {
    display: inline-block;
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 15px 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-black:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.location-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Active nav state */
header nav ul li a.active {
    position: relative;
}

header nav ul li a.active::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 42px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 36px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }
}