@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

.inter-light {
    font-family: 'Inter', sans-serif;
    font-weight: 100;
}

.inter-regular {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.inter-bold {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin: 0;
    background-color: #260F45;
    color: white;
    position: relative;
    overflow-x: hidden;
    background: linear-gradient(to bottom left, #6C53CC 0%, #260F45 8%);
}

.wave {
    position: absolute;
    width: 100%;
    height: auto;
    z-index: -20;
}

.wave.top {
    top: 150px;
}

.wave.vertical {
    top: -5%;
    left: 40%;
    transform: rotate(-105deg);
}

.wave.bottom {
    bottom: 100px;
    /*left: 40px;*/
    /* transform: rotate(-10deg); */
}

footer {
    background-color: #260E54;
    margin-top: 250px;
    position: relative;
}

section {
    margin-top: 100px;
}

.form-control, .custom-select {
    /* border: 0.1rem solid #D2DAE2; */
    border-radius: 10px;
    padding-left: 15px;
}

.custom-select {
    color: #576D99;
    padding-right: 0px;
}

.select-phone{
    padding-left: 15px;
    color: #576D99;
    border-start-start-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top: 0.1rem solid #D2DAE2;
    border-bottom: 0.1rem solid #D2DAE2;
    border-left: 0.1rem solid #D2DAE2;
    border-right: 0;
}

.row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.text-custom {
    color: #5540A1;
}

.text-title {
    color: #6E4CFB;
    font-weight: 700;
}

.text-subtitle {
    color: #A48E8E;
}

.text-pink {
    color: #F061FF;
}

.text-coral{
    color: #FBA8A4 !important;
}

.actived {
    color: #AF8FF4 !important;
}

.card-cotizacion {
    color: #050B32;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.9);
}

.rounded-custom {
    border-radius: 12px;
}

.btn-custom {
    background-image: linear-gradient(to right, #0719A1 0%, #6E4CFB 50%, #FBA8A4 100%);
    color: white;
    padding: 0.75rem 4rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.btn-custom:hover {
    opacity: 0.95;
    color: #d1d5db !important;
}

.btn-custom:active {
    opacity: 0.8;
    color: #fff !important;
}

.btn-custom:disabled {
    opacity: 60%;
    pointer-events: none;
    cursor: default;
}

.btn-custom-secondary {
    background-color: #6E4CFB;
    color: white;
    padding: 1rem;
    width: 225px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.btn-custom-secondary:hover {
    opacity: 0.95;
    color: #d1d5db !important;
}

.btn-custom-secondary:active {
    opacity: 0.8;
    color: #fff !important;
}

.btn-custom-secondary:disabled {
    opacity: 60%;
    pointer-events: none;
    cursor: default;
}


.btn-custom-card {
    color: white;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.bg-right-top {
    background-image: linear-gradient(to right top, #6E4CFB, #FBA8A4);
}

.bg-right-bottom {
    background-image: linear-gradient(to right bottom, #6E4CFB, #FBA8A4);
}

.bg-bottom {
    background-image: linear-gradient(to bottom, #6E4CFB, #FBA8A4);
}

.btn-custom-card:hover {
    opacity: 0.95;
    color: #d1d5db !important;
}

.btn-custom-card:active {
    opacity: 0.8;
    color: #fff !important;
}

.btn-custom-card:disabled {
    opacity: 60%;
    pointer-events: none;
    cursor: default;
}

.btn-link{
    color: #FBA8A4 !important;
}

.gap-1 {
    grid-gap: 1rem;
}
.gap-4 {
    grid-gap: 4rem;
}

.bg-img {
    background-image: url("../images/image-bg.png");
    background-repeat: no-repeat;
    border-radius: 30px;
}

.relative {
    position: relative;
}

.person-absolute {
    position: absolute;
    width: 100%;
    bottom: 0;
}



#cotizacion .btn-custom-card {
    cursor: default;
}

.txt-white{
    color: white;
}

.font-weight-lighter{
    font-weight: 200 !important;
}











.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.whatsapp-float:hover {
    color: #FFF;
    text-decoration: none;
    transform: scale(1.1);
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.35);
}