.typeButton {
    width: 540px;
    height: 240px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(2px);
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    cursor: pointer;
}

.typeButton .title {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.typeButton .description {
    font-size: 15px;
    margin-bottom: 12px;
    color: #e0e0e0;
}

.typeButton .price {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.typeButton .buttonsGroup {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 7px;
}

.orderButton {
    font-size: 10px;
    font-weight: 700;
    color: #000;
    background-color: #fff;
    padding: 10px 14px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.orderButton:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.findOutButton {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.findOutButton:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsividade */
@media (max-width: 1024px) {
    .typeButton {
        width: 480px;
        height: 220px;
        padding: 35px;
    }
    
    .typeButton .title {
        font-size: 21px;
    }
    
    .typeButton .description {
        font-size: 14px;
    }
    
    .typeButton .price {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .typeButton {
        width: 100%;
        max-width: 500px;
        height: auto;
        min-height: 200px;
        padding: 30px;
    }
    
    .typeButton .title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .typeButton .description {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .typeButton .price {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .orderButton,
    .findOutButton {
        font-size: 11px;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .typeButton {
        padding: 25px 20px;
        min-height: 180px;
    }
    
    .typeButton .title {
        font-size: 18px;
    }
    
    .typeButton .description {
        font-size: 13px;
    }
    
    .typeButton .price {
        font-size: 13px;
    }
    
    .orderButton,
    .findOutButton {
        font-size: 10px;
        padding: 10px 14px;
    }
    
    .typeButton .buttonsGroup {
        gap: 8px;
    }
}

/* Modal Viagem */
.viagemModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.viagemModal.active {
    opacity: 1;
    visibility: visible;
}

.viagemModalOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.viagemModalContent {
    position: relative;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 50px 40px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 10001;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    color: #fff;
    -webkit-overflow-scrolling: touch;
    margin: 20px;
}

.viagemModal.active .viagemModalContent {
    transform: scale(1);
}

.viagemModalClose {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.viagemModalClose:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.viagemModalTitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
}

.viagemModalFeatures {
    margin-bottom: 30px;
}

.viagemFeatureItem {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #fff;
}

.viagemCheckIcon {
    color: #00ff87;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.viagemModalDescription {
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.viagemModalDescription p {
    font-size: 15px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 15px;
}

.viagemModalPause {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.viagemModalSubtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.viagemModalPause p {
    font-size: 15px;
    line-height: 1.8;
    color: #ccc;
    margin: 0;
}

.viagemModalActions {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.viagemModalButton {
    background: #fff;
    color: #000;
    padding: 14px 40px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.viagemModalButton:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* Responsividade Modal */
@media (max-width: 768px) {
    .viagemModal {
        align-items: flex-start;
        padding: 20px 0;
    }
    
    .viagemModalContent {
        padding: 40px 30px;
        width: 95%;
        max-width: 95%;
        max-height: calc(100vh - 40px);
        margin: 20px auto;
    }
    
    .viagemModalTitle {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .viagemFeatureItem {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .viagemCheckIcon {
        width: 20px;
        height: 20px;
    }
    
    .viagemModalDescription p {
        font-size: 14px;
    }
    
    .viagemModalSubtitle {
        font-size: 18px;
    }
    
    .viagemModalPause {
        padding: 20px;
    }
    
    .viagemModalPause p {
        font-size: 14px;
    }
    
    .viagemModalButton {
        padding: 12px 35px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .viagemModal {
        align-items: flex-start;
        padding: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .viagemModalContent {
        padding: 30px 20px 40px;
        width: 100%;
        max-width: 100%;
        max-height: none;
        min-height: 100vh;
        border-radius: 0;
        margin: 0;
        transform: none;
    }
    
    .viagemModal.active .viagemModalContent {
        transform: none;
    }
    
    .viagemModalClose {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .viagemModalTitle {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .viagemFeatureItem {
        font-size: 14px;
        margin-bottom: 15px;
        gap: 12px;
    }
    
    .viagemCheckIcon {
        width: 18px;
        height: 18px;
    }
    
    .viagemModalDescription {
        margin-bottom: 25px;
        padding-top: 25px;
    }
    
    .viagemModalDescription p {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .viagemModalPause {
        padding: 18px;
        margin-bottom: 25px;
    }
    
    .viagemModalSubtitle {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .viagemModalPause p {
        font-size: 13px;
    }
    
    .viagemModalButton {
        padding: 12px 30px;
        font-size: 10px;
        width: 100%;
        text-align: center;
    }
}

