/*
Theme Name: TUREOM
Theme URI: https://tureom.com
Author: TUREOM Studio
Description: Tema oficial do estúdio TUREOM.
Version: 1.0
*/

/* ==============================
   IDENTIDADE
   ============================== */

:root {
    --tureom-black: #0b0b0b;
    --tureom-white: #f5f5f5;
    --tureom-gray: #888888;
}

/* ==============================
   BASE
   ============================== */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--tureom-black);
    color: var(--tureom-white);
    font-family: "Manrope", Arial, sans-serif;
}

body {
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==============================
   CABEÇALHO
   ============================== */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 10;
}

.logo {
    font-size: 28px;
    letter-spacing: 10px;
    font-weight: 300;
}

/* ==============================
   HOME
   ============================== */

.tureom-home {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* ==============================
   HERO
   ============================== */

.hero {
    width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 40px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    overflow: hidden;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.72)
        ),
        url("assets/images/centelha.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ==============================
   CAMADA ESCURA
   ============================== */

.hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.20);

    z-index: 1;
}

/* ==============================
   CONTEÚDO
   ============================== */

.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 900px;
}

/* ==============================
   TÍTULO
   ============================== */

.hero h1 {
    font-size: clamp(45px, 7vw, 90px);
    letter-spacing: 12px;
    font-weight: 300;
    margin: 0 0 30px;
}

/* ==============================
   TEXTO
   ============================== */

.hero p {
    font-size: 22px;
    line-height: 1.7;
    color: #cccccc;

    max-width: 650px;
    margin: 0 auto 50px;
}

/* ==============================
   BOTÃO
   ============================== */

.button {
    display: inline-block;

    padding: 18px 50px;

    border: 1px solid #ffffff;

    letter-spacing: 3px;
    text-transform: uppercase;

    transition: 0.4s;
}

.button:hover {
    background: #ffffff;
    color: #000000;
}

@keyframes tureom-breath {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.06);
    }
}

.hero {
    animation: tureom-breath 18s ease-in-out infinite alternate;
}