/* ================================
   RESET
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ================================
   VARIÁVEIS
================================ */

:root {
    --primary: #0f766e;
    --primary-dark: #115e59;
    --secondary: #14b8a6;

    --text: #17333a;
    --text-light: #64748b;

    --background: #f0fdfa;
    --white: #ffffff;

    --border: #d8eeeb;

    --shadow:
        0 30px 80px rgba(15, 118, 110, 0.13);
}


/* ================================
   BODY
================================ */

body {
    min-height: 100vh;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    color: var(--text);

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(20, 184, 166, 0.16),
            transparent 30%
        ),

        radial-gradient(
            circle at 90% 90%,
            rgba(15, 118, 110, 0.12),
            transparent 30%
        ),

        var(--background);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;
}


/* ================================
   PAGE
================================ */

.page {
    width: 100%;
}


/* ================================
   CONTAINER
================================ */

.container {
    width: min(1000px, 100%);

    margin: auto;

    background: rgba(255, 255, 255, 0.95);

    border: 1px solid var(--border);

    border-radius: 30px;

    overflow: hidden;

    box-shadow: var(--shadow);
}


/* ================================
   HEADER
================================ */

.header {
    padding: 35px 45px 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* BRAND */

.brand {
    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 22px;

    font-weight: 800;

    letter-spacing: -0.5px;
}


.brand-icon {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    box-shadow:
        0 10px 25px rgba(20, 184, 166, 0.25);

    font-weight: 900;
}


/* STATUS */

.status {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    border-radius: 50px;

    background: #ecfdf5;

    border: 1px solid #bbf7d0;

    color: #047857;

    font-size: 13px;

    font-weight: 700;
}


.status-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #10b981;
}


/* ================================
   CONTENT
================================ */

.content {
    padding: 45px;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 55px;

    align-items: center;
}


/* ================================
   ILLUSTRATION
================================ */

.illustration {
    min-height: 370px;

    position: relative;

    overflow: hidden;

    border-radius: 25px;

    border: 1px solid var(--border);

    background:
        linear-gradient(
            145deg,
            #effcf9,
            #ffffff
        );

    display: flex;

    align-items: center;

    justify-content: center;
}


/* CIRCLES */

.circle {
    position: absolute;

    border-radius: 50%;

    background:
        rgba(20, 184, 166, 0.08);
}


.circle-one {
    width: 260px;
    height: 260px;

    top: -100px;
    right: -80px;
}


.circle-two {
    width: 220px;
    height: 220px;

    bottom: -110px;
    left: -90px;
}


/* ================================
   BROWSER
================================ */

.browser {
    width: 260px;

    background: white;

    border-radius: 18px;

    position: relative;

    z-index: 2;

    box-shadow:
        0 25px 50px rgba(15, 118, 110, 0.15);

    border: 7px solid #d7e9e6;
}


/* BROWSER HEADER */

.browser-header {
    height: 25px;

    background: #edf7f5;

    display: flex;

    align-items: center;

    gap: 5px;

    padding-left: 10px;
}


.browser-header span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #b7d8d3;
}


/* BROWSER CONTENT */

.browser-content {
    padding: 25px 20px 30px;

    text-align: center;
}


/* WARNING */

.warning-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 20px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff7ed;

    color: #ea580c;

    font-size: 28px;

    font-weight: 900;
}


/* SKELETON */

.skeleton {
    width: 100%;
    height: 10px;

    border-radius: 10px;

    background: #e1f0ee;

    margin-top: 12px;
}


.skeleton-title {
    width: 65%;

    margin-left: auto;
    margin-right: auto;
}


.skeleton-small {
    width: 45%;

    margin-left: auto;
    margin-right: auto;
}


/* FLOATING ICON */

.floating-icon {
    position: absolute;

    z-index: 3;

    right: 18%;

    top: 25%;

    width: 58px;
    height: 58px;

    border-radius: 18px;

    background: white;

    border: 1px solid var(--border);

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--primary);

    font-size: 25px;

    font-weight: 800;

    box-shadow:
        0 15px 30px rgba(15, 118, 110, 0.12);
}


/* ================================
   INFORMATION
================================ */

.information {
    max-width: 470px;
}


/* EYEBROW */

.eyebrow {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


/* TITLE */

h1 {
    font-size: clamp(36px, 5vw, 53px);

    line-height: 1.04;

    letter-spacing: -2px;

    margin-bottom: 22px;
}


h1 strong {
    color: var(--primary);
}


/* DESCRIPTION */

.description {
    color: var(--text-light);

    font-size: 16px;

    line-height: 1.7;

    margin-bottom: 12px;
}


.description strong {
    color: var(--text);
}


/* ================================
   NOTICE
================================ */

.notice {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin: 25px 0;

    padding: 16px;

    border-radius: 16px;

    background: #f7fffe;

    border: 1px solid var(--border);
}


.notice-icon {
    width: 35px;
    height: 35px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #ccfbf1;

    color: var(--primary);

    font-weight: 900;
}


.notice strong {
    display: block;

    margin-bottom: 4px;

    font-size: 14px;
}


.notice p {
    color: var(--text-light);

    font-size: 13px;

    line-height: 1.5;
}


/* ================================
   BUTTON
================================ */

.button {
    width: 100%;

    padding: 17px 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    text-decoration: none;

    color: white;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    font-size: 16px;

    font-weight: 800;

    box-shadow:
        0 12px 25px rgba(15, 118, 110, 0.2);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 18px 35px rgba(15, 118, 110, 0.25);
}


.arrow {
    font-size: 22px;

    transition:
        transform 0.2s ease;
}


.button:hover .arrow {
    transform: translateX(4px);
}


/* URL */

.url {
    text-align: center;

    margin-top: 12px;

    color: var(--text-light);

    font-size: 13px;
}


/* ================================
   FOOTER
================================ */

footer {
    padding: 20px 45px;

    border-top: 1px solid #e7f2f0;

    display: flex;

    justify-content: center;

    gap: 10px;

    color: #94a3b8;

    font-size: 12px;
}


.separator {
    opacity: 0.5;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 750px) {

    body {
        padding: 12px;
    }


    .container {
        border-radius: 22px;
    }


    .header {
        padding: 25px 22px 10px;
    }


    .status {
        display: none;
    }


    .content {
        grid-template-columns: 1fr;

        padding: 25px 22px 35px;

        gap: 30px;
    }


    .illustration {
        min-height: 250px;

        order: 2;
    }


    .information {
        max-width: none;
    }


    h1 {
        font-size: 39px;

        letter-spacing: -1.5px;
    }


    .browser {
        transform: scale(0.85);
    }


    .floating-icon {
        right: 13%;
    }


    footer {
        padding: 18px 22px;

        flex-direction: column;

        align-items: center;

        gap: 5px;
    }


    .separator {
        display: none;
    }
}