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

body {
    background: radial-gradient(circle at bottom, rgba(254, 230, 202, 0.12) 0%, #080808 100%);
    background-color: #050505;
    background-attachment: fixed;
    background-position: bottom;
    animation: luzEstudio 10s ease-in-out infinite alternate;
    font-family: 'Mozilla Text', sans-serif;
    font-weight: 300;
    color: #ffffff;
    min-height: 100vh;
}

img, svg {
    max-width: 100%;
    height: auto;
}

@keyframes luzEstudio {
    0% { background-size: 100% 100%; }
    100% { background-size: 140% 140%; }
}

.header-fixo {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #1e1e1e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15%;
    z-index: 1000;
}

.logo img {
    height: 40px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 400;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #fee6ca;
    transform: scale(1.15);
    display: inline-block;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gradient-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(254, 230, 202, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.hero-content img {
    max-width: 30%;
    object-fit: contain;
}

model-viewer {
    width: 300px;
    height: 300px;
    background-color: transparent;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-item {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 10px;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.photo-item img:hover {
    transform: scale(1.05);
}

#lightbox {
    display: none;
    position: fixed; 
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    text-align: center;
    cursor: zoom-out;
}

#lightbox img {
    max-width: 90%;
    max-height: 80vh;
    margin-top: 10vh;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    position: relative; 
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.about-content {
    flex: 1;
}

.about-content h1 {
    font-size: 2.5rem;
    color: #fee6ca;
    margin-bottom: 20px;
}

.about-content p {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-content img:not(.about-image img) {
    max-width: 350px;
    margin-bottom: 20px;
    display: block;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

.pc-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.spinning-icon {
    width: 360px;
    height: auto;
    animation: spinZ 15s linear infinite;
}

@keyframes spinZ {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.pricing-image-container img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

/* =========================================
   RODAPÉ E LINKS SOCIAIS (Posição Correta)
   ========================================= */
footer {
    width: 100%;
    padding: 40px 20px 20px;
}

/* Transforma o rodapé numa linha (lado a lado) e centraliza */
.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Define o espaço entre a palavra "Social:" e os ícones */
}

.footer-content h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: auto; /* Removemos a margem para alinhar perfeitamente com os ícones */
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* O "!important" impede que o navegador deixe o link azul/roxo */
.social-icons a,
.social-icons a:visited {
    color: #fee6ca !important; 
    font-size: 1.5rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #ffffff !important;
    transform: scale(1.2); 
}

/* =========================================
   BOTÃO DO WHATSAPP 
   ========================================= */
.btn-contact,
.btn-contact:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fee6ca !important; 
    border: 1px solid #fee6ca; /* Adiciona uma borda elegante */
    background-color: transparent !important;
    padding: 12px 30px; /* Dá corpo e formato ao botão */
    border-radius: 40px; /* Deixa as pontas arredondadas */
    font-size: 1.1rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-contact:hover {
    background-color: #fee6ca !important; /* O botão pinta de bege */
    color: #050505 !important; /* O texto e ícone ficam escuros para dar contraste */
    transform: translateY(-3px); /* Efeito de elevação */
    box-shadow: 0 5px 15px rgba(254, 230, 202, 0.2); /* Sombra suave */
}

/* =========================================
   RESPONSIVIDADE (MOBILE)
   Sempre deve ser o último bloco do arquivo!
   ========================================= */
@media (max-width: 768px) {
    .header-fixo {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content {
        flex-direction: column;
        gap: 20px;
    }

    .hero-content img {
        max-width: 80%;
    }

    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        align-items: center;
        text-align: center;
    }

    .about-image {
        order: -1;
    }
    
    .pc-section {
        gap: 30px;
        margin: 40px auto;
    }

    .spinning-icon {
        width: 180px;
    }

    .contact-block-bottom h1 {
        font-size: 1.6rem;
    }

    .pricing-image-container img {
        max-width: 90%;
    }
}

