/* style.css (V14) */

:root {
    --purple-primary: #5A48DE;
    --blue-accent: #3B82F6;
    --dark-text: #2c313a;
    --background-color: #f8f7fc;
    --paper-texture: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23dcd9e4' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--background-color);
    background-image: var(--paper-texture);
    color: var(--dark-text);
    margin: 0;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow-x: hidden;
    position: relative;
}

.gradient-blur-shape-1, .gradient-blur-shape-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    opacity: 0.5;
}

.gradient-blur-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--purple-primary);
    top: -150px;
    left: -200px;
}

.gradient-blur-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--blue-accent);
    bottom: -150px;
    right: -150px;
}

.background-logo-watermark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('logo preto fundo transparente.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 200vmin;
    opacity: 0.07;
    z-index: -1;
}

.main-container {
    max-width: 700px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.logo {
    max-width: 130px;
    /* ATUALIZAÇÃO 1: Margem inferior zerada para aproximar ao máximo do título. */
    margin-bottom: 0;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3rem);
    background: linear-gradient(90deg, var(--purple-primary), var(--blue-accent));
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    /* ATUALIZAÇÃO 2: Margem superior zerada e inferior diminuída. */
    margin-top: 0;
    margin-bottom: 0.8rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.instagram-feed-container {
    width: 100%;
    margin-top: 2rem;
    min-height: 200px;
}

footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-info p {
    font-size: 1.25rem; 
    line-height: 1.6;
    margin: 0.5rem 0;
    font-weight: 400;
    color: #333;
}

.contact-info p strong {
    font-weight: 700;
}


.copyright {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #999;
}

@media (max-width: 600px) {
    body {
        padding: 1rem;
    }
    .main-container {
        padding: 1.5rem;
    }
    .gradient-blur-shape-1 {
        width: 300px;
        height: 300px;
        filter: blur(80px);
    }
    .gradient-blur-shape-2 {
        width: 250px;
        height: 250px;
        filter: blur(80px);
    }
}
