/* Custom CSS Styles */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
}

.executive-shadow {
    box-shadow: 0px 4px 20px rgba(11, 31, 58, 0.08);
}

.form-input-focus:focus {
    border-bottom-color: #0b1f3a;
    box-shadow: inset 0 -2px 0 #b7004d;
    outline: none;
}
 
.premium-card-hover {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 6, 21, 0.12);
}

.section-padding {
    padding: 80px 0;
}
@media (max-width: 1366px) {
     .ajuste-bg {
        left: -70% !important;
     }
}
@media (max-width: 1023px) {
    .section-padding {
        padding: 48px 0;
    }

    .logo-titulo {
        font-size: 1.2rem !important;
    }

    .mobile-w-100 {
        width: 100% !important;
        text-align: center !important;
    }

    #hero {
        padding-bottom: 30px;
    }

    #hero h1 {
        font-size: 1.5rem !important;
    }

    .ajuste-bg {
        height: 600px;
        left: -70% !important;
        top: 35% !important;
    }

    .text-h1 {
        font-size: 30px !important;
    }

    .text-display-xl {
        font-size: 28px !important;
    }

    .body-lg {
        font-size: 38px !important;
    }

    .h2 {
        font-size: 18px !important;
    }

    .body-md {
        font-size: 14px !important;
    }

    .label-caps {
        font-size: 12px !important;
    }

    .h1 {
        font-size: 35px !important;
    }

    .h3 {
        font-size: 20px !important;
    }

    .h4 {
        font-size: 18px !important;
    }

    /* Método Calli Mobile Styles */
    .section-padding.bg-white.overflow-hidden {
        text-align: center;
    }

    .section-padding.bg-white.overflow-hidden .flex.flex-col.md\\:flex-row {
        flex-direction: column !important;
        align-items: center !important;
    }

    /* Linha rosa de revelação no scroll */
    .section-padding.bg-white.overflow-hidden .flex-1 {
        position: relative;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease-out;
    }

    .section-padding.bg-white.overflow-hidden .flex-1.reveal {
        opacity: 1;
        transform: translateY(0);
    }

    /* Linha rosa animada */
    .section-padding.bg-white.overflow-hidden .flex-1::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 24px;
        transform: translateY(-50%);
        width: 2px;
        height: 0;
        background: #b7004d;
        transition: height 0.8s ease-out;
    }

    .section-padding.bg-white.overflow-hidden .flex-1.reveal::after {
        height: 100%;
    }

    .group {
        text-align: center;
        width: 100%;
        display: block;
    }

    .border-t {
        border: 0 !important;
    }
    
    /* Centralizar itens SERVICES no mobile */
    #servicos .grid.md\\:grid-cols-5 {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    #servicos .bg-white.p-md.executive-shadow.premium-card-hover {
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 20px !important;
    }
    
    #servicos .material-symbols-outlined.text-display-xl.text-primary {
        font-size: 24px !important;
        margin-bottom: 10px !important;
    }
    
    #servicos .font-h3.text-h3.mb-sm.text-primary {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }
    
    #servicos .font-label-caps.text-secondary {
        font-size: 12px !important;
    }
    
    #servicos .text-sm.text-on-surface-variant {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }
}

#calli {
    background: url(../images/bg-cinza.png) no-repeat center center #000;
    background-size: cover;
    background-attachment: fixed;
}

/* Validação visual do formulário */
input:invalid {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

input:valid {
    border-color: #22c55e !important;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

textarea:invalid {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

textarea:valid {
    border-color: #22c55e !important;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

/* Dropdown Custom Styles */
.custom-dropdown {
    position: relative;
}

.dropdown-trigger {
    cursor: pointer;
    user-select: none;
}

.dropdown-options {
    transform-origin: top center;
}

.dropdown-options.visible {
    opacity: 1;
    visibility: visible;
}

.option {
    position: relative;
    overflow: hidden;
}

.option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(183, 0, 77, 0.1));
    transition: left 0.3s ease;
}

.option:hover::before {
    left: 100%;
}

.dwone-faq-item {
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.dwone-faq-item[open] {
    border-color: rgba(183, 0, 77, 0.35);
}

.dwone-faq-question {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    list-style: none;
    padding: 24px;
}

.dwone-faq-question::-webkit-details-marker {
    display: none;
}

.dwone-faq-question::marker {
    content: '';
}

.dwone-faq-icon {
    flex: 0 0 auto;
    transition: transform 0.3s ease;
}

.dwone-faq-item[open] .dwone-faq-icon {
    transform: rotate(45deg);
}

.dwone-faq-answer {
    padding: 0 24px 24px;
}

.dwone-faq-answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1023px) {
    .dwone-faq-question {
        padding: 20px;
    }

    .dwone-faq-answer {
        padding: 0 20px 20px;
    }
}
