
/* =====================================================
   Popup promocional
   ===================================================== */

body.ct-popup-open {
    overflow: hidden;
}

.ct-popup[hidden] {
    display: none !important;
}

.ct-popup {
    position: fixed;
    inset: 0;
    z-index: 999999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow-y: auto;
    background: rgba(8, 8, 10, 0.82);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.28s ease,
        visibility 0.28s ease;
}

.ct-popup.is-visible {
    opacity: 1;
    visibility: visible;
}

/* Fondo que permite cerrar el popup */
.ct-popup__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: default;
}

.ct-popup__backdrop:focus-visible {
    outline: none;
}

/* Ventana principal */
.ct-popup__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: min(920px, 100%);
    min-height: 500px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: #f6eee8;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
    transform: translateY(22px) scale(0.98);
    transition: transform 0.32s ease;
}

.ct-popup.is-visible .ct-popup__dialog {
    transform: translateY(0) scale(1);
}

/* Fotografía */
.ct-popup__media {
    min-height: 500px;
    background: #2e2d2d;
}

.ct-popup__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contenido */
.ct-popup__content {
    display: flex;
    flex-direction: column;
    justify-content: center top;
    padding: 72px 56px 58px;
}

.ct-popup__title {
    margin: 0 0 18px;
    color: #2e2d2d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4.2vw, 58px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.ct-popup__subtitle {
    margin: 0 0 20px;
    color: #bd4e25;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
}

.ct-popup__text {
    margin: 0 0 30px;
    color: #53504e;
    font-size: 16px;
    line-height: 1.65;
}

