:root {
    --slate-deep: #0a0a0c;
    --slate-mid: #16161a;
    --smoke-light: rgba(255, 255, 255, 0.05);
    --smoke-dark: rgba(0, 0, 0, 0.7);
    --accent: #c5a367;
    --text-main: #f4f4f4;
    --text-dim: #888888;
    --transition: cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
    background-color: var(--slate-deep);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.4;
}

/* Materiality: Angular Slate Base */
.bg-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 30%, rgba(30,30,35, 1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(20,20,25, 1) 0%, transparent 50%);
    opacity: 0.6;
}

.noise {
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3ExternalLinkIcon %3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Typography Hierarchy */
h1, h2, h3 {
    font-family: 'Syncopate', sans-serif;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.mono {
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--accent);
}

/* Layout Construction */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: linear-gradient(to bottom, var(--smoke-dark), transparent);
}

nav .nav-instagram {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

nav .nav-instagram:hover {
    color: var(--text-main);
}

nav .nav-instagram svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.logo {
    font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    border-left: 4px solid var(--accent);
    padding-left: 1rem;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    mix-blend-mode: exclusion;
}

/* Smoked Translucence Elements */
.glass-card {
    background: var(--smoke-light);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    pointer-events: none;
}

/* ===================== */
/* CLUBE OPEN - EMPHASIS */
/* ===================== */
#clube-open {
    padding-top: 4rem;
    padding-bottom: 6rem;
}

#clube-open h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

#clube-open h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    background: rgba(255,255,255,0.05);
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.service-item {
    background: var(--slate-deep);
    padding: 3rem 2rem;
    transition: all 0.4s var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    border-left: 3px solid transparent;
}

.service-item:hover {
    background: var(--slate-mid);
    transform: translateY(-8px);
    border-left-color: var(--accent);
}

.service-item .mono {
    font-size: 0.65rem;
    opacity: 0.7;
}

.service-item h3 {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0px;
    color: var(--accent);
}

.price-tag {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    color: var(--text-main);
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.price-tag span {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.service-item .cta-button {
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 0.65rem;
    text-align: center;
}

/* Decorative Skewed Elements */
.decor-line {
    position: absolute;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--slate-mid);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.cta-button {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: var(--accent);
    color: var(--slate-deep);
    text-decoration: none;
    font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
}

.cta-button:hover {
    transform: scale(1.05) skewX(-5deg);
    filter: brightness(1.1);
}

section {
    padding: 8rem 10%;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== */
/* EXPERIÊNCIA SECTION   */
/* ===================== */
.experience-section {
    padding: 8rem 10%;
    position: relative;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.exp-card {
    background: var(--slate-mid);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s var(--transition);
    position: relative;
    overflow: hidden;
}

.exp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0%;
    background: var(--accent);
    transition: height 0.5s var(--transition);
}

.exp-card:hover::before {
    height: 100%;
}

.exp-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197,163,103,0.2);
}

.exp-card .exp-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.exp-card h3 {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0;
    margin-bottom: 1rem;
    color: var(--accent);
}

.exp-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================== */
/* CONTATO SECTION       */
/* ===================== */
.contact-section {
    padding: 6rem 10%;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--slate-mid);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s var(--transition);
    text-decoration: none;
    color: inherit;
}

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

.contact-card svg {
    width: 32px;
    height: 32px;
    fill: var(--accent);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-card .contact-info h3 {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.contact-card .contact-info p {
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.6;
}
/* ===================== */
/* NOSSA EQUIPE SECTION  */
/* ===================== */
.team-section {
    padding: 0;
}

.team-banner {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 550px;
    overflow: hidden;
}

.team-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 12, 0.97) 0%,
        rgba(10, 10, 12, 0.85) 25%,
        rgba(10, 10, 12, 0.5) 55%,
        rgba(10, 10, 12, 0.25) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 4rem 10%;
}

.team-text {
    max-width: 600px;
}

.team-text .mono {
    margin-bottom: 0.8rem;
    display: block;
}

.team-text h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.team-text p {
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

@media (max-width: 850px) {
    .team-banner {
        height: 65vh;
        min-height: 400px;
    }
    .team-overlay {
        padding: 3rem 5%;
    }
}

/* Carousel */
.carousel-section {
    padding: 2rem 10% 8rem;
}

.carousel-wrapper {
    position: relative;
}

.carousel-container {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding: 1rem 0;
}

.carousel-track img {
    scroll-snap-align: start;
    width: 500px;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.5s var(--transition), opacity 0.3s ease;
}

.carousel-track img:hover {
    transform: scale(1.02);
}

/* Carousel Nav Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--slate-mid);
    color: var(--accent);
    border: 1px solid rgba(255,255,255,0.15);
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--accent);
    color: var(--slate-deep);
    border-color: var(--accent);
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dots .dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

/* Footer */
footer {
    padding: 5rem 10%;
    border-top: 1px solid var(--smoke-light);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
}

/* Mobile Adjustments */
@media (max-width: 850px) {
    .hero {
        padding: 0 5%;
    }
    .hero h1 {
        font-size: 2.8rem;
        line-height: 1;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
    .cta-button {
        font-size: 0.65rem;
        padding: 1.2rem 2rem;
    }
    .decor-line { display: none; }
    section, .experience-section, .contact-section, .carousel-section { padding: 5rem 5%; }
    .carousel-track img {
        width: 80vw;
        height: auto;
    }
    .carousel-btn { display: none; }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    footer {
        flex-direction: column;
        text-align: left;
    }
    footer > div:last-child {
        text-align: left;
    }
}
