/* ========================
   HERO
   ======================== */
.hero {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Bloco vermelho esquerdo */
.hero-left-block {
    display: flex;
    width: 300px;
    height: 200px;
    padding: 0 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #CE252F;
    flex-shrink: 0;
}

.hero-left-block img {
    width: 200px;
    height: 122px;
}

/* Bloco direito */
.hero-right-block {
    max-width: 500px;
    margin-right: 300px;
}

.hero-title {
    background: #CE252F;
    color: #fff;
    font-family: var(--font-family);
    text-transform: uppercase;
    font-size: var(--subtitle-size);
    font-weight: 700;
    padding: 16px 36px;
    line-height: 1.4;
}

.hero-text-box {
    display: flex;
    flex-direction: column;
    width: 500px;
    height: 150px;
    padding: 0 36px;
    justify-content: center;
    gap: 8px;
    background: rgba(41, 41, 41, 0.75);
}

.hero-text {
    color: #fff;
    font-family: var(--font-family);
    font-size: var(--text-size);
    line-height: 1.5;
}

.hero-logo-box {
    background: #CE252F;
    width: 500px;
    height: 200px;
    padding: 0 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-box img {
    height: 105px;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    align-items: stretch;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: #CE252F;
    color: #fff;
    font-family: var(--font-family);
    font-size: var(--text-size);
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: opacity 400ms;
    white-space: nowrap;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.4);
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #CE252F;
    color: #fff;
    font-size: var(--subtitle-size);
    border-radius: 5px;
    text-decoration: none;
    transition: all 400ms ease;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    width: 0;
    margin-left: 0;
    overflow: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    width: 44px;
    margin-left: 10px;
}

.hero-cta:hover, .back-to-top:hover {
    opacity: 0.85;
}