/* Botón principal */
.ct-popup__button {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 28px;
    border-radius: 999px;
    background: #bd4e25;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.ct-popup__button:hover,
.ct-popup__button:focus-visible {
    background: #9d8067;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Botón de cierre */
.ct-popup__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #2e2d2d;
    color: #ffffff;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.ct-popup__close span {
    position: absolute;
    top: 21px;
    left: 13px;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
}

.ct-popup__close span:first-child {
    transform: rotate(45deg);
}

.ct-popup__close span:last-child {
    transform: rotate(-45deg);
}

.ct-popup__close:hover,
.ct-popup__close:focus-visible {
    background: #bd4e25;
    transform: rotate(4deg);
}

.ct-popup__close:focus-visible,
.ct-popup__button:focus-visible {
    outline: 3px solid rgba(189, 78, 37, 0.3);
    outline-offset: 3px;
}

/* Versión móvil */
@media (max-width: 767px) {
    .ct-popup {
        align-items: flex-start;
        padding: 18px;
    }

    .ct-popup__dialog {
        grid-template-columns: 1fr;
        min-height: 0;
        margin: auto 0;
        border-radius: 22px;
    }

    .ct-popup__media {
        min-height: 0;
        height: clamp(210px, 46vh, 330px);
    }

    .ct-popup__content {
        padding: 34px 28px 32px;
    }

    .ct-popup__title {
        margin-bottom: 14px;
        font-size: clamp(34px, 10vw, 46px);
    }

    .ct-popup__subtitle {
        margin-bottom: 14px;
        font-size: 16px;
    }

    .ct-popup__text {
        margin-bottom: 24px;
        font-size: 15px;
        line-height: 1.55;
    }

    .ct-popup__button {
        width: 100%;
    }

    .ct-popup__close {
        top: 12px;
        right: 12px;
    }
}

/* Reduce las animaciones cuando el dispositivo lo solicita */
@media (prefers-reduced-motion: reduce) {
    .ct-popup,
    .ct-popup__dialog,
    .ct-popup__button,
    .ct-popup__close {
        transition: none;
    }
}

.preloader {
    width: 200px;
    height: 150px;
    margin-left: 0px;
    margin-top: 0px;
    top: 40%;
    left: 42%;
}
.f-med{
    font-size: 21px !important;
}

.mt-0{
    margin-bottom: 0 !important;
}

.pt-100{
    padding-top: 100px !important;
}

.ptb-100{
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.pt-60{
    padding-top: 60px !important;
}

.color-cafe{
    color: #9d8067 !important;
}

.color-naranja{
    color: #bd4e25 !important;
}

.color-blanco{
    color: #ffff !important;
}

.color-negro{
    color: #2E2D2D !important;
}

.bg-cafe{
    background-color: #9d8067 !important;
}

.bg-naranja{
    background-color: #bd4e25 !important;
}

.app-feature-item{
    background-color:#fffaf2 !important ;
}

.text-left{
    text-align: left !important;
}

.cantaritos{
    color: #fffaf2 !important;
}

#preloader{
    background-color: #0e0f11 !important;   
}

.tp-section-subtitle.border-bg{
    border: 1px solid rgb(255, 255, 255) !important;
}

.tp-footer-15-social span{
    color: #ffff !important;
}

.tp-footer-15-social::after{
    background-color: #ffff;
}

.tp-footer-15-copyright-text span{
    color: #ffff !important;
}

.aviso h2{
    margin-top: 50px !important;
}

.btn-whats{
    background-color: #25d366 !important;
}

.celular{
    display: none !important;
}

@media (max-width: 560px) {

    .pantalla{
        display: none !important;
    }

    .celular{
        display: inline-block !important;
    }
}

@media (min-width: 1200px) {
  .app-hero-ptb{
    padding-top: 80px !important;
    }
}

.tp-btn-gradient{
    background: linear-gradient(230deg, #a54021 6.7%, #bd4e25 48.83%, #d3522a 90.96%) !important;
}

.tp-section-title-phudu{
    font-family: Georgia, "Times New Roman", serif !important;
    font-optical-sizing: auto !important;
    font-weight: 400 !important;
    letter-spacing:normal !important;
    font-style: normal !important;
    text-transform: none !important;
    font-size: 80px !important;
}

.tp-section-title-phudu span{
    font-family: Georgia, "Times New Roman", serif !important;
    font-optical-sizing: auto !important;
    font-weight: 400 !important;
    letter-spacing:normal !important;
    font-style: normal !important;
    text-transform: none !important;
    font-size: 120px !important;
}

.app-feature-title{
    font-family: Georgia, "Times New Roman", serif !important;
    font-optical-sizing: auto !important;
    font-weight: 600 !important;
    font-style: normal !important;
    text-transform: none !important;
}

.cst-service-item-title{
    font-family: Georgia, "Times New Roman", serif !important;
    font-optical-sizing: auto !important;
    font-weight: 600 !important;
    font-style: normal !important;
    text-transform: none !important;
    color: #ffff !important;
}

.cst-service-item-content{
    padding-bottom: 0px !important;
}

.cst-service-item-title{
    margin-bottom: 3px !important;
}

.f-georgia, .tp-section-title, .app-stack-title, .ar-about-us-4-title{
    font-family: Georgia, "Times New Roman", serif !important;
    font-optical-sizing: auto !important;
    font-weight: 600 !important;
    font-style: normal !important;
    text-transform: none !important;
}

@media (max-width: 992px) {
.res-delete{
    display: none !important;
}
}

@media (max-width: 767px) {
    .tp-section-title-phudu.fs-70, .tp-section-title-phudu{
        font-size: 60px !important;
    }

    .tp-section-title-phudu span{
        font-size: 72px !important;
    }
}

.redondeo{
    background-color: #9d8067 !important;
    color: #ffff !important;
}

.app-stack-btn a{
    background-color: #bd4e25 !important;
}

.app-stack-item-02{
    background: linear-gradient(265deg, #f9b9a5  16.29%, #fff2ee 84.71%);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .app-benefits-wrapper {
        padding: 50px 100px 90px;
    }
}

.app-cta-store, .tp-about-5-title-box{
    display: inline-flex !important;
}

.app-cta-store{
    width: 200px !important;
}

.dgm-service-title-sm{
    font-family: 'Inter', sans-serif !important;
    font-weight: 600;
}

.dgm-service-content-right p{
    max-width: none;
}

.dgm-about-thumb-1{
    box-shadow: none !important;
}

.dgm-about-content p{
    margin-bottom: 20px !important;
}

.app-cta-wrap {
    border-radius: 30px;
    background: linear-gradient(265deg, #f9b9a5  16.29%, #fff2ee 84.71%) !important;
}

.tp-contact-map-wrapper{
    height: 400px !important;
}

.tp-footer-15-social a{
    font-family: Georgia, "Times New Roman", serif !important;
    font-optical-sizing: auto !important;
    font-weight: 400 !important;
    font-style: normal !important;
    text-transform: none !important;
}

.tp-footer-15-copyright-text span{
    font-family: 'Inter', sans-serif !important;
}

.whatsapp {
    position: fixed;
    right: 40px;
    bottom: 110px;
    z-index: 10100;
}

.tp-contact-form-input input, .tp-contact-form-input textarea{
    background-color: #ffff !important;
}

.tp-contact-form-btn button{
    background-color: #bd4e25 !important;
}

input[type=text], input[type=email], input[type=tel], input[type=number], input[type=date], input[type=time], input[type=password], input[type=url], textarea, select {
    outline: none;
    height: 60px;
    width: 100%;
    line-height: 60px;
    font-size: 16px;
    padding-left: 26px;
    padding-right: 26px;
    border-radius: 8px;
    background: #ffff !important);
    color: var(--tp-common-black);
    border: 1px solid rgb(246, 246, 249);
}

.tp-section-subtitle.pre::before{
    background-color: #bd4e25 !important;
}

.ar-about-us-4-text-warp.title-black-color .ar-about-us-4-text-title{
    font-family: Georgia, "Times New Roman", serif !important;
    font-optical-sizing: auto !important;
    font-weight: 400 !important;
    font-style: normal !important;
    text-transform: none !important;
    color: #9d8067 !important;
}
