html {scroll-behavior: smooth;}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #172036fa;
    color: #e0e0e0;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #172036fa;
    border-bottom: 1px solid #2a3e62;
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header .logo img {
    width: 42px;
}

.header nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    position: relative;
    cursor: pointer;
}

.header nav a:hover,
.header nav a {
    color: #4a90e2;
}

.header nav a i {
    margin-right: 8px;
}

.header nav a.disabled {
    color: #515558;
    cursor: default;
}

.header .info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header .info .user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
}

.header .info span {
    color: #b3b3b3;
}

.header .info .user .details {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 14px;
}

.header .info h4,
.header .info p {
    margin: 0;
}

.header .info img {
    width: 54px;
    border-radius: 50%;
}

.header .logout {
    background-color: #ff4d4f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.header .logout:hover {
    background-color: #ff7875;
}

.header .logout * {
    color: inherit !important;
}

.main {
    padding: 24px;
}

.main .title {
    position: relative;
}

.main .title h1 {
    font-size: 24px;
    margin: 0;
    margin-bottom: 5px; 
    color: #e0e0e0;
}

.signatures .main {
    margin-top: 90px;
}

.signatures .title h1 {
    font-size: 32px;
    margin: 0 auto;
    margin-bottom: 5px; 
    color: #e0e0e0;
    width: fit-content;
}

.signatures .plans {
    margin-top: 16px;
}


.signatures .logo-external {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 90px;
}

.signatures .logo-external img {
    display: none;
    width: 96px;
}

.signatures .logo-external h1 {
    display: none;
}

.main .title p {
    color: #b3b3b3;
    margin: 0;
    margin-bottom: 20px;
    margin-top: 8px;
}
 
.main .info-current {
    width: 300px;
    text-align: center;
    position: absolute;
    right: 20px;
    top: 0;
}
 
.main .plans {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
}
 
.main .plan {
    border-radius: 8px;
    padding: 40px 24px;
    width: 450px;
    margin: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 6px #2a3e6213;
    background-color: #172036;
    border: 1px solid #2a3e62;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
 
.main .plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px #2a3e6246;
}
 
.main .plan h2 {
    font-size: 35px;
    margin: 0;
    margin-bottom: 10px;
    color: #e0e0e0;
    text-align: center;
}
 
.main .plan p {
    color: #b3b3b3;
    margin-bottom: 20px;
    text-align: center;
}
 
.main .plan .price {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 15px;
    text-align: center;
}
 
.main .plan .price span {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}
 
.main .plan ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
 
.main .plan ul li {
    margin-bottom: 10px;
    color: #e0e0e0;
    padding: 5px 0;
}
 
.main .plan ul li i {
    color: #4caf50;
    margin-right: 10px;
}
 
.main .plan .action {
    background-color: #4a90e2;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px;
    margin: 0 auto;
    text-decoration: none;
}
 
.main .plan .action:hover {
    background-color: #357abd;
}
 
.signatures .logo H1 {
    font-size: 18px;
    font-weight: 100;
}

.signatures .logo img {
    margin-right: 8px;
}

.signatures .about {
    display: grid;
    align-items: center;
    max-width: 1200px;
    margin: 90px auto;
    margin-bottom: 0;
    grid-template-areas: "content clip" "diff diff";
    grid-template-columns: 1fr 1fr;
}

.signatures .about > div {
    padding: 24px;
}

.signatures .about .label {
    text-transform: uppercase;
    font-weight: 700;
    background: -webkit-linear-gradient(45deg, #6CB4EC, #8A24EF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
}

.signatures .about .about-content {
    grid-area: content;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.signatures .about .about-clip {
    grid-area: clip;
}

.signatures .about .call-to-action {
    cursor: pointer;
    color: #fff;
    border: solid 0px;
    padding: 12px 24px;
    font-weight: 300;
    border-radius: 8px;
    font-size: 1.1em;
    font-size: 16px;
    background-color: #38b5f91a;
    text-decoration: none;
    text-align: center;
    text-decoration: none;
    margin-top: 16px;
    width: fit-content;
}

.signatures .about .about-diff {
    grid-area: diff;
    width: 60%;
    min-width: 420px;
    margin: 0 auto;
    margin-top: 90px;
}

.signatures .about .title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1em;
    margin: 0;
}

.signatures .about .description {
    font-size: 16px;
    font-weight: 300;
    text-transform: none;
    line-height: 1.3em;
    margin: 0;
}


.signatures .about .about-clip iframe {
    /* max-width: 540px; */
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
}


@media screen and (max-width: 1024px) {
    .header {
        font-size: 28px;
        padding: 54px 20px;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header nav a i {
        display: none;

    }

    .header .logo img {
        display: none;
    }

    .header .logo h1 {
        display: none;
    }

    .header .info .user {
        display: none;
    }

    .header .logout {
        font-size: 28px;
    }

    .signatures .logo-external img {
        display: block;
    }

    .signatures .logo-external h1 {
        display: block;
    }

    .main .plan {
        width: 75%;
        font-size: 14px;
        margin: 24px;
    }
  
    .main .plan .price span,
    .main .plan p {
        font-size: 26px;
    }
  
    .main .plan .action {
        font-size: 32px;
        padding: 16px 30px;
    }

    .signatures .about {
        grid-template-areas: "content content" "clip clip" "diff diff";
        width: 90%;
        min-width: 600px;
    }
}
