.hero-content {
    display: grid
;
    grid-template-columns: 1fr 3px auto;
    gap: 100px;
}

.hero-title {
    font-size: 60px;
    color: white;
    line-height: 110%;
}
.hero-title em {
    padding: 5px 20px;
    background-color: white;
    color: var(--main);
    border-radius: 100px;
    font-style: normal;
    display: inline-block;
}
.hero-title del {
    font-weight: 900;
    text-decoration: none;
}

.hero-title p {
    margin: 0;
}
.hero-links {
    margin-top: 40px;
}
.hero-links {
    display: flex
;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-links a {
    display: flex;
    gap: 10px;
    align-items: center;
    color: white;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
}
.hero-links a img {
    height: 20px;
    width: auto;
}
.hero-links a:hover {
    font-weight: 600;
}

a.hero-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row-reverse;
    text-decoration: none;
    font-size: var(--font-normal);
    color: white;
}
a.hero-btn:hover .link-circle {
    background-color: white;
    transition-duration: 0.2s;
}
.hero-buttons a:first-child {
    border: 1px solid white;
    display: block;
    display: flex;
    border-radius: 100px;
    align-items: center;
    width: fit-content;
    flex-direction: row-reverse;
    text-decoration: none;
    color: white;
}
.hero-buttons a:first-child:hover {
    background-color: white;
    color: var(--main);
    transition-duration: 0.2s;
}
.hero-buttons a:first-child .hero-button-text {
    padding: 0 20px;
}
.svg-wrapper-button {
    height: 52px;
    width: 52px;
    display: flex
;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 100%;
}
.hero-buttons {
    display: flex
;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.link-circle {
    height: 20px;
    width: 20px;
    border: 1px solid white;
    border-radius: 100%;
}
.hero-description {
    max-width: 400px;
    color: white;
    text-align: right;
    opacity: 0.7;
    font-size: var(--font-normal);
}
.hero-right {
    display: flex
;
    flex-direction: column;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
}
.stat-number {
    font-size: var(--h2);
    font-weight: 700;
    color: white;
    text-align: end;
    line-height: 100%;
}
.stat-description {
    max-width: 300px;
    text-align: end;
    color: white;
    opacity: 0.7;
    font-size: var(--font-normal);
}


.hero-stats {
    display: grid
;
    gap: 30px;
}

.hero-section-wrapper {
    display: grid
;
    gap: 100px;
}
.bottom-side {
    display: grid
;
    grid-template-columns: 70fr 30fr;
    gap: 50px;
}

.hero-media-file video, .hero-media-file img {
    width: 100%;
    max-height: 450px;
    border-radius: 30px;
    object-fit: cover;
    height: 100%;
}
.hero-media-file {
    height: 100%;
}
.hero-dialog-cta {
    padding: 30px;
    background: white;
    border-radius: 30px;
    position: relative;
}
.dialog-conversation {
    display: grid
;
    gap: 10px;
    position: relative;
    z-index: 2;
}
.dialog-message {
    padding: 5px 20px;
    border: 1px solid black;
    background-color: white;
    border-radius: 10px;
    max-width: 100%;
    font-size: var(--font-normal);
}

.dialog-message:nth-child(2) {
    max-width: 90%;
}

.dialog-message:nth-child(3) {
    max-width: 81%;
}

.dialog-message:nth-child(4) {
    max-width: 72.9%;
}

.dialog-message:nth-child(5) {
    max-width: 65.61%;
}

.dialog-message:nth-child(6) {
    max-width: 59.049%;
}

.dialog-message:nth-child(7) {
    max-width: 53.1441%;
}

.dialog-message:nth-child(8) {
    max-width: 47.82969%;
}

.dialog-message:nth-child(9) {
    max-width: 43.046721%;
}

.dialog-message:nth-child(10) {
    max-width: 38.7420489%;
}

.dialog-message:nth-child(11) {
    max-width: 34.86784401%;
}

.dialog-message:nth-child(12) {
    max-width: 31.381059609%;
}


    .message-hidden {
        opacity: 0;
        display: none;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
    
    .dialog-message:not(.message-hidden) {
        opacity: 1;
        transform: translateY(0);
    }
    
    .typing-indicator {
            padding: 5px 20px;
            border: 1px solid black;
            background-color: white;
            border-radius: 10px;
            max-width: 100%;
            width: fit-content;
            height: 35px;
            display: flex;
            align-items: center;
    }
    
    .typing-indicator span {
        width: 8px;
        height: 8px;
        border: 1px solid var(--main);
        background-color: transparent;
        border-radius: 50%;
        margin: 0 2px;
        animation: typing 1s infinite ease-in-out;
    }
    
    .typing-indicator span:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    .typing-indicator span:nth-child(3) {
        animation-delay: 0.4s;
    }
    
    @keyframes typing {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-7px); }
    }

    .dialog-image {
    display: flex
;
    position: absolute;
    width: 300px;
    bottom: 0;
    right: calc(-1 * var(--padding));
    z-index: 1;
}
.media-overlay-content {
    position: absolute;
}

