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

body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

.main-container {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.hero-section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    justify-content: flex-start;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.car-image-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    opacity: 0.4;
    z-index: -1;
}

.car-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 100vw;
    min-height: 100vh;
    transform: translate(-50%, -50%) scale(1.1);
    object-fit: cover;
    filter: grayscale(100%);
}

/* Hide all video controls */
.car-video::-webkit-media-controls {
    display: none !important;
}

.car-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.car-video::-webkit-media-controls-panel {
    display: none !important;
}

.car-video::-webkit-media-controls-play-button {
    display: none !important;
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(26, 26, 26, 0.3) 100%);
}

.grid-lines-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.grid-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background-image: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.15) 0px,
        rgba(255, 255, 255, 0.15) 2px,
        transparent 2px,
        transparent 6px
    );
    opacity: 1;
}

.line-1 {
    left: 20%;
}

.line-2 {
    left: 40%;
}

.line-3 {
    left: 60%;
}

.line-4 {
    left: 80%;
}

.line-highlight {
    position: absolute;
    width: 1px;
    height: 200px;
    opacity: 0;
    transform: translateY(-200px);
}

.highlight-1 {
    left: 20%;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(243, 184, 69, 0) 10%,
        rgba(243, 184, 69, 0.8) 30%,
        rgba(243, 184, 69, 1) 50%,
        rgba(243, 184, 69, 0.8) 70%,
        rgba(243, 184, 69, 0) 90%,
        transparent 100%
    );
    filter: drop-shadow(0 0 8px rgba(243, 184, 69, 0.6));
}

.highlight-2 {
    left: 40%;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(74, 159, 230, 0) 10%,
        rgba(74, 159, 230, 0.8) 30%,
        rgba(74, 159, 230, 1) 50%,
        rgba(74, 159, 230, 0.8) 70%,
        rgba(74, 159, 230, 0) 90%,
        transparent 100%
    );
    filter: drop-shadow(0 0 8px rgba(74, 159, 230, 0.6));
}

.highlight-3 {
    left: 60%;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(243, 184, 69, 0) 10%,
        rgba(243, 184, 69, 0.8) 30%,
        rgba(243, 184, 69, 1) 50%,
        rgba(243, 184, 69, 0.8) 70%,
        rgba(243, 184, 69, 0) 90%,
        transparent 100%
    );
    filter: drop-shadow(0 0 8px rgba(243, 184, 69, 0.6));
}

.highlight-4 {
    left: 80%;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(74, 159, 230, 0) 10%,
        rgba(74, 159, 230, 0.8) 30%,
        rgba(74, 159, 230, 1) 50%,
        rgba(74, 159, 230, 0.8) 70%,
        rgba(74, 159, 230, 0) 90%,
        transparent 100%
    );
    filter: drop-shadow(0 0 8px rgba(74, 159, 230, 0.6));
}

.floating-plus {
    position: absolute;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    opacity: 0;
    z-index: 2;
}

.plus-1 {
    left: 140px;
    top: 129px;
    font-size: 33.455px;
    color: rgba(242, 242, 242, 0.08);
}

.plus-2 {
    left: 344px;
    top: 534px;
    font-size: 29.156px;
    color: rgba(242, 242, 242, 0.2);
}

.plus-3 {
    left: 240px;
    top: 815px;
    font-size: 33.455px;
    color: rgba(242, 242, 242, 0.02);
}

.content-wrapper {
    position: relative;
    z-index: 10;
    padding: 0 48px;
    max-width: 600px;
    margin-top: -100px;
}

.logo-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 4px;
}

.partner-logo {
    width: 104px;
    height: 76px;
    object-fit: contain;
}

.logo-plus {
    font-size: 42px;
    color: #c5c5c7;
    font-weight: 400;
    margin-left: 8px;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 38px;
    width: auto;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
}

.hero-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #ffffff;
}

.cta-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-primary {
    background-color: #F3B845;
    color: #000000;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(243, 184, 69, 0.3);
}

.btn-menu {
    background: transparent;
    border: none;
    color: #f2f2f2;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-menu:hover {
    color: #F3B845;
}

.btn-menu svg {
    transition: transform 0.3s ease;
}

.btn-menu:hover svg {
    transform: translateY(2px);
}

/* SOS Button */
.btn-sos {
    background: transparent;
    border: 2px solid #F3B845;
    color: #F3B845;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-sos:hover {
    background: rgba(243, 184, 69, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 184, 69, 0.2);
}

