.sg-summary {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.sg-summary > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sg-summary .circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    background: #ccc;
}

.sg-summary .circle::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 7px;
    right: 7px;
    bottom: 7px;
    background: #fff;
    border-radius: 50%;
}

.sg-summary .circle span {
    position: relative;
    z-index: 1;
}

.sg-summary .label {
    margin-top: 10px;
    font-size: 24px;
    color: #35516E;
    font-weight: 600 !important;
}

@property --p{
  syntax: '<angle>';
  inherits: true;
  initial-value: 0deg;
}

@keyframes fill-circle {
  from { --p: 0deg; }
  to { --p: 360deg; }
}

.sg-summary .circle.animate {
    animation: fill-circle 1s forwards;
}

.sg-summary .circle.ok.animate {
    background-image: conic-gradient(#1ebd2d var(--p), #ccc 0deg);
}

.sg-summary .circle.issues.animate {
    background-image: conic-gradient(#ff9f43 var(--p), #ccc 0deg);
}

.sg-summary .circle.na.animate {
    background-image: conic-gradient(#677788 var(--p), #ccc 0deg);
}

.sg-summary .circle.severity.animate.high {
    background-image: conic-gradient(#f94146 var(--p), #ccc 0deg);
}

.sg-summary .circle.severity.animate.low {
    background-image: conic-gradient(#677788 var(--p), #ccc 0deg);
}

#sg-before-form-content {
    margin-top: 80px;
}

#sg-before-form-content h2 {
    font-family: Roboto, sans-serif;
    font-size: 60px;
    font-weight: 600 !important;
    text-align: center;
    line-height: 1 !important;
}

#sg-before-form-content h2.dark-blue {
    color: #35516E;
}

#sg-before-form-content h2.lite-blue {
    color: #469FDC;
}

#sg-before-form-content .text {
    margin-top: 30px;
    width: 835px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

#sg-before-form-content .text p {
    text-align: center;
    color: #35516E;
    font-family: Roboto, sans-serif;
    font-size: 24px;
}

#sg-scan-form {
    max-width: 835px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    padding: 0;
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: unset;
}

#sg-scan-form input[name="url"],
#sg-scan-form input[type="email"],
#sg-scan-form input[name="phone"] {
    border: 1px solid #35516E;
    border-radius: 6px;
    font-size: 24px;
    color: #35516E;
    height: 52px;
}

#sg-scan-form input[name="url"] {
    margin-bottom: 20px;
}

#sg-scan-form input[name="url"]::placeholder,
#sg-scan-form input[type="email"]::placeholder,
#sg-scan-form input[name="phone"]::placeholder {
    font-size: 24px !important;
}

#sg-scan-form  .sg-row.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

#sg-scan-form .sg-disclaimer {
    color: #35516E;
    font-size: 14px;
    margin-top: 10px;
}

@media screen and (max-width: 768px) {
    #sg-scan-form  .sg-row.grid {
        grid-template-columns: 1fr;
    }
}

#sg-scan-form  label {
    color: #35516E;
    font-size: 18px;
}

#sg-scan-form #sg-submit {
    font-size: 25px;
    font-weight: 600;
    color: #144680;
    background-color: #FDC500;
    margin-top: 20px;
}

#sg-scan-form #sg-submit:hover  {
    background-color: #469FDC;
    color: #fff;
}

#sg-after-form-content h3 {
    color: #35516E;
    font-weight: 600 !important;
    text-align: center;
    margin-top: 80px;
}

.essential-tips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 80px;
}

@media screen and (max-width: 992px) {
    .essential-tips {
        grid-template-columns: 1fr;
    }
}

.essential-tips .essential-tip {
    border: 2px solid #dadfe6;
    border-radius: 6px;
    padding: 40px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 64px 1fr; 
    gap: 24px;
}

@media screen and (max-width: 576px) {
    .essential-tips .essential-tip {
        grid-template-columns: 1fr; 
    }
}

#sg-after-form-content p {
    font-size: 24px;
    color: #6d7c93;
}

#sg-after-form-content .essential-tips .essential-tip h3 {
    font-size: 26px;
    font-weight: 600;
    color: #35516E;
    margin-top: 0;
    text-align: left;
}