a.dialog-cta-btn {
    display: block;
    background-color: var(--main);
    font-size: var(--font-normal);
    border-radius: 50px;
    width: fit-content;
    display: flex
;
    align-items: center;
    gap: 20px;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    margin-top: 10px;
    z-index: 2;
    position: relative;
}
.hero-dialog-cta {
    min-height: 300px;
}

.media-overlay-content {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}
.hero-media {
    position: relative;
}
.rating-section img {
    height: 50px;
}

.rating-section {
    display: flex
;
    align-items: center;
    gap: 10px;
    font-size: var(--h2);
    color: white;
    font-weight: 900;
}
a.media-cta-btn {
    color: white;
    text-decoration: none;
    display: block;
    padding: 15px 20px;
    background-color: var(--main);
    border: 1px solid white;
    border-radius: 50px;
    font-size: var(--font-normal);
}

@media screen and (max-width: 1600px){
    .hero-title {
        font-size: 50px;
    }
}
@media screen and (max-width: 1400px){
    .hero-title {
        font-size: 40px;
    }
    .hero-description {
        max-width: 350px;
        text-align: right;
    }
    .hero-content {
        gap: 50px;
    }
    .bottom-side {
        display: grid
    ;
        grid-template-columns: 60fr 40fr;
        gap: 50px;
    }
    .hero-section-wrapper {
    display: grid
;
    gap: 50px;
}
}
@media screen and (max-width: 1100px){
    .hero-title {
        font-size: 32px;
    }
    .hero-description {
        max-width: 350px;
        text-align: right;
    }
        .bottom-side {
        display: grid
    ;
        grid-template-columns: 50fr 50fr;
        gap: 50px;
    }
    .media-overlay-content {
        flex-direction: column;
        gap: 10px;
        align-items: end;
    }
}
.gradient-vertical {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 53.37%, rgba(255, 255, 255, 0.00) 100%);
    width: 3px;
    height: 100%;
}
@media screen and (max-width: 1000px){
    .hero-title {
        font-size: 32px;
    }
    .hero-description {
        max-width: 350px;
        text-align: right;
    }
    .hero-content {
        grid-template-columns: 1fr;
    }
    .gradient-vertical {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #FFF 53.37%, rgba(255, 255, 255, 0.00) 100%);
        width: 100%;
        height: 3px;
    }
    .hero-stats {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: end;
    }
    .stat-description {
        max-width: 200px;
    }
}

@media screen and (max-width: 850px){
    .bottom-side {
        display: grid
;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .hero-media-file video, .hero-media-file img {
        border-radius: 20px;
    }
    .hero-dialog-cta {
        padding: 20px 15px;
        border-radius: 20px;
    }
    .hero-media-file video, .hero-media-file img {
        min-height: 400px;
    }
    .stat-number {
        font-size: 50px;
    }
    .hero-stats {
        position: relative;        
    }
    .hero-stats::before {
        content: "";
        position: absolute;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 53.37%, rgba(255, 255, 255, 0.00) 100%);
        width: 3px;
        height: 100%;
        top: 0;
        left: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.hero-title p.animate {
    opacity: 1;
    transform: translateY(0);
}

.empty-dialog {
    opacity: 0 !important;
}