/* Atendimento page SOS button variant (dark text) */
.btn-sos.atendimento-sos-btn {
    border-color: #2b2b29;
    color: #2b2b29;
}

.btn-sos.atendimento-sos-btn:hover {
    background: rgba(43, 43, 41, 0.1);
}

/* SOS Modal */
.sos-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.sos-modal.active {
    opacity: 1;
    visibility: visible;
}

.sos-modal-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.sos-modal-content {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
    width: calc(100% - 2rem);
    max-width: 500px;
    margin: 0 !important;
    background: #1a1a1a;
    border: 1px solid rgba(242, 242, 242, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.6s ease;
    z-index: 1001;
}

.sos-modal.active .sos-modal-content {
    transform: translate(-50%, -50%) scale(1) !important;
    opacity: 1;
}

.sos-modal:not(.active) .sos-modal-content {
    transform: translate(-50%, -50%) scale(0.95) !important;
    opacity: 0;
}

.sos-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: rgba(242, 242, 242, 0.6);
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
}

.sos-modal-close:hover {
    color: #F2F2F2;
}

.sos-modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #F2F2F2;
    margin-bottom: 16px;
    line-height: 1.3;
}

.sos-modal-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(242, 242, 242, 0.7);
    margin-bottom: 24px;
    line-height: 1.6;
}

.sos-phone-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.sos-phone-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(242, 242, 242, 0.05);
    border-radius: 12px;
    padding: 16px;
    transition: border-color 0.3s ease;
}

.sos-phone-item:hover {
    border-color: rgba(243, 184, 69, 0.3);
}

.sos-phone-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #F3B845;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.sos-phone-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sos-phone-number {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #F2F2F2;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
    flex: 1;
}

.sos-phone-number svg {
    color: #F3B845;
    transition: transform 0.3s ease;
}

.sos-phone-number:hover {
    color: #F3B845;
}

.sos-phone-number:hover svg {
    transform: scale(1.1);
}

.sos-copy-btn {
    background: rgba(242, 242, 242, 0.05);
    border: none;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sos-copy-btn:hover {
    background: rgba(242, 242, 242, 0.1);
}

.sos-copy-btn svg {
    color: rgba(242, 242, 242, 0.6);
    transition: color 0.3s ease;
}

.sos-copy-btn:hover svg {
    color: #F2F2F2;
}

.sos-copy-btn .check-icon {
    color: #4CAF50;
}

.sos-modal-close-btn {
    width: 100%;
    padding: 12px 24px;
    background: rgba(242, 242, 242, 0.05);
    border: 1px solid rgba(242, 242, 242, 0.1);
    border-radius: 8px;
    color: #F2F2F2;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sos-modal-close-btn:hover {
    background: rgba(242, 242, 242, 0.1);
}

/* Mobile-specific modal adjustments */
@media (max-width: 768px) {
    .sos-modal-content {
        padding: 20px;
        width: calc(100% - 2rem);
        max-height: 90vh;
        overflow-y: auto;
    }

    .sos-modal-title {
        font-size: 20px;
        padding-right: 30px;
    }

    .sos-modal-text {
        font-size: 14px;
    }

    .sos-phone-number {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    /* Start video invisible on mobile, fade in gracefully after loaded */
    .car-image-container {
        opacity: 0;
        transition: opacity 1.5s ease-in;
    }

    .car-video.loaded ~ .overlay-gradient,
    .car-video.loaded {
        opacity: 1;
    }

    .car-video.loaded + .overlay-gradient + * {
        /* Fade in entire container when video is ready */
    }

    body:has(.car-video.loaded) .car-image-container {
        opacity: 0.4;
    }

    .content-wrapper {
        padding: 0 24px;
        margin-top: 0;
    }

    .logo-svg {
        height: 30px;
    }

    .hero-title {
        font-size: 18px;
    }

    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .floating-plus {
        display: none;
    }
    
    .content-wrapper {
        padding: 0 16px;
    }
    
    .logo-svg {
        height: 25px;
    }
    
    .hero-title {
        font-size: 16px;
    }
}

/* Menu Overlay Styles */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2b2b29;
}

.menu-plus {
    position: absolute;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: rgba(242, 242, 242, 0.2);
    font-size: 29.156px;
    opacity: 0;
    transform: translateY(30px);
}

.menu-plus-1 {
    left: 242px;
    top: 94px;
}

.menu-plus-2 {
    left: 38px;
    top: 391px;
}

.menu-plus-3 {
    left: 140px;
    top: 602px;
}

.menu-plus-4 {
    left: 240px;
    top: 815px;
    font-size: 33.455px;
    color: rgba(242, 242, 242, 0.02);
}

.menu-content {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.menu-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(50px);
}

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

.menu-partner-logo {
    width: 96px;
    height: 70px;
    object-fit: contain;
}

.menu-logo-plus {
    font-size: 38px;
    color: #c5c5c7;
    font-weight: 400;
    margin-left: 8px;
}

.menu-brand-logo {
    display: flex;
    align-items: center;
}

.menu-logo-svg {
    height: 35px;
    width: auto;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 38px;
    opacity: 0;
    transform: translateY(50px);
}

.menu-navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    width: 150px;
}

