/* Variáveis e Reset */
:root {
    --primary: #FF0066;
    --secondary: #FF6B6B;
    --dark: #1A1A1A;
    --light: #FFFFFF;
    --glass: rgba(26, 26, 26, 0.95);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient: linear-gradient(45deg, var(--primary), var(--secondary));
    --glow: 0 0 15px rgba(255, 0, 102, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    height: 45px;
    width: auto;
}

.nav-brand span {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light);
    border-radius: 3px;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-image:first-child {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    color: var(--light);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    color: var(--light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Navbar */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--glass);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        transition: 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
    }

    .hero {
        align-items: flex-start;
        padding-top: 80px;
    }

    .hero-content {
        padding: 1rem;
        margin-top: 0;
        padding-top: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        padding: 0 10px;
        word-wrap: break-word;
        white-space: normal;
        margin-top: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 15px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 90px;
    }

    .hero-content {
        margin-top: 0;
        padding-top: 2.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        margin-top: 1rem;
    }
}

/* Responsividade Geral */
@media (max-width: 768px) {
    .section-header {
        padding: 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .sobre-grid,
    .servicos-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .sobre-img {
        height: 250px;
    }

    .servico-card {
        width: 280px;
        height: auto;
        min-height: 400px;
        border-radius: 20px;
        overflow: visible;
        perspective: none;
        margin: 0 auto;
        padding: 15px;
        background: transparent;
        border: none;
    }

    .card-background {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 25px;
        opacity: 0.3;
    }

    .card-inner {
        min-height: 370px;
    }

    .card-front {
        min-height: 370px;
        border-radius: 20px !important;
    }

    .card-inner {
        transform-style: flat;
        transition: none;
        position: relative;
        width: 100%;
        height: auto;
        min-height: auto;
        text-align: center;
        z-index: 1;
    }

    .servico-card:hover .card-inner {
        transform: none;
    }

    .card-front {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        border-radius: 20px !important;
        width: 100%;
        height: auto;
        min-height: 380px;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .card-back {
        display: none;
    }

    .servico-card .card-front .card-badge {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        background: var(--gradient);
        padding: 0.5rem 1.5rem;
        border-radius: 20px;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 2rem !important;
        margin-top: 0 !important;
        width: auto;
        order: 1;
        z-index: 1;
    }

    .servico-card .card-front .preco {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        margin-bottom: 0.5rem;
        margin-top: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        order: 2;
        position: relative;
        z-index: 2;
    }

    .valor {
        font-size: 2rem;
        font-weight: bold;
        color: var(--primary);
    }

    .periodo {
        font-size: 0.9rem;
        opacity: 0.8;
    }

    .card-front p {
        order: 3;
        margin: 1rem 0 0.5rem 0;
        text-align: center;
        line-height: 1.5;
        padding: 0 0.5rem;
        font-size: 0.95rem;
    }

    /* Lista de tópicos dos planos */
    .planos-lista {
        order: 3;
        list-style: none;
        padding: 0;
        margin: 0.5rem 0;
        text-align: left;
        width: 100%;
        max-width: 240px;
        align-self: center;
    }

    .planos-lista li {
        padding: 0.3rem 0;
        padding-left: 1.5rem;
        position: relative;
        font-size: 0.9rem;
        color: var(--light);
        line-height: 1.4;
    }

    .planos-lista li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--primary);
        font-weight: bold;
        font-size: 1rem;
    }

    /* Adicionar botão diretamente no card frontal */
    .card-front .btn-secondary {
        display: inline-block;
        margin-top: 0.5rem;
        background: var(--gradient);
        color: var(--light);
        padding: 0.8rem 1.5rem;
        border-radius: 50px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        font-weight: 600;
        transition: transform 0.3s, box-shadow 0.3s;
        order: 4;
    }

    .card-front .btn-secondary:hover {
        transform: translateY(-2px);
        box-shadow: var(--glow);
    }

    /* Ajuste para o card em destaque */
    .servico-card.featured {
        border: 2px solid var(--primary);
        box-shadow: var(--glow);
    }

    .depoimento-card {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .servico-card {
        width: 250px;
        height: 250px;
    }

    .depoimento-card {
        max-width: 280px;
    }
}

/* Seção de Serviços */
.servicos {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--dark), #000);
    overflow: hidden;
}

/* Cards de Serviços */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.servico-card {
    width: 280px;
    height: auto;
    min-height: 350px;
    margin: 0 auto;
    position: relative;
    padding: 15px;
}

