/* GLOBAIS E VARIÁVEIS */
html {
  scroll-behavior: smooth;
}
:root {
    --background-dark: #111111;
    --primary-blue: rgba(9, 9, 121, 1);
    --primary-accent: rgba(0, 212, 255, 1);
    --text-light: #f0f0f0;
    --text-dark: #333;
    --anton-font: 'Anton', sans-serif;
    --roboto-font: 'Roboto', sans-serif;
}

body {
    font-family: var(--roboto-font);
    background-color: var(--background-dark);
    color: var(--text-light);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

p {
    font-family: 'Helvetica', sans-serif;
    font-weight: 300;
    line-height: 1.6;
}


/* HEADER */
.main-header {
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    height: 50px;
    flex-shrink: 0;
}

.main-header nav a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 25px;
    font-family: var(--anton-font);
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.main-header nav a:hover {
    color: var(--primary-accent);
}


/* HERO SECTION */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60vh;
    padding: 120px 20px 40px;
    background: linear-gradient(rgba(17,17,17,0.8), rgba(17,17,17,0.9)), url('https://via.placeholder.com/1920x1080/111111/FFFFFF?text=Plano+de+Fundo') no-repeat center center/cover;
}

.hero-content h1 {
    font-family: var(--anton-font);
    font-size: 4rem;
    letter-spacing: 2px;
    margin: 0;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 15px auto 30px;
}

.cta-button {
    font-family: var(--anton-font);
    background-color: var(--primary-accent);
    color: var(--background-dark);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #fff;
}


/* SEÇÃO DE PREÇOS */
.pricing-section {
    padding: 80px 5%;
    background-color: #1c1c1c;
}

.pricing-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pricing-container h2 {
    font-family: var(--anton-font);
    font-size: 2.8rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.category-title {
    font-family: var(--anton-font);
    font-size: 1.8rem;
    letter-spacing: 1.5px;
    color: var(--primary-accent);
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--primary-accent);
    display: inline-block;
    padding-bottom: 5px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    align-items: stretch; /* Garante que todos os itens tenham a mesma altura */
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2b2b2b;
    padding: 15px 25px;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    height: 100%; /* Ocupa toda a altura disponível da célula da grade */
    box-sizing: border-box; /* Inclui padding e border na altura total */
}

.price-item:hover {
    transform: scale(1.03);
    background-color: var(--primary-blue);
}

.service-name {
    display: flex;
    align-items: flex-start; /* Alinha o conteúdo ao topo */
    gap: 15px;
    text-align: left;
}

.service-details {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centraliza verticalmente o texto do serviço e descrição */
    flex-grow: 1; /* Permite que este elemento ocupe o espaço restante */
}

.service-details span:first-child {
    font-size: 1.1rem;
    font-weight: bold;
    font-family: var(--roboto-font);
    line-height: 1.2; /* Ajuste para evitar muito espaço entre nome e descrição */
}

.price-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    margin-top: 2px; /* Pequeno ajuste para alinhar com o texto */
}

.service-price {
    font-family: var(--anton-font);
    font-size: 1.7rem;
    color: #fff;
    min-width: 100px;
    text-align: right;
    display: flex; /* Para alinhar o "a partir de" */
    flex-direction: column; /* Para empilhar "a partir de" e o preço */
    justify-content: center; /* Centraliza verticalmente */
    align-items: flex-end; /* Alinha o texto à direita */
}

.service-price small {
    display: block;
    font-family: var(--roboto-font);
    font-size: 0.7rem;
    color: #ccc;
    font-weight: normal;
    margin-bottom: -5px;
    line-height: 1; /* Ajusta a altura da linha para o "a partir de" */
}

.observation-note {
    background-color: rgba(0, 212, 255, 0.1);
    border-left: 4px solid var(--primary-accent);
    padding: 15px;
    margin: 25px 0;
    text-align: left;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    color: #ddd;
}



.special-description {
    font-family: 'Helvetica', sans-serif;
    font-size: 0.8rem;
    color: #aaa;
    font-weight: 300;
    line-height: 1.2; /* Garante que a descrição não ocupe muito espaço vertical */
    margin-top: 2px; /* Pequeno ajuste de espaçamento */
}


/* SPLIT SECTION (RESULTADOS E CUSTOMIZAÇÕES) */
.split-section {
    display: flex;
    align-items: center;
    background-color: #fff;
    color: var(--text-dark);
    padding: 80px 5%;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
}

#customizacao-galeria {
    background-color: #1c1c1c;
    color: var(--text-light);
}

#customizacao-galeria h2 {
    color: var(--primary-accent);
}

.text-content {
    flex: 1;
}

.text-content h2, h1 {
    font-family: Helvetica, sans-serif;
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-top: 0;
    font-weight: 900;
    color: var(--primary-blue);
}

.image-gallery {
    flex: 1;
    position: relative;
    max-width: 500px;
    aspect-ratio: 1 / 1;
}

.slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.slide.active {
    display: block;
}