.menu-nav-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #f2f2f2;
    text-decoration: none;
    text-align: right;
    line-height: 1.42;
    transition: all 0.3s ease;
    width: 100%;
}

.menu-nav-item:hover {
    color: #F3B845;
    transform: translateX(-5px);
}

.menu-nav-active {
    font-weight: 700;
    color: #ffffff;
}

.menu-cta-btn {
    background-color: #F3B845;
    color: #000000;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.menu-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(243, 184, 69, 0.3);
}

.menu-close-btn {
    background: transparent;
    border: none;
    color: #f2f2f2;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: right;
    width: 100%;
    line-height: 1.42;
}

.menu-close-btn:hover {
    color: #F3B845;
}

.menu-regulatory-text {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(242, 242, 242, 0.1);
    width: 100%;
}

.menu-regulatory-text p {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    line-height: 1.6;
    color: rgba(242, 242, 242, 0.5);
    margin-bottom: 12px;
    text-align: left;
}

.menu-regulatory-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .menu-content {
        padding: 24px;
    }
    
    .menu-logo-svg {
        height: 30px;
    }

    .menu-partner-logo {
        width: 80px;
        height: 58px;
    }
    
    .menu-logo-plus {
        font-size: 32px;
    }
    
    .menu-nav-item {
        font-size: 16px;
    }
    
    .menu-plus {
        display: none;
    }
}

/* Como Contratar Page Styles */
.como-contratar-page {
    min-height: 100vh;
    position: relative;
    background: #2b2b29;
    color: #f2f2f2;
    overflow-x: hidden;
}

.page-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    z-index: 0;
}

.page-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 198px;
    background: linear-gradient(180deg, rgba(43, 43, 41, 0.7) 55%, rgba(43, 43, 41, 0) 100%);
}

.page-header {
    position: relative;
    z-index: 10;
    padding: 42px 42px 0 42px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.header-partner-logo {
    width: 58px;
    height: 42px;
    object-fit: contain;
}

.header-logo-plus {
    font-size: 23px;
    color: #c5c5c7;
    font-weight: 400;
    margin-left: 8px;
    font-family: 'Inter', sans-serif;
}

.header-brand-logo {
    display: flex;
    align-items: center;
}

.header-logo-svg {
    height: 21px;
    width: auto;
}

/* Step Items with Viewport Focus */
.steps-container {
    min-height: 80vh;
    max-width: none;
    width: 100%;
    padding: 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 97px;
    padding: 0;
    margin-bottom: 120px;
    min-height: auto;
    opacity: 1;
    transition: all 0.8s ease;
}

.step-content {
    flex: 0 0 588px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    filter: blur(18px);
    backdrop-filter: blur(34px);
    transition: all 0.8s ease;
}

.step-item:first-child .step-content,
.step-item.active .step-content {
    filter: blur(0);
    backdrop-filter: none;
}

.step-item:last-child {
    margin-bottom: 0;
}



.step-svg-container {
    flex: 0 0 135px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: auto;
    position: relative;
    margin-top: 19px;
}

.step-svg {
    width: 135px;
    height: 157px;
    opacity: 0;
    transition: none;
}

.step-svg path {
    stroke: #f3b845;
    stroke-width: 12.5833;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.step-svg path,
.step-svg line,
.step-svg polyline,
.step-svg polygon,
.step-svg circle,
.step-svg rect {
    stroke-width: 2;
    stroke: #f3b845;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.step-svg.filled path,
.step-svg.filled polygon {
    fill: #f3b845;
    opacity: 0.1;
}

.como-contratar-page .page-content {
    position: relative;
    z-index: 10;
    padding: 50px 80px 120px 80px;
    max-width: 100%;
    width: 100%;
    margin-top: 80px;
    text-align: left;
}

@media (max-width: 768px) {
    .como-contratar-page .page-content {
        padding: 50px 24px 120px 24px;
    }
    
    .step-item {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 120px;
        align-items: center;
    }
    
    .step-content {
        flex: none;
        width: 100%;
        text-align: center;
    }
    
    .step-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .step-description {
        font-size: 16px;
        line-height: 1.4;
        padding-left: 0;
        flex: none;
    }
    
    .step-svg-container {
        margin-top: 0;
        width: 100px;
        flex: 0 0 auto;
    }
    
    .step-svg {
        width: 100px;
        height: 116px;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 32px;
    }
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 32px;
    color: #f2f2f2;
    text-align: left;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}


.step-item .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

/* Add padding to contract section for scroll space */
.contract-section {
    padding-bottom: 200px;
}

.step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #f2f2f2;
    line-height: 1.3;
    margin: 0;
    padding: 0;
    list-style-position: outside;
    text-align: left;
}

.step-title li {
    margin: 0;
    padding: 0;
}

.step-title li span {
    margin-left: 16px;
}

.step-number {
    margin-right: 8px;
}

.step-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #f2f2f2;
    line-height: 1.5;
    margin: 0;
    padding-left: 22px;
    flex: none;
    text-align: left;
}

.claim-section,
.important-section {
    margin-bottom: 48px;
}

.section-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #f2f2f2;
    line-height: 1.2;
    margin: 0;
    max-width: 216px;
}