/* Card de fundo individual para cada pacote */
.card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    opacity: 0.4;
    z-index: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.servico-card:hover .card-background {
    opacity: 0.6;
    transform: scale(1.02);
}

.card-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.card-front, .card-back {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 50%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
}

.card-badge {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    background: var(--gradient);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    order: 1;
    z-index: 1;
}

/* Ajuste dos preços e períodos */
.preco {
    margin: 0.5rem 0;
    text-align: center;
    order: 2;
}

.valor {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.periodo {
    font-size: 1.2rem;
    opacity: 0.8;
}

.beneficios {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
    width: 100%;
}

.beneficios li {
    margin: 0.8rem 0;
    font-size: 1rem;
}

/* Lista de tópicos dos planos - Desktop */
.planos-lista {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0;
    text-align: left;
    width: 100%;
    max-width: 240px;
    order: 3;
    align-self: center;
}

.planos-lista li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--light);
    line-height: 1.4;
}

/* Botão dentro dos cards */
.card-front .btn-secondary {
    margin-top: 0.5rem;
    order: 4;
}

.planos-lista li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: var(--light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow);
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--light);
    text-decoration: none;
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--gradient);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--glow);
}

/* Estilos para a seção de depoimentos */
.depoimentos {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--dark), #000);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.depoimento-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.transformacao-imagem {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.antes-depois {
    display: flex;
    width: 100%;
    height: 100%;
}

