* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #041230;
    color: #ffffff;
    overflow-x: hidden;
}

.hero-section {
    background-image: url('imagens/Mask\ group.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 27, 78, 0.85);
    z-index: 1;
}

.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background-color: #031b4e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1400px;
    margin-top: 30px;
    border-radius: 6px;
    padding-left: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    margin-top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding-left: 5%;
    background-color: rgba(3, 27, 78, 0.95);
    backdrop-filter: blur(10px);
}

.navbar.scrolled .btn-nav {
    border-radius: 0;
}

.logo {
    display: flex;
    align-items: center;
    padding: 15px 0;
}
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text img {
    height: 50px; 
    width: auto;   
    object-fit: contain; 
}

.logo-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    color: #e31b23;
}

.met-care-icon {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.logo-text p {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #a0aabf;
    margin-top: 5px;
}

.btn-nav {
    background-color: #e31b23;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 0 6px 6px 0;
    transition: background-color 0.3s ease;
}

.btn-nav:hover {
    background-color: #c4151e;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 800px;
    padding-left: 10px;
    animation: slideIn 1s ease-out forwards;
}

.badge {
    background-color: #e31b23;
    color: #ffffff;
    display: inline-block;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.hero-text h2 {
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 45px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background-color: #e31b23;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 45px;
    display: inline-block;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(227, 27, 35, 0.3);
}

.btn-primary:hover {
    background-color: #c4151e;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(227, 27, 35, 0.4);
}



.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #ffffff;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.scroll-indicator .fa-computer-mouse {
    font-size: 2rem;
}

.scroll-indicator .arrow-down {
    font-size: 0.9rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-12px) translateX(-50%);
    }

    60% {
        transform: translateY(-6px) translateX(-50%);
    }
}







.how-it-works-section {
    background-color: #041230;
    width: 100%;
}

.red-bar {
    width: 100%;
    height: 60px;
    background-color: #d11e28;
}

.how-it-works-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 0;
}

.how-it-works-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.how-it-works-text {
    flex: 1;
    max-width: 600px;
}

.how-it-works-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.3;
}

.how-it-works-text h2 span {
    font-weight: 400;
    font-size: 1.8rem;
    display: block;
    margin-top: 5px;
}

.steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.steps-list li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-number {
    background-color: #ffffff;
    color: #041230;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    border: 3px solid #d11e28;
    flex-shrink: 0;
}

.steps-list p {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    color: #e0e5f2;
}

.how-it-works-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.how-it-works-image img {
    max-width: 85%;
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border: 5px solid #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-radius: 6px;
}





.benefits-section {
    background-color: #041230;
    width: 100%;
    padding: 80px 0;
}

.benefits-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.benefits-header p {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e0e5f2;
}

.benefits-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.benefit-card {
    background-color: #ffffff;
    color: #041230;
    flex: 1;
    padding: 70px 25px 30px;
    position: relative;
    border-radius: 4px;
}

.benefit-number {
    background-color: #d11e28;
    color: #ffffff;
    width: 45px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 400;
    color: #041230;
}

@media (max-width: 1024px) {
    .hero-text h2 {
        font-size: 3rem;
    }

    .how-it-works-content {
        flex-direction: column;
        text-align: center;
    }

    .how-it-works-text h2 span {
        display: inline;
    }

    .steps-list li {
        text-align: left;
    }

    .benefits-grid {
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .hero-text h2 {
        font-size: 2.2rem;
    }

    .navbar {
        flex-direction: column;
        padding-left: 0;
        overflow: hidden;
        margin: 15px auto;
    }

    .logo {
        padding: 20px;
    }

    .btn-nav {
        width: 100%;
        justify-content: center;
        border-radius: 0;
        padding: 15px;
    }

    .hero-content {
        height: auto;
        padding-top: 40px;
        padding-bottom: 100px;
    }

    body {
        overflow-y: auto;
    }

    .benefit-card {
        flex: 1 1 100%;
    }
}



.testimonials-section {
    background-color: #ffffff;
    color: #041230;
    padding: 80px 0;
    text-align: center;
}

.testimonials-container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonials-subtitle {
    color: #e31b23;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.testimonials-title {
    color: #041230;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 50px;
}

.carousel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
}

.carousel-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #041230;
    font-size: 2.5rem;
    padding: 10px;
    transition: transform 0.2s ease, color 0.2s ease;
    z-index: 10;
}