.page-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 42px 16px 42px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(32px);
    border-top: 1px solid rgba(242, 242, 242, 0.1);
}

.btn-menu {
    margin-left: auto;
}


/* Responsive for como-contratar page */
@media (max-width: 768px) {
    .page-header {
        padding: 24px 24px 0 24px;
    }
    
    .page-content {
        padding: 40px 24px 0 24px;
        max-width: 100%;
        margin-top: 70px;
    }
    
    .svg-animation-container {
        display: none; /* Hide SVG on mobile for cleaner experience */
    }
    
    .page-footer {
        padding: 20px 24px 40px 24px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .page-footer .btn-primary {
        width: 100%;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .step-item {
        margin-bottom: 80px;
        gap: 60px;
    }
    
    .step-content {
        gap: 20px;
    }
    
    .header-logo-svg {
        height: 17px;
    }

    .header-partner-logo {
        width: 48px;
        height: 35px;
    }
    
    .header-logo-plus {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 22px;
    }
    
    .step-title {
        font-size: 20px;
        padding-left: 20px;
    }
    
    .step-description {
        font-size: 14px;
        padding-left: 20px;
    }
    
    .step-item {
        margin-bottom: 60px;
        gap: 40px;
    }
    
    .step-content {
        gap: 16px;
    }
}

/* Tipos de Veículos Page Styles */
.tipos-veiculos-page {
    min-height: 100vh;
    position: relative;
    background: #2b2b29;
    color: #f2f2f2;
    overflow-x: hidden;
}


.vehicle-container {
    position: absolute;
    left: 24px;
    top: 159px;
    width: 364px;
    height: 204px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.vehicle-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.vehicle-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.vehicle-image.active {
    opacity: 1;
}

.tipos-veiculos-page .page-content {
    position: relative;
    z-index: 10;
    padding: 0 47px;
    max-width: 326px;
    margin-top: 371px;
}

.vehicle-types-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.tipos-veiculos-page .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
    margin: 0;
    color: #f2f2f2;
    width: 300px;
}

.vehicle-type-animated {
    color: #f3b845;
    font-weight: 700;
    display: inline-block;
    min-width: 140px;
    text-align: left;
}

.vehicle-type-animated .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

.vehicle-description {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.description-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #f2f2f2;
    line-height: 1.42;
    margin: 0;
    width: 207px;
}

.highlight-normal {
    font-weight: 400;
}

.highlight-bold {
    font-weight: 700;
}

.tipos-veiculos-page .page-footer {
    position: relative;
    z-index: 10;
    padding: 20px 42px 40px 42px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
}

/* Responsive for tipos de veículos page */
@media (max-width: 768px) {
    .tipos-veiculos-page .page-content {
        padding: 0 24px;
        max-width: 100%;
        margin-top: 320px;
    }
    
    .tipos-veiculos-page .page-footer {
        padding: 20px 24px 40px 24px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tipos-veiculos-page .page-footer .btn-primary {
        width: 100%;
    }
    
    .tipos-veiculos-page .section-title {
        font-size: 28px;
        width: 100%;
    }
    
    .description-text {
        width: 100%;
    }
    
    .vehicle-container {
        left: 12px;
        top: 120px;
        width: calc(100% - 24px);
        height: 160px;
    }
    
}

/* Atendimento page styles - Mobile-first design */
.atendimento-page {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: #f2f2f2;
}

.rio-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.rio-background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.background-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 198px;
    background: linear-gradient(to bottom, rgba(43, 43, 41, 0.7) 55%, rgba(43, 43, 41, 0) 100%);
    z-index: 2;
}

/* Floating plus signs */
.atendimento-plus-1 {
    position: absolute;
    top: 378px;
    left: 140px;
    font-size: 33px;
    color: rgba(242, 242, 242, 0.08);
    z-index: 3;
}

.atendimento-plus-2 {
    position: absolute;
    top: 283px;
    left: 344px;
    font-size: 29px;
    color: rgba(242, 242, 242, 0.2);
    z-index: 3;
}

.atendimento-plus-3 {
    position: absolute;
    top: 815px;
    left: 240px;
    font-size: 33px;
    color: rgba(242, 242, 242, 0.02);
    z-index: 3;
}

/* Header styles */
.atendimento-header {
    position: absolute;
    top: 42px;
    left: 42px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 4;
}

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

.atendimento-partner-logo {
    width: 58px;
    height: 42px;
}

.atendimento-logo-plus {
    font-family: 'Inter', sans-serif;
    font-size: 23px;
    color: #c5c5c7;
    line-height: 1;
}

.atendimento-brand-logo {
    margin-left: 12px;
}

.atendimento-logo-svg {
    width: 65px;
    height: 21px;
}

/* Content section */
.atendimento-content-section {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f2f2f2;
    padding: 47px 47px 42px 47px;
    z-index: 4;
}

.atendimento-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    color: #2b2b29;
    margin-bottom: 32px;
}

.atendimento-description {
    margin-bottom: 48px;
}

.atendimento-description p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.42;
    color: #2b2b29;
    margin-bottom: 16px;
}