.next-btn, .prev-btn {
    position: absolute;
    bottom: 20px;
    background-color: var(--primary-accent);
    color: var(--background-dark);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    padding: 0;
}

.next-btn:hover, .prev-btn:hover {
    transform: scale(1.1);
    background-color: #00bfff;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.next-btn {
    right: 20px;
}

.prev-btn {
    left: 20px;
}


/* HOW IT WORKS */
.how-it-works-section {
    padding: 80px 5%;
    text-align: center;
    background-color: #fff;
    color: var(--text-dark);
}

.how-it-works-section h2 {
    font-family: var(--anton-font);
    font-size: 2.8rem;
    letter-spacing: 1px;
    margin-bottom: 60px;
}

.steps-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    max-width: 250px;
}

.step span {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: #fff;
    font-family: var(--anton-font);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step h3 {
    font-family: var(--anton-font);
    font-size: 1.5rem;
}


/* CONTATO */
.contact-section {
    padding: 80px 5%;
    text-align: center;
    background-color: #1c1c1c;
}

.contact-section h2 {
    font-family: var(--anton-font);
    font-size: 2.8rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.contact-section p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.whatsapp-button {
    display: inline-block;
    background-color: #25D366;
    color: #fff;
    font-family: var(--anton-font);
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.05);
    background-color: #128C7E;
}

.social-links {
    margin-top: 50px;
}

.social-links p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.social-icon {
    margin: 0 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.social-icon img {
    width: 100px;
    height: 100px;
}


/* FOOTER */
.main-footer {
    text-align: center;
    padding: 40px 20px; 
    background-color: #0a0a0a; 
    border-top: 1px solid #222; 
}

.main-footer p {
    margin: 5px 0; 
    font-size: 0.9rem;
    color: #888; 
}

.main-footer a {
    color: #aaa; 
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease; 
}

.main-footer a:hover {
    color: var(--primary-accent); 
}


/* ################################# */
/* ### AJUSTES DE RESPONSIVIDADE ### */
/* ################################# */



@media (max-width: 768px) {
    /* HEADER */
    .header-content {
        justify-content: center;
    }
    .main-header nav {
        display: none;
    }
    .logo {
        height: 40px;
    }

    /* HERO */
    .hero-section {
        min-height: 70vh;
        padding-top: 100px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    .hero-content p {
        font-size: 1rem;
        padding: 0 15px;
    }
    .cta-button {
        font-size: 1rem;
        padding: 10px 25px;
    }

    /* PREÇOS */
    .pricing-section {
        padding: 40px 20px;
    }
    .pricing-container h2 {
        font-size: 2.2rem;
    }
    .pricing-container .subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    .category-title {
        font-size: 1.5rem;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .pricing-grid {
        gap: 10px;
    }
    .price-item {
        padding: 12px 15px;
    }
    .service-name {
        font-size: 1rem;
        gap: 10px;
    }
    .price-icon {
        width: 30px;
        height: 30px;
    }
    .service-price {
        font-size: 1.4rem;
        min-width: 70px;
    }
    .service-price small {
        font-size: 0.6rem;
    }
    .observation-note {
        font-size: 0.8rem;
        padding: 10px;
        margin: 15px 0;
    }
    .pricing-grid.smaller-items {
        max-width: 100%;
    }
    .special-description {
        font-size: 0.75rem;
    }

    /* SPLIT SECTION (RESULTADOS E CUSTOMIZAÇÕES) */
    .split-section {
        flex-direction: column;
        padding: 40px 20px;
        margin: 20px auto;
    }
    .text-content {
        text-align: center;
        margin-bottom: 30px;
    }
    .text-content h2 {
        font-size: 2rem;
    }
    #customizacao-galeria h2 {
        font-size: 2rem;
    }
    .image-gallery {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
    .next-btn, .prev-btn {
        width: 40px;
        height: 40px;
        bottom: 10px;
    }
    .next-btn {
        right: 10px;
    }
    .prev-btn {
        left: 10px;
    }
    .arrow-icon {
        width: 20px;
        height: 20px;
    }

    /* COMO FUNCIONA */
    .how-it-works-section {
        padding: 40px 20px;
    }
    .how-it-works-section h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    .steps-container {
        flex-direction: column;
        gap: 30px;
    }
    .step {
        max-width: 90%;
        margin: 0 auto;
    }
    .step span {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    .step h3 {
        font-size: 1.3rem;
    }
    .step p {
        font-size: 0.95rem;
    }
    
    /* CONTATO */
    .contact-section {
        padding: 40px 20px;
    }
    .contact-section h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    .contact-section p {
        font-size: 1rem;
        margin: 0 auto 30px;
    }
    .whatsapp-button {
        font-size: 1.2rem;
        padding: 12px 30px;
    }
    .social-links {
        margin-top: 30px;
    }
    .social-links p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    .social-icon img {
        width: 40px;
        height: 40px;
    }
    
    /* FOOTER */
    .main-footer {
        font-size: 0.8rem;
        padding: 15px 20px;
    }
}