.antes, .depois {
    width: 50%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.antes {
    border-right: 2px solid var(--primary);
}

.antes-depois::after {
    content: 'ANTES | DEPOIS';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--light);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.depoimento-content {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.estrelas {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.depoimento-texto {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--light);
    flex-grow: 1;
}

.depoimento-tempo {
    color: var(--primary);
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    display: inline-block;
    text-align: center;
    width: 100%;
    margin-top: auto;
    margin-bottom: 0;
}

/* Ajuste responsivo */
@media (max-width: 1200px) {
    .transformacao-imagem {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .servicos-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .servico-card {
        width: 280px;
        height: auto;
        min-height: auto;
    }

    .card-front, .card-back {
        padding: 1rem;
        border-radius: 20px;
    }

    .valor {
        font-size: 2rem;
    }

    .periodo {
        font-size: 1rem;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .depoimento-card {
        max-width: 300px;
    }

    .transformacao-imagem {
        height: 180px;
    }

    .depoimento-content {
        padding: 1rem;
    }

    .depoimento-texto {
        font-size: 0.9rem;
    }
}

/* Remover o efeito hover que estava escondendo a imagem "antes" */
.depoimento-card:hover .antes {
    width: 50%;
    opacity: 1;
}

.depoimento-card:hover .depois {
    width: 50%;
}

/* Adicionar overlay gradiente nas imagens */
.antes::after,
.depois::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    border-radius: 20px;
    pointer-events: none;
}

/* Formulário Glassmorphism */
.contato-form {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 5px;
    color: var(--light);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    transition: 0.3s;
    pointer-events: none;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    background: var(--dark);
    padding: 0 0.5rem;
}

/* Estilos do Footer */
.footer {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    padding: 2rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.footer-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
    width: 100%;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon {
    width: 35px;
    height: 35px;
    display: block;
}

.contact-info {
    margin: 1rem 0;
    text-align: center;
    width: 100%;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.footer-links {
    margin: 1rem 0;
}

.footer-hours,
.footer-extra {
    color: var(--light);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.footer-hours h3,
.footer-extra h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-hours ul,
.footer-payment ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-hours li,
.footer-payment li {
    font-size: 0.95rem;
    opacity: 0.9;
}

.hours-note {
    font-size: 0.85rem;
    opacity: 0.8;
    font-style: italic;
}

.footer-quote p {
    font-size: 1rem;
    line-height: 1.4;
    max-width: 280px;
}

/* Ajustes mobile para o footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem;
    }

    .footer-content {
        padding: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-info {
        text-align: center;
        align-items: center;
    }

    .footer-logo {
        width: 100px;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .social-links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin: 1rem 0;
        width: 100%;
    }

    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        transition: transform 0.3s;
    }

    .social-icon:hover {
        transform: translateY(-3px);
    }

    .contact-info {
        margin: 1rem 0;
    }

    .contact-info h3 {
        font-size: 1.1rem;
        color: var(--primary);
        margin-bottom: 0.5rem;
    }

    .contact-info p {
        font-size: 0.9rem;
        margin: 0.3rem 0;
        color: var(--light);
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-links a {
        color: var(--light);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s;
    }

    .footer-links a:hover {
        color: var(--primary);
    }

    .footer-bottom {
        text-align: center;
        margin-top: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid var(--glass-border);
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.7);
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 360px) {
    .footer {
        padding: 1.5rem 0.5rem;
    }

    .footer-logo {
        width: 80px;
    }

    .social-icon {
        width: 25px;
        height: 25px;
    }

    .contact-info h3 {
        font-size: 1rem;
    }

    .contact-info p {
        font-size: 0.8rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }
}

/* Animações */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 102, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Media Queries */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
        height: 60px;
    }

    .nav-logo {
        height: 35px;
    }

    .nav-brand span {
        font-size: 1.5rem;
    }

    .section-header {
        padding: 2rem 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .nav-menu {
        display: none;
    }
    
    .hero-content {
        padding: 1rem;
        justify-content: center;
    }
    
    .hero-image {
        background-position: center 20%;
    }
    
    .sobre-grid {
        padding: 1rem;
        gap: 1.5rem;
    }

    .sobre-img {
        height: 300px;
    }

    .achievements li {
        padding: 0.5rem;
    }

    .number {
        font-size: 1.8rem;
    }

    .metodo-text {
        padding: 1.5rem;
        margin: 1rem;
    }

    .metodo-lista li {
        font-size: 0.95rem;
        margin: 0.8rem 0;
        padding-left: 1.5rem;
    }

    .historia-container {
        padding: 1rem;
        gap: 2rem;
    }

    .historia-content {
        padding: 1.5rem;
    }

    .historia-text {
        font-size: 0.95rem;
    }

    .servicos-grid {
        padding: 1rem;
        gap: 1.5rem;
    }

    .card-background {
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
        opacity: 0.25;
    }

    .servico-card {
        margin: 0.5rem;
    }

    .depoimentos-grid {
        padding: 1rem;
        gap: 1.5rem;
    }

    .transformacao-imagem {
        height: 250px;
    }

    .depoimento-content {
        padding: 1rem;
    }

    .depoimento-texto {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .contato-form {
        padding: 1.5rem;
        margin: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
}

/* Estilização dos cards de achievements */
.achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.achievements li {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s;
}

.achievements li:hover {
    transform: translateY(-5px);
}

/* Efeito de luz deslizante */
.achievements li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: lightSlide 3s infinite;
}

.achievements .number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    display: block;
    filter: drop-shadow(var(--glow));
}

.achievements .text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Animação da luz deslizante */
@keyframes lightSlide {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@media (max-width: 768px) {
    .achievements {
        grid-template-columns: 1fr;
    }
}

/* Ajuste para todas as section-header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-top: 6rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.section-header p {
    font-size: 1.4rem;
    color: var(--light);
    opacity: 0.9;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 0, 102, 0.1) 25%,
        rgba(255, 0, 102, 0.2) 50%,
        rgba(255, 0, 102, 0.1) 75%,
        transparent 100%
    );
    animation: wave 3s infinite linear;
    z-index: 1;
}

@keyframes wave {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }
    100% {
        transform: translateX(100%) skewX(-15deg);
    }
}

/* Ajuste da grid e imagem do sobre */
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 0 5%;
    align-items: center;
}

.sobre-img {
    width: 100%;
    height: 600px; /* Altura ajustada para a nova imagem */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--glow);
    position: relative;
}

.sobre-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(0, 0, 0, 0.3)
    );
}

.sobre-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.sobre-img:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .section-header {
        padding-top: 4rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sobre-img {
        height: 400px; /* Altura reduzida para mobile */
    }
}

/* Seção Método JS */
.metodo {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--dark), #000);
    position: relative;
    overflow: hidden;
}

.metodo-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    z-index: 2;
}

/* Adicione o background com a imagem */
.metodo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: none; /* Removendo a imagem de fundo */
    opacity: 0.1;
    z-index: 1;
}

.metodo-text {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--glow);
    position: relative;
    z-index: 2;
}

.metodo-logo {
    width: 120px;
    height: auto;
    margin-bottom: 2rem;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.metodo-descricao {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light);
    opacity: 0.9;
}

.metodo-lista {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.metodo-lista li {
    font-size: 1.1rem;
    margin: 1.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--light);
    transition: transform 0.3s;
}

.metodo-lista li:hover {
    transform: translateX(10px);
}

.metodo-lista li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .metodo-text {
        padding: 2rem;
    }

    .metodo-logo {
        width: 80px;
        margin-bottom: 1.5rem;
    }

    .metodo-descricao {
        font-size: 1.1rem;
    }

    .metodo-lista li {
        font-size: 1rem;
        margin: 1rem 0;
    }
}