.atendimento-description p:last-child {
    margin-bottom: 0;
}

/* Footer buttons */
.atendimento-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-menu.atendimento-menu-btn {
    background: transparent;
    border: none;
    color: #2b2b29;
    padding: 8px;
}

.btn-menu.atendimento-menu-btn span {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #2b2b29;
}

.btn-menu.atendimento-menu-btn:hover {
    background: rgba(43, 43, 41, 0.1);
    transform: translateY(-1px);
}

/* Responsive styles for atendimento page */
@media (max-width: 480px) {
    
    .atendimento-header {
        left: 24px;
    }
    
    .atendimento-content-section {
        padding: 32px 24px 24px 24px;
    }
    
    .atendimento-title {
        font-size: 28px;
    }
    
    .atendimento-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .atendimento-footer .btn-primary {
        width: 100%;
        margin-bottom: 12px;
    }
}

/* Page Transition Tiles */
body {
    background-color: #2b2b29;
}

/* Home page gets white background for transitions */
.main-container {
    background-color: white;
}

.transition-tile {
    position: fixed;
    background-color: white;
    z-index: 9999;
    transform: translateY(-100vh);
    width: 100%;
}

/* 5 tiles matching grid lines layout */
.transition-tile-1 { left: 0; width: 20%; }
.transition-tile-2 { left: 20%; width: 20%; }
.transition-tile-3 { left: 40%; width: 20%; }
.transition-tile-4 { left: 60%; width: 20%; }
.transition-tile-5 { left: 80%; width: 20%; }

/* All tiles cover full height */
.transition-tile {
    top: 0;
    height: 100vh;
}

/* Sticky Logo for Internal Pages - Vertical Layout */
.page-logo-section {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.page-logo-section:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.page-logo-container {
    display: flex;
    align-items: center;
    gap: 2px;
}

.page-partner-logo {
    height: 32px;
    width: auto;
}

.page-logo-plus {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #c5c5c7;
    line-height: 1;
}

.page-brand-logo {
    margin-top: 2px;
}

.page-logo-svg {
    height: 16px;
    width: auto;
}

@media (max-width: 480px) {
    .page-logo-section {
        top: 16px;
        left: 16px;
        gap: 12px;
    }
    
    .page-partner-logo {
        height: 26px;
    }

    .page-logo-plus {
        font-size: 16px;
    }

    .page-logo-svg {
        height: 13px;
    }
    
    .tipos-veiculos-page .section-title {
        font-size: 24px;
    }
    
    .vehicle-container {
        top: 100px;
        height: 140px;
    }
    
    .tipos-veiculos-page .page-content {
        margin-top: 280px;
    }
}