.contact-container {
    @apply w-full;

}
.contact-container-div{
    @apply flex flex-col justify-start items-center w-full min-h-[30vh] py-12 px-4 pb-[4rem] max-w-[100rem] mx-auto overflow-hidden;
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 3rem;
}

.contact-header:first-child {
    margin-top: 0;
}

.contact-title, .contact-title h2 {
    @apply !text-xl !font-[700] mb-[0.5rem] text-[var(--textBlack)];
}

.contact-subtitle {
    @apply text-md font-[400] text-[var(--textBlack)];
}

/* Grid Layout */
.contact-grid {
    @apply grid grid-cols-1 gap-6;
    justify-items: center;
}

.contact-card {
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #DBDFF6;
    padding: 1.25rem;
    min-width: 16rem;
    max-width: 100%;
    width: 100%;
}

.tech-support-card {
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #DBDFF6;
    padding: 1.25rem;
}

/* Client Support Layout */
.client-support-grid {
    @apply grid grid-cols-1 gap-6 w-full;
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    /*gap: 1.5rem;*/
    justify-items: center;
}

.client-support-card {
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #DBDFF6;
    padding: 1.25rem;
    min-width: 16rem;
    width: 100%;
}


/* Section Title and Separator */
.card-title,
.section-title {
    color: #1C2FE0;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.separator {
    height: 1px;
    background-color: #1C2FE0;
    width: 100%;
    margin-bottom: 1.5rem;
}

/* Card Content */
.card-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule {
    font-size: 0.9rem;
    color: black;
    margin-bottom: 0.5rem;
}
.schedule-link{
    @apply underline;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.4;
}

.contact-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text {
    font-size: 0.9rem;
    color: #333;
}

.contact-link {
    @apply text-[var(--textBlack)] text-sm underline;
}
.number-mobile{
    @apply inline-flex;
}
.contact-link-number{
    @apply hidden text-[var(--textBlack)] text-sm;
}


/* Quote Button */
.quote-button-container {
    display: flex;
    justify-content: start;
    margin-top: 1rem;
}

.quote-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    background-color: #1C2FE0;
    color: white!important;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.quote-button span {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

.quote-button:hover {
    background-color: #003d7a;
}

/* Container Styles for Sections */
.asistencia-tecnica-container{
    width: 100%;
    margin-top: 4rem;
}
.atencion-cliente-container{
    margin-top: 4rem;
    width: 100%;
}

/* Responsive Design */

@media (min-width: 768px) {

    .section-title {
        font-size: 1.4rem;
    }
    .contact-detail {
        gap: 0.5rem;
    }
    .client-support-grid {
        gap: 1.25rem;
    }
    .contact-card,
    .tech-support-card,
    .client-support-card {
        padding: 1.5rem;
    }
    .contact-container-div{
        @apply py-16;
    }
}
@media (min-width: 1024px){
    .contact-container {
        @apply pb-[3rem];
    }
    .contact-container-div {
        @apply px-[3rem];
    }
    .contact-grid {
        @apply grid-cols-3;
    }
    .client-support-grid {
        @apply grid-cols-2;
    }
    .contact-link-number{
        @apply inline-flex
    }
    .number-mobile{
        @apply hidden;
    }
}
@media (min-width: 1280px){
    .contact-container-div {
        @apply px-[10rem];
    }
}

/*@media (min-width: 480px) {*/
/*    .contact-container {*/
/*        padding: 1.5rem 0.75rem;*/
/*    }*/

/*    .contact-title {*/
/*        font-size: 1.5rem;*/
/*    }*/

/*    .card-title,*/
/*    .section-title {*/
/*        font-size: 1.25rem;*/
/*    }*/

/*    .contact-card,*/
/*    .tech-support-card,*/
/*    .client-support-card {*/
/*        padding: 1.25rem;*/
/*    }*/

/*    .quote-button {*/
/*        width: 100%;*/
/*    }*/
/*}*/
/*@media (max-width: 992px) {*/
/*    .contact-grid {*/
/*        gap: 1.25rem;*/
/*    }*/

/*    .contact-card {*/
/*        flex: 0 0 calc(50% - 1.25rem);*/
/*    }*/

/*    .client-support-card {*/
/*        flex: 0 0 calc(50% - 0.75rem);*/
/*    }*/
/*}*/
