@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --bg-color: #00020D;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --primary: #007AFF;
    --primary-light: #7DBBFF;
    --primary-gradient: linear-gradient(90deg, #007AFF 0%, #7DBBFF 100%);
    --accent: #FF9500;
    --text-color: #FEFEFE;
    --text-muted: rgba(254, 254, 254, 0.7);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

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

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

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.txt-degrade {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.bold {
    font-weight: 700;
}

.laranja {
    color: var(--accent);
}

/* Button Component */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.5);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 60px;
    background-image: linear-gradient(to right, rgba(0, 2, 13, 0.95) 35%, rgba(0, 2, 13, 0.6) 70%, rgba(0, 2, 13, 0.2) 100%), url('../images/Hero-3.webp');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

.hero .container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.hero-content {
    max-width: 600px;
    text-align: left;
}

.hero-logo {
    width: 200px;
    margin-bottom: 32px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.typing-target {
    display: inline-block;
    border-right: 3px solid var(--primary);
    padding-right: 5px;
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: var(--primary); }
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

/* Membership Section */
.club {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgba(0, 122, 255, 0.05) 0%, transparent 50%);
}

.club-header {
    text-align: center;
    margin-bottom: 60px;
}

.club-header h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.club-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.club-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.club-card:hover {
    border-color: rgba(0, 122, 255, 0.3);
    transform: translateY(-5px);
}

.club-card img {
    height: 80px;
    margin-bottom: 24px;
}

.club-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 20px;
}

.price-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
}

.price-cents {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-period {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-left: 4px;
}

.club-mockup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
}

.club-mockup {
    max-width: 280px;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: radial-gradient(circle at 90% 80%, rgba(0, 122, 255, 0.05) 0%, transparent 50%);
    text-align: center;
}

.team h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
}

.team-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.team-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-right 15s linear infinite;
}

.team-track:hover {
    animation-play-state: paused;
}

.team-track.paused {
    animation-play-state: paused !important;
}

@keyframes scroll-right {
    0% {
        transform: translate3d(calc(-50% - 10px), 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

.team-member {
    flex: 0 0 280px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
}

.team-member img {
    width: 100%;
    height: 355px;
    object-fit: cover;
}

.team .btn-primary {
    margin-top: 40px;
}

/* Services Section */
.services {
    padding: 100px 0;
    position: relative;
}

.services h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.service-item:hover {
    border-color: rgba(0, 122, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.service-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
}

.service-price {
    font-weight: 700;
    color: var(--primary-light);
}

/* Hair Prosthesis Section */
.prosthesis {
    padding: 100px 0;
    background: #020412;
}

.prosthesis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.prosthesis-content h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.prosthesis-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.prosthesis-video {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid var(--primary);
    aspect-ratio: 9/16;
    max-width: 320px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.2);
}

.prosthesis-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Location Section */
.location {
    padding: 100px 0;
    text-align: center;
}

.location h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.location p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.map-container {
    max-width: 900px;
    margin: 0 auto 30px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #020412;
    text-align: center;
    border-top: 1px solid var(--card-border);
}

.about-logo {
    width: 120px;
    margin-bottom: 24px;
}

.about h3 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.about p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Footer Section */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--card-border);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer a {
    color: var(--primary-light);
    text-decoration: none;
}

/* Modal Styling */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(0, 2, 13, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #05081c;
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    text-align: center;
}

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

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
}

.modal h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.modal p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--primary-light);
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 16px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.modal .btn-primary {
    width: 100%;
    margin-top: 10px;
}

/* Animations */
.scroll-bottom, .scroll-top, .scroll-left, .scroll-right {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-top { transform: translateY(-30px); }
.scroll-left { transform: translateX(-30px); }
.scroll-right { transform: translateX(30px); }

.ativo {
    opacity: 1;
    transform: translate(0) !important;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .club-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .services-list {
        grid-template-columns: 1fr;
    }
    .prosthesis-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .prosthesis-content {
        order: 2;
        text-align: center;
    }
    .prosthesis-video {
        order: 1;
    }
}

@media (max-width: 768px) {
    .hero {
        background-image: linear-gradient(to bottom, rgba(0, 2, 13, 0.6), rgba(0, 2, 13, 0.98)), url('../images/Hero-mob.webp');
        padding: 100px 0 40px;
    }
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .club-mockup-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .modal-content {
        padding: 30px 20px;
    }
}