.carousel-btn:hover {
    transform: scale(1.1);
    color: #e31b23;
}

.carousel-track-container {
    overflow: hidden;
    width: 80%;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    list-style: none;
    transition: transform 0.4s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    padding: 0 20px;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.carousel-slide.current-slide {
    opacity: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #041230;
    line-height: 1.6;
    margin-bottom: 30px;
}

.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.client-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #d9d9d9;
    border: 1px solid #041230;
    object-fit: cover;
}

.client-name {
    font-size: 1rem;
    font-weight: 800;
    color: #041230;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-indicator {
    border: 1px solid #041230;
    background-color: transparent;
    border-radius: 10px;
    width: 30px;
    height: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.carousel-indicator.current-indicator {
    background-color: #041230;
}





.partners-section {
    background-color: #ffffff;
    padding: 40px 0 30px;
}

.partners-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.partners-section h2 {
    text-align: center;
    font-size: 2.4rem;
    color: #041230;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.partners-slider {
    overflow: hidden;
    width: 100%;
    border-radius: 16px;
    background-color: #f7f8fb;
    padding: 16px 0;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: scroll-logos 24s linear infinite;
}

.partner-logo {
    min-width: 210px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    padding: 0 20px;
}

.partner-logo img {
    max-height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
}

.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 900px) {
    .partners-section {
        padding: 30px 0 20px;
    }

    .partner-logo {
        min-width: 160px;
        height: 100px;
    }

    .partner-logo img {
        max-height: 60px;
    }
}

.faq-section {
    background-color: #041230;
    padding: 20px 0;
    color: #ffffff;
}

.faq-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
    gap: 40px;
    align-items: start;
}

.faq-video-preview {
    background-color: #d9d9d9;
    border-radius: 16px;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.faq-video-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-video-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
}

.faq-video-preview .faq-play-button {
    position: relative;
    z-index: 1;
}

.faq-play-button {
    width: 84px;
    height: 84px;
    background-color: #041230;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
}

.faq-video p {
    margin-top: 24px;
    color: #e0e5f2;
    font-size: 1.05rem;
}

.faq-content h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #e0e5f2;
    border: none;
    color: #041230;
    font-weight: 700;
    font-size: 1rem;
    padding: 22px 26px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-item:hover {
    background-color: #ffffff;
}

.faq-item.active {
    background-color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    background-color: #0b1b57;
    border-radius: 0 0 10px 10px;
    color: #dbe4ff;
    padding: 0 26px;
}

.faq-answer.active {
    opacity: 1;
    max-height: 10000px;
    padding: 18px 26px 22px;
    overflow: visible;
}

.faq-answer p {
    margin: 0;
}

.video-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.video-modal.active {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
}

.video-modal-content {
    position: relative;
    width: min(920px, calc(100% - 40px));
    max-width: 920px;
    background-color: #041230;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    z-index: 1;
}

.video-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
}

.video-modal-body {
    padding: 40px;
    color: #e0e5f2;
}

.video-modal-body p {
    margin: 0 0 18px;
    font-size: 1.1rem;
}

.video-modal-player {
    width: 100%;
    border-radius: 12px;
    max-height: 70vh;
    background-color: #000;
}

@media (max-width: 960px) {
    .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-video-preview {
        min-height: 320px;
    }
}

.site-footer {
    background-color: #041230;
    color: #ffffff;
    padding: 40px 0 20px;
}

.footer-inner {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 22px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h3 {
    margin-bottom: 14px;
    font-size: 1.05rem;
    color: #ffffff;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.footer-brand .footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    margin-bottom: 8px;
}

.footer-tagline {
    max-width: 280px;
    margin-bottom: 18px;
    font-size: 0.96rem;
    line-height: 1.7;
    color: #c8d5ee;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
}

.newsletter-form {
    display: grid;
    gap: 12px;
}

.newsletter-form input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: none;
    font-size: 0.98rem;
    background-color: #ffffff;
    color: #041230;
}

