html {
    scroll-behavior: smooth;
}

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

body {
    font-family: "Zain", sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: #2c365a;
}

/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1f2742;

    z-index: 999;

    transition: all 0.5s ease;
}
.site-header img {
    height: 30px;
    width: auto;
}

.site-header.scrolled {
    background: rgba(31, 39, 66, 0.45);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

h1 {
    font-family: "Carattere", cursive;
    font-weight: 400;
    font-size: 100px;
    color: #2c365a;
}

h2 {
    font-family: "Zain";
    font-size: 40px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    letter-spacing: 0.6px;
    font-weight: 300;
}

.bloomipe {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);

    width: 85px;

    z-index: 3;
}

.section-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #9a9a9a;
    margin-bottom: 10px;
}

.intro-lead {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
    opacity: 25%;
}

.container {
    width: 88%;
    max-width: 1100px;
    margin: auto;
    padding: 90px 0;
}

.intro-container {
    max-width: 720px;
}

.hero {
    padding-top: 140px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;

    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;

    background-image: url("costura-bg.jpeg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;

    filter: grayscale(50);

    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25),
        rgba(0, 0, 0, 0.05),
        rgba(0, 0, 0, 0)
    );

    z-index: -1;
}

.hero-content {
    position: relative;
    background: rgba(238, 232, 223, 0.96);
    padding: 70px 90px;
    border-radius: 18px;
    max-width: 720px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.tag {
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 20px;
    max-width: 520px;
    margin: auto;
    color: #2c365a;
}

.btn {
    display: inline-block;
    margin-top: 35px;
    padding: 14px 34px;
    background: #2c365a;
    color: rgba(238, 232, 223, 0.96);
    text-decoration: none;
    border-radius: 40px;
    font-size: 17px;
    transition: all 0.5s ease;
}

.btn:hover {
    background: #1f2742;
    transform: translateY(-2px);
}

.intro {
    color: rgba(238, 232, 223, 0.96);
    background: #1f2742;
    text-align: center;
}

.sobre {
    background: rgba(238, 232, 223, 0.96);
    color: #1f2742;
}

.portfolio {
    color: rgba(238, 232, 223, 0.96);
    background: #1f2742;
}

.planos {
    background: #f4f4f4;
}

.cta {
    background: #111;
    color: white;
    text-align: center;
}

.cta p {
    color: #ddd;
}

.sobre-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

.sobre-texto p {
    margin-bottom: 12px;
}

.sobre-texto h2 {
    margin-bottom: 18px;
}

.sobre-foto img {
    width: 200px;
    object-fit: cover;
    border-radius: 7px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.portfolio-text {
    margin: 15px auto 15px 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.instagram-grid img,
.instagram-grid video {
    width: 100%;
    height: auto;

    border-radius: 7px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

    filter: grayscale(100%);

    transition: filter 0.6s ease;
}

.instagram-grid img.colorido,
.instagram-grid video.colorido {
    filter: grayscale(0%);
}

.planos-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.plano {
    flex: 1;
    min-width: 320px;

    background: white;

    padding: 45px;

    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);

    position: relative;

    transition: all 0.35s ease;
}

.plano:hover {
    transform: translateY(-6px);
}

.plano.destaque {
    background: #1f2742;

    color: rgba(238, 232, 223, 0.96);

    border: 2px solid #c8a46a;

    transform: scale(1.04);
}

.plano.destaque:hover {
    transform: scale(1.04) translateY(-6px);
}

.badge {
    position: absolute;

    top: -12px;
    left: 30px;

    background: #eee;

    padding: 6px 14px;

    border-radius: 30px;

    font-size: 12px;

    letter-spacing: 1px;
}

.oferta {
    background: #c8a46a;
    color: white;
}

.plano-sub {
    color: #777;
    margin-bottom: 25px;
}

.plano.destaque .plano-sub {
    color: rgba(238, 232, 223, 0.8);
}

.preco {
    font-size: 44px;
    color: #c8a46a;
    margin-bottom: 25px;
}

.preco span {
    font-size: 18px;
    color: #666;
}

.plano.destaque .preco span {
    color: rgba(238, 232, 223, 0.8);
}

ul {
    list-style: none;
}

ul li {
    margin-bottom: 12px;
    font-size: 17px;
}

.plano.destaque ul li {
    color: rgba(238, 232, 223, 0.9);
}

.detalhe {
    margin-top: 20px;
    color: #666;
}

.plano.destaque .detalhe {
    color: rgba(238, 232, 223, 0.85);
}

.gatilho {
    margin-top: 20px;
    font-size: 14px;
    color: #888;
}

.plano.destaque .gatilho {
    color: #e8d3a5;
}

footer {
    text-align: center;
    padding: 40px;
    background: #000;
    color: #aaa;
    font-size: 14px;
}

@media (max-width: 900px) {
    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 28px;
    }

    .container {
        padding: 70px 0;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 120px 20px;
    }

    .hero-content {
        padding: 45px 30px;
    }

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 24px;
    }

    .subtitle {
        font-size: 17px;
        margin: auto;
        padding: 0 20px;
    }

    .planos-grid {
        flex-direction: column;
    }

    .plano.destaque {
        transform: none;
    }

    .btn {
        padding: 16px 28px;
    }
    .sobre-grid {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .sobre-foto img {
        width: 140px;
        margin: auto;
        display: block;
    }

    .sobre-texto {
        max-width: 520px;
        margin: auto;
    }

    .sobre-texto p {
        font-size: 17px;
        line-height: 1.6;
    }

    .section-label {
        letter-spacing: 2px;
    }
    .site-header img {
        width: 55px;
    }

    .hero {
        padding-top: 90px;
    }
}
