/* Reset e Configurações Básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #050505;
    color: #fafafa;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(38, 38, 38, 1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: rgba(250, 250, 250, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #a855f7;
}

/* Botões */
.btn-primary {
    background: linear-gradient(135deg, #a855f7, #9333ea);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-outline {
    background: transparent;
    color: #a855f7;
    padding: 0.75rem 1.5rem;
    border: 2px solid #a855f7;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #a855f7;
    color: white;
}

.btn-white {
    background: white;
    color: #050505;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-white:hover {
    opacity: 0.9;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #050505 0%, #2d1b4e 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(img/studio.jpg);
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.9) 0%, rgba(45, 27, 78, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-top: 5rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #a855f7, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-text {
    font-size: 1.5rem;
    color: rgba(250, 250, 250, 0.9);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid #a855f7;
    border-radius: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-wheel {
    width: 0.375rem;
    height: 0.75rem;
    background: #a855f7;
    border-radius: 0.5rem;
    animation: pulse 2s infinite;
}

/* Seções */
.section-sobre {
    padding: 5rem 0;
    background: linear-gradient(180deg, #050505, #1a0d2e);
}

.section-beneficios {
    padding: 5rem 0;
    background: #050505;
}

.section-servicos {
    padding: 5rem 0;
    background: linear-gradient(180deg, #050505, #1a0d2e);
}

.section-depoimentos {
    padding: 5rem 0;
    background: #050505;
}

.section-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #a855f7, #9333ea);
}

.section-galeria {
    padding: 5rem 0;
    background: linear-gradient(180deg, #1a0d2e, #050505);
}

.section-cursos {
    padding: 5rem 0;
    background: #050505;
}

.section-localizacao {
    padding: 5rem 0;
    background: linear-gradient(180deg, #050505, #1a0d2e);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(250, 250, 250, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.text-gradient {
    background: linear-gradient(135deg, #a855f7, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Sobre Section */
.text-large {
    font-size: 1.125rem;
    color: rgba(250, 250, 250, 0.8);
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: #141414;
    border-radius: 0.75rem;
    border: 1px solid #262626;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #a855f7;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(250, 250, 250, 0.7);
}

.sobre-image {
    position: relative;
    height: 500px;
    border-radius: 1rem;
    overflow: hidden;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a855f7, #6b21a8);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Benefit Cards */
.benefit-card {
    padding: 2rem;
    background: #141414;
    border: 1px solid #262626;
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: #a855f7;
    transform: translateY(-5px);
}

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #a855f7, #9333ea);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    transition: transform 0.3s;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: rgba(250, 250, 250, 0.7);
}

/* Service Cards */
.service-card {
    background: #141414;
    border: 1px solid #262626;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #a855f7;
}

.service-image {
    height: 16rem;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-image-1 {
    background-image: url(img/aparelhos.jpg);
}

.service-image-2 {
    background-image: url(img/idoso.jpg);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-content p {
    color: rgba(250, 250, 250, 0.7);
    margin-bottom: 1rem;
}

.service-content .btn-outline {
    width: 100%;
}

/* Galeria Section - Card Único */
.gallery-single {
    display: flex;
    justify-content: center;
}

.gallery-card {
    max-width: 800px;
    width: 100%;
    background: #141414;
    border: 1px solid #262626;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.gallery-card:hover {
    border-color: #a855f7;
    transform: translateY(-5px);
}

.gallery-card-image {
    height: 450px;
    overflow: hidden;
    position: relative;
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s;
}

.gallery-card:hover .gallery-card-image img {
    transform: scale(1.05);
}

.gallery-card-content {
    padding: 2rem;
    text-align: center;
}

.gallery-card-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: #fafafa;
}

.gallery-card-content p {
    color: rgba(250, 250, 250, 0.7);
    font-size: 1.125rem;
}

/* Cursos Section */
.course-card {
    background: #141414;
    border: 1px solid #262626;
    border-radius: 1rem;
    padding: 2.5rem;
    transition: all 0.3s;
}

.course-card:hover {
    border-color: #a855f7;
    transform: translateY(-5px);
}

.course-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #a855f7, #9333ea);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.course-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #fafafa;
}

.course-description {
    color: rgba(250, 250, 250, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.course-features {
    list-style: none;
    margin-bottom: 2rem;
}

.course-features li {
    color: rgba(250, 250, 250, 0.7);
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.course-card .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

/* Testimonial Cards */
.testimonial-card {
    padding: 1.5rem;
    background: #141414;
    border: 1px solid #262626;
    border-radius: 0.75rem;
}

.stars {
    color: #a855f7;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: rgba(250, 250, 250, 0.8);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a855f7;
    font-weight: 600;
}

.author-name {
    font-weight: 600;
}

.author-info {
    font-size: 0.875rem;
    color: rgba(250, 250, 250, 0.6);
}

/* CTA Section */
.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Localização Section */
.map-container {
    margin-bottom: 3rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #262626;
}

.map-container iframe {
    display: block;
    border-radius: 1rem;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.location-card {
    background: #141414;
    border: 1px solid #262626;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.location-card:hover {
    border-color: #a855f7;
    transform: translateY(-5px);
}

.location-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #a855f7, #9333ea);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.location-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fafafa;
}

.location-card p {
    color: rgba(250, 250, 250, 0.7);
    line-height: 1.8;
}

/* Footer */
.footer {
    padding: 4rem 0;
    background: #050505;
    border-top: 1px solid #262626;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(250, 250, 250, 0.7);
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(250, 250, 250, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #a855f7;
}

.footer-link svg {
    flex-shrink: 0;
}

.footer-schedule {
    color: rgba(250, 250, 250, 0.7);
}

.schedule-time {
    color: #a855f7;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a855f7;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: #a855f7;
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #262626;
    text-align: center;
    color: rgba(250, 250, 250, 0.6);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1.125rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-card-image {
        height: 300px;
    }
    
    .location-info {
        grid-template-columns: 1fr;
    }
}