.newsletter-form button {
    background-color: #e31b23;
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.newsletter-form button:hover {
    background-color: #c4151e;
    transform: translateY(-1px);
}

.footer-nav ul,
.footer-connect ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-nav a,
.footer-connect a {
    color: #c8d5ee;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-nav a:hover,
.footer-connect a:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.footer-bottom {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    font-size: 0.9rem;
    color: #9db2d1;
}

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .footer-brand .footer-logo {
        font-size: 1.6rem;
    }
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

.pre-adhesion-section {
    background-color: #041230;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.pre-adhesion-container {
    max-width: 800px;
    margin: 0 auto;
}

.pre-adhesion-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.pre-adhesion-section p {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 500;
    color: #e0e5f2;
}

/* Form Section */
.form-section {
    background-color: #041230;
    color: #ffffff;
    padding: 20px 20px 20px;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 10px;
}

.form-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(50% - 40px);
    gap: 80px;
}

.form-column {
    display: flex;
    flex-direction: column;
}

.form-col-title {
    color: #e31b23;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-col-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #e0e5f2;
}

.form-col-list {
    list-style: none;
    padding-left: 0;
    color: #e0e5f2;
    line-height: 1.8;
    margin-bottom: 30px;
}

.form-col-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
}

.form-col-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e31b23;
    font-weight: 700;
}

.border-panel {
    padding-left: 20px;
    margin-bottom: 30px;
}

.radio-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 15px 40px;
}

.radio-list-grid .custom-radio-large {
    align-items: flex-start;
}

.form-group {
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    background-color: #ffffff;
    border: none;
    padding: 18px 25px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    border-radius: 2px;
}

.form-input::placeholder {
    color: #6a748c;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #e31b23;
}

.hidden {
    display: none;
}

.other-input {
    margin-top: 10px;
}

.select-wrapper {
    position: relative;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.select-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #041230;
    pointer-events: none;
    font-size: 1rem;
}

.inline-group {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 25px;
    margin-bottom: 50px;
}

.inline-label {
    font-size: 1.05rem;
    font-weight: 500;
}



.custom-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    position: relative;
}

.custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-mark {
    display: inline-block;
    height: 24px;
    width: 24px;
    background-color: #c0c4d0;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    transition: background-color 0.2s ease;
}

.custom-radio:hover input ~ .radio-mark {
    background-color: #d1d5e0;
}

.custom-radio input:checked ~ .radio-mark {
    background-color: #e31b23;
}

.radio-mark:after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
}

.custom-radio input:checked ~ .radio-mark:after {
    display: block;
}




.radio-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.custom-radio-large {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    position: relative;
}

.custom-radio-large input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-mark-large {
    display: inline-block;
    height: 35px;
    width: 35px;
    background-color: #c0c4d0;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
    transition: background-color 0.2s ease;
}

.custom-radio-large:hover input ~ .radio-mark-large {
    background-color: #d1d5e0;
}

.custom-radio-large input:checked ~ .radio-mark-large {
    background-color: #e31b23;
}

.custom-radio-large input:checked ~ .radio-mark-large:after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
}

.custom-checkbox-large {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    position: relative;
}

.custom-checkbox-large input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-mark-large {
    display: inline-block;
    height: 35px;
    width: 35px;
    background-color: #c0c4d0;
    border-radius: 8px;
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
    transition: background-color 0.2s ease;
}

.custom-checkbox-large:hover input ~ .checkbox-mark-large {
    background-color: #d1d5e0;
}

.custom-checkbox-large input:checked ~ .checkbox-mark-large {
    background-color: #e31b23;
}

.custom-checkbox-large input:checked ~ .checkbox-mark-large:after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 2px;
    background: white;
}

.mt-30 {
    margin-top: 25px;
}

.btn-submit {
    background-color: #e31b23;
    color: #ffffff;
    border: none;
    padding: 16px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    align-self: flex-start;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(227, 27, 35, 0.3);
}

.btn-submit:hover {
    background-color: #c4151e;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(227, 27, 35, 0.4);
}

@media (max-width: 900px) {
    .form-grid {
        grid-auto-columns: 100%;
        gap: 60px;
    }
}

.form-step {
    display: none;
}

.form-step.active {
    display: grid;
}

.inline-group-date {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: 15px;
}

.inline-group-date .inline-label {
    min-width: 140px;
    font-size: 1.05rem;
    font-weight: 500;
}

.select-small {
    flex: 1;
}

.select-small .form-input {
    padding: 16px 15px;
}

.form-input-dark {
    background-color: #ffffff;
    color: #000000;
}

.obfuscated {
    opacity: 0.3;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.form-input-dark::placeholder {
    color: #b0bbd2;
}

.form-input-dark:focus {
    box-shadow: 0 0 0 2px #e31b23;
}