/*!
    Theme Name: Wordpress Zero
    Description: have fun!
    Author: Amanda Gedra
    Tags: Wordpress, html5, css3, jquery, vuejs
    Since: The first date
*/html{scroll-behavior:smooth;font-family:sans-serif;margin-top:0!important}body{-webkit-font-smoothing:antialiased;height:auto}
/*# sourceMappingURL=assets/sourcemaps/style.css.map */
@font-face {
    font-family: 'Editorial New';
    /* Referenciando o arquivo variável que você enviou */
    src: url('assets/EditorialNew-Variable.ttf') format('truetype');
    font-weight: 100 900; /* Suporte para pesos variáveis */
}

:root {
    --bg-verde: #4E541C; /* Verde oliva da imagem */
    --cor-creme: #EFE9E0; /* Creme dos elementos */
}

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

body, html {
    height: 100%;
    background-color: var(--bg-verde);
    color: var(--cor-creme);
    font-family: 'Editorial New', serif;
    overflow: hidden; /* Mantém o aspecto de tela cheia */
}

.main-wrapper {
    height: 100vh;
    width: 100%;
}

/* Tipografia */
.brand-name {
    font-size: clamp(3.5rem, 12vw, 8rem);
    line-height: 0.85;
    font-weight: 300;
    letter-spacing: -0.03em;
    margin: 0;
}

.sub-texto {
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Logo */
.logo-img {
    height: auto;
    width: 435px;
}

/* Ícones e Links */
.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon {
    width: 35px;
    height: 35px;
}



.contact-info a {
    color: var(--cor-creme);
    text-decoration: none;
    font-size: 1rem;
    text-transform: lowercase;
    margin-top: 10px;
}

#wpadminbar {
    display: none;
}

/* Ajustes para telas maiores (alinhamento à direita) */
@media (min-width: 768px) {
    .contact-item {
        align-items: flex-end;
    }

    .contact-info {
        position: absolute;
        right: 50px;
    }

    .contact-info img{
        width: 35px;
    }
}

/* Ajustes para telas pequenas */
@media (max-width: 767px) {
    body, html {
        overflow: auto; /* Permite scroll se o conteúdo exceder a altura */
    }
    .main-wrapper {
        height: auto;
        min-height: 100vh;
        gap: 60px;
    }
    .bottom-section {
        align-items: center !important;
        text-align: center;
    }

    .contact-info .texto {
        display: none;
    }

    .sub-texto {
        font-size: 1rem;
    }

    .logo-img {
        height: auto;
        width: 232px;
    }

    .contact-info img{
        height: 32px;
    }
}