/* Seção História */
.historia {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #000, var(--dark));
    position: relative;
    overflow: hidden;
}

.historia-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.historia-content {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--glow);
}

.historia-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.destaque {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.conquistas-lista {
    margin: 2rem 0;
}

.conquista-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 1.1rem;
}

.conquista-item .icon {
    font-size: 1.5rem;
}

.historia-paragrafos p {
    margin: 1.5rem 0;
    line-height: 1.8;
    color: var(--light);
    opacity: 0.9;
}

.historia-cta {
    margin-top: 3rem;
    text-align: center;
}

.convite {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.historia-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--glow);
}

.historia-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.historia-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .historia-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .historia-content {
        padding: 2rem;
    }

    .historia-text h3 {
        font-size: 1.8rem;
    }
}

/* Atualizar o grid de depoimentos */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Ajustar responsividade */
@media (min-width: 1200px) {
    .depoimentos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .sobre-img {
        height: 250px;
    }

    .metodo-text {
        padding: 1rem;
    }

    .transformacao-imagem {
        height: 220px;
    }

    .depoimento-texto {
        font-size: 0.85rem;
    }
}

/* Estilos para página de agradecimento */
.agradecimento-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: var(--dark);
}

.agradecimento-logo {
    width: 120px;
    margin-bottom: 2rem;
}

.agradecimento-container h1 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.agradecimento-container p {
    color: var(--light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .agradecimento-container h1 {
        font-size: 2rem;
    }
    
    .agradecimento-container p {
        font-size: 1rem;
    }
}

/* Popup de Agradecimento */
.agradecimento-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.agradecimento-overlay.active {
    display: flex;
}

.agradecimento-popup {
    background: var(--dark);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--glass-border);
    max-width: 90%;
}

/* Ajustes para telas muito pequenas */
@media (max-width: 360px) {
    .servico-card {
        width: 220px;
        height: 220px;
    }

    .depoimento-card {
        max-width: 280px;
    }

    .transformacao-imagem {
        height: 160px;
    }
}

.social-icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: translateY(-3px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
}

@media (max-width: 768px) {
    .social-icon {
        width: 25px;
        height: 25px;
    }
    
    .social-links {
        gap: 1.5rem;
    }
}

/* Adicionar ao CSS existente */
.footer-links {
    margin: 1.5rem 0;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.separator {
    color: var(--light);
    margin: 0 1rem;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .footer-links {
        margin: 1rem 0;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .separator {
        margin: 0 0.5rem;
    }
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--glow);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* Botão WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.whatsapp-link {
    display: block;
    transition: transform 0.3s ease;
}

.whatsapp-icon {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0.5));
}

.whatsapp-link:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .whatsapp-button {
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-icon {
        width: 45px;
        height: 45px;
    }
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        height: 100vh;
        min-height: 500px;
        align-items: flex-start;
        padding-top: 80px;
    }

    .hero-image {
        background-position: center;
        background-size: cover;
    }

    .hero-content {
        height: auto;
        padding: 20px;
        padding-top: 2rem;
        margin-top: 0;
        justify-content: flex-start;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        margin-top: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Navbar */
    .navbar {
        height: 60px;
        padding: 0 15px;
    }

    .nav-brand img {
        height: 40px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        transition: 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    /* Seções */
    .section-header {
        padding: 40px 20px 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    /* Cards de Serviços */
    .servicos-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 30px;
    }

    .card-background {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        opacity: 0.3;
    }

    .servico-card {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        height: auto;
    }

    /* Depoimentos */
    .depoimentos-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .depoimento-card {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    /* Formulário */
    .contato-form {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 20px;
    }

    /* Footer */
    .footer {
        padding: 30px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-logo {
        max-width: 120px;
    }

    .social-links {
        gap: 15px;
        margin: 15px 0;
    }

    .footer-info {
        text-align: center;
        align-items: center;
    }

    .contact-info {
        text-align: center;
        margin: 15px 0;
        width: 100%;
    }

    .contact-info p {
        font-size: 0.9rem;
        margin: 8px 0;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        align-items: center;
    }

    /* Botões fixos */
    .back-to-top,
    .whatsapp-button {
        width: 40px;
        height: 40px;
    }

    .back-to-top {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-button {
        bottom: 15px;
        left: 15px;
    }

    .whatsapp-icon {
        width: 40px;
        height: 40px;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .servico-card {
        max-width: 240px;
    }

    .depoimento-card {
        max-width: 280px;
    }

    .footer-logo {
        max-width: 100px;
    }
}

/* Ajuste para imagens de fundo */
.hero-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
} 