#sg-after-form-content .essential-tips .essential-tip p,
#sg-after-form-content .essential-tips .essential-tip ul
{
    font-size: 20px;
    color: #6d7c93;
}

#sg-after-form-content .essential-tips .essential-tip .essential-tip-icob {
    width: 64px;
    height: 64px;
    border-radius: 6px;
    background-color: #ebfaf9;
    background-position: center;
    background-repeat: no-repeat;    
}

#sg-after-form-content .essential-tips .essential-tip .essential-tip-icob.lamp {
    background-image: url(../img/lamp-icon.svg);
}

#sg-after-form-content .essential-tips .essential-tip .essential-tip-icob.warn {
    background-image: url(../img/warn.svg);
}

#sg-after-form-content .essential-tips .essential-tip .essential-tip-icob.doc {
    background-image: url(../img/doc.svg);
}

#sg-after-form-content .essential-tips .essential-tip .essential-tip-icob.users {
    background-image: url(../img/transparency.svg);
}

#sg-after-form-content .essential-tips .essential-tip ul li::marker {
  color: #016bdb; /* Muda a cor do disquinho para vermelho */
  font-size: 1.5em; /* Deixa o disquinho um pouco maior */
}

#sg-always-visible-content {
    background-color: #469FDC;
    padding-top: 100px;
    padding-bottom: 120px;
    margin-top: 60px;
}

#sg-always-visible-content h2 {
    font-size: 65px;
    width: 900px;
    max-width: 100%;
    text-align: center;
    color: #fff;
    font-weight: 600 !important;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#sg-always-visible-content h2 span {
    color: #FDC500;
}

#sg-always-visible-content p {
    color: #fff;
    font-size: 20px;
    text-align: center;
}

.sg-custom-content-btns {
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 32px;
}

@media screen and (max-width: 768px) {
    .sg-custom-content-btns {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.sg-custom-content-btns .go-policy-center,
.sg-custom-content-btns .get-experts-help {
    display: inline-block;
    font-weight: 600 !important;
    font-size: 20px;
    padding: 10px 40px;
    background-color: #fff;
}

@media screen and (max-width: 768px) {
    .sg-custom-content-btns .go-policy-center,
    .sg-custom-content-btns .get-experts-help {
        text-align: center;
    }
}



.sg-custom-content-btns .go-policy-center {
    color: #144680;
    background-color: #FDC500;
}

.sg-custom-content-btns .get-experts-help {
    color: #fff;
    background-color: #35516E;
}

.sg-custom-content-btns .go-policy-center:hover,
.sg-custom-content-btns .get-experts-help:hover {
    background-color: #fff;
    color: #469FDC;
}

/* Results */

#sg-results {
    margin-top: 100px;
}

#sg-results h3  {
    font-family: Roboto, sans-serif;
    font-size: 60px;
    font-weight: 600 !important;
    text-align: center;
    line-height: 1 !important;
    color: #35516E;
}

#sg-results .sg-table {
    border: 1px solid #c2cbd4;
    width: 100%;
    margin-top: 60px;
    max-width: 90dvw;
    overflow-x: auto;
}

#sg-results .sg-table tr {
    border-top: 1px solid #c2cbd4;
}


#sg-results .sg-table tr th,
#sg-results .sg-table tr td {
    padding: 20px;
    text-align: left;
    color: #35516E;
}

#sg-results .sg-table tr th {
    font-weight: 600 !important;
}

/* CTA */

#sg-results .sg-cta {
    background-color: #35516E;
    padding-top: 70px;
    padding-bottom: 70px;
    margin-top: 120px;
    margin-bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#sg-results .sg-cta h3 {
    color: #fff;
    font-weight: 600 !important;
    font-size: 48px;
}

#sg-results .sg-cta a {
    color: #fff;
    font-size: 18px;
    font-weight: 600 !important;
    background-color: #469FDC;
    padding: 10px 60px;
}

/* Loader */
#sg-loader {
    /* Full page overlay */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9999;

    /* Center the spinner */
    display: flex;
    justify-content: center;
    align-items: center;
}

.sg-spinner {
    width: 60px;
    height: 60px;
    border: 8px solid #f3f3f3; /* Light grey track */
    border-top: 8px solid #0073aa; /* Blue spinner color */
    border-radius: 50%;
    animation: sg-spin 1s linear infinite;
}

@keyframes sg-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
