/* Estilos para la sección de contacto */
.contact-section {
    padding: 175px 0;
    background-color: #141519;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% center;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-header {
    text-align: center;
    margin-bottom: 90px;
}

.contact-title {
    margin-bottom: 24px;
}

.contact-title .highlight {
    color: #30E0A1;
}

.contact-subtitle {
    font-family: 'Abel', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.5;
    color: #E5E6ED;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    max-width: 500px;
}

.contact-info-title {
    margin-bottom: 30px;
}

.contact-info-text {
    font-family: 'Abel', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #E5E6ED;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #34384C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-text {
    font-family: 'Abel', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
}

.contact-form-column {
    flex: 1;
    max-width: 600px;
}

button.form-button {
    text-align: center;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: none;
    border-radius: 100px;
    padding: 10px 12px;
    width: 100%;
    min-width: 110px;
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 20px;
    cursor: pointer;
    background:
        /* Padding box = Inner background */
        linear-gradient(180deg, #18191D 0%, #2A2B30 100%) padding-box,
        /* Border box = Gradient Border */
        linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.05) 45%, rgba(255, 255, 255, 0.05) 55%, rgba(255, 255, 255, 0.5) 100%) border-box;
    border: 1.5px solid transparent;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.9), 0 1px 2px rgba(255, 255, 255, 0.2), 0 -1px 2px rgba(255, 255, 255, 0.2), 0 0 15px -2px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.contact-form {
    background: rgba(47, 50, 65, 0.5);
    border: 1px solid #34384C;
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-group {
    width: 100%;
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-family: 'Abel', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #E5E6ED;
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    font-family: 'Abel', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
    border-color: #30E0A1;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(48, 224, 161, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-button {
    width: 100%;
    background: linear-gradient(135deg, #30E0A1 0%, #28B485 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-family: 'Actor', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.form-button:hover {
    background: linear-gradient(135deg, #28B485 0%, #30E0A1 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(48, 224, 161, 0.4);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-family: 'Abel', sans-serif;
    font-weight: 400;
    font-size: 16px;
    display: none;
}

.form-message.success {
    background: rgba(48, 224, 161, 0.2);
    color: #30E0A1;
    border: 1px solid rgba(48, 224, 161, 0.3);
}

.form-message.error {
    background: rgba(255, 71, 87, 0.2);
    color: #FF4757;
    border: 1px solid rgba(255, 71, 87, 0.3);
}

/* Estilos para el modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #1c1d23;
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: #34384C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #30E0A1;
}

.modal-title {
    font-family: 'Aileron', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.modal-text {
    font-family: 'Abel', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #E5E6ED;
}

/* Estilos para la información de la empresa en el footer */
.footer-company-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.company-info-text {
    font-family: 'Abel', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.know-more-btn {
    color: #30E0A1;
    cursor: pointer;
    text-decoration: underline;
}

.know-more-btn:hover {
    color: #28B485;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info,
    .contact-form-column {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-container {
        padding: 0 20px;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .modal-content {
        padding: 30px 20px;
    }
}

/*! CSS Used from: https://invertox-web.vercel.app/_next/static/css/cdfeaa089c1dfeeb.css */
.section-faq *,
:after,
:before {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-scroll-snap-strictness: proximity;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgba(59, 130, 246, .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
}

.section-faq *,
:after,
:before {
    box-sizing: border-box;
    border: 0 solid #e5e7eb;
}

.section-faq :after,
:before {
    --tw-content: "";
}

.section-faq h2 {
    font-size: inherit;
    font-weight: inherit;
}

.section-faq button {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

.section-faq button {
    text-transform: none;
}

.section-faq button {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none;
}

.section-faq h2,
p {
    margin: 0;
}

.section-faq button {
    cursor: pointer;
}

.section-faq :disabled {
    cursor: default;
}

.section-faq svg {
    display: block;
    vertical-align: middle;
}

.section-faq * {
    --tw-border-opacity: 1;
    border-color: rgb(229 229 229/var(--tw-border-opacity, 1));
}

.section-faq h2 {
    --tw-text-opacity: 1;
    color: rgb(0 0 0/var(--tw-text-opacity, 1));
}

.section-faq * {
    border-color: hsl(var(--border));
}

.section-faq .btn-primary {
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(95 228 161/var(--tw-bg-opacity, 1));
    padding: 1rem 2rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgb(0 0 0/var(--tw-text-opacity, 1));
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .3s;
    animation-duration: .3s;
}

.section-faq .btn-primary,
.section-faq .btn-primary:hover {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.section-faq .btn-primary:hover {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    --tw-bg-opacity: 1;
    background-color: rgb(61 214 141/var(--tw-bg-opacity, 1));
    --tw-shadow: 0 15px 50px rgba(95, 228, 161, .25);
    --tw-shadow-colored: 0 15px 50px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.section-faq .btn-primary:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(170 245 208/var(--tw-ring-opacity, 1));
}

.section-faq .section-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width:768px) {
    .section-faq .section-container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width:1024px) {
    .section-faq .section-container {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width:768px) {
    .section-padding {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

@media (min-width:1024px) {
    .section-padding {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.section-faq .absolute {
    position: absolute;
}

.section-faq .relative {
    position: relative;
}

.section-faq .inset-0 {
    inset: 0;
}

.section-faq .bottom-0 {
    bottom: 0;
}

.section-faq .left-1\/4 {
    left: 25%;
}

.section-faq .right-1\/4 {
    right: 25%;
}

.section-faq .top-0 {
    top: 0;
}

.section-faq .z-10 {
    z-index: 10;
}

.section-faq .flex {
    display: flex;
}

.section-faq .inline-flex {
    display: inline-flex;
}

.section-faq .grid {
    display: grid;
}

.section-faq .hidden {
    display: none;
}

.section-faq .h-8 {
    height: 2rem;
}

.section-faq .h-96 {
    height: 24rem;
}

.section-faq .h-full {
    height: 100%;
}

.section-faq .w-8 {
    width: 2rem;
}

.section-faq .w-96 {
    width: 24rem;
}

.section-faq .w-full {
    width: 100%;
}

.section-faq .max-w-xl {
    max-width: 36rem;
}

.section-faq .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.section-faq .items-start {
    align-items: flex-start;
}

.section-faq .items-center {
    align-items: center;
}

.section-faq .justify-center {
    justify-content: center;
}

.section-faq .justify-between {
    justify-content: space-between;
}

.section-faq .gap-12 {
    gap: 3rem;
}

.section-faq .gap-2 {
    gap: .5rem;
}

.section-faq .gap-4 {
    gap: 1rem;
}

.section-faq .space-y-4>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.section-faq .space-y-6>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.section-faq .overflow-hidden {
    overflow: hidden;
}

.section-faq .rounded-2xl {
    border-radius: 1rem;
}

.section-faq .rounded-full {
    border-radius: 9999px;
}

.section-faq .border {
    border-width: 1px;
}

.section-faq .border-primary-400 {
    --tw-border-opacity: 1;
    border-color: rgb(95 228 161/var(--tw-border-opacity, 1));
}

.section-faq .border-primary-500\/50 {
    border-color: rgba(95, 228, 161, .5);
}

.section-faq .border-white\/10 {
    border-color: hsla(0, 0%, 100%, .1);
}

.section-faq .border-white\/20 {
    border-color: hsla(0, 0%, 100%, .2);
}

.section-faq .bg-primary-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(95 228 161/var(--tw-bg-opacity, 1));
}

.section-faq .bg-white\/10 {
    background-color: hsla(0, 0%, 100%, .1);
}

.section-faq .bg-white\/5 {
    background-color: hsla(0, 0%, 100%, .05);
}

.section-faq .bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.section-faq .from-dark-900 {
    --tw-gradient-from: #000 var(--tw-gradient-from-position);
    --tw-gradient-to: transparent var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.section-faq .via-dark-800 {
    --tw-gradient-to: rgba(28, 28, 30, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), #1c1c1e var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.section-faq .to-dark-900 {
    --tw-gradient-to: #000 var(--tw-gradient-to-position);
}

.section-faq .px-3 {
    padding-left: .75rem;
    padding-right: .75rem;
}

.section-faq .px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.section-faq .py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem;
}

.section-faq .py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.section-faq .pb-5 {
    padding-bottom: 1.25rem;
}

.section-faq .pt-0 {
    padding-top: 0;
}

.section-faq .text-left {
    text-align: left;
}

.section-faq .text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
}

.section-faq .font-semibold {
    font-weight: 600;
}

.section-faq .leading-relaxed {
    line-height: 1.625;
}

.section-faq .leading-tight {
    line-height: 1.25;
}

.section-faq .text-primary-300 {
    --tw-text-opacity: 1;
    color: rgb(122 237 184/var(--tw-text-opacity, 1));
}

.section-faq .text-primary-400 {
    --tw-text-opacity: 1;
    color: rgb(95 228 161/var(--tw-text-opacity, 1));
}

.section-faq .text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity, 1));
}

.section-faq .text-white\/70 {
    color: hsla(0, 0%, 100%, .7);
}

.section-faq .text-white\/80 {
    color: hsla(0, 0%, 100%, .8);
}

.section-faq .opacity-10 {
    opacity: .1;
}

/* Standardized Typography */
.heading-lg {
    font-family: 'Aileron', sans-serif !important;
    font-size: 36px !important;
    font-weight: 600 !important;
    line-height: 1.1;
    text-transform: uppercase !important;
}


@media (min-width:768px) {
    .heading-lg {
        font-size: 36px !important;
        line-height: 1.1;
    }
}

@media (min-width:1024px) {
    .heading-lg {
        font-size: 36px !important;
        line-height: 1.1;
    }
}

.heading-md {
    font-family: 'Aileron', sans-serif !important;
    font-size: 36px !important;
    font-weight: 600 !important;
    line-height: 1.25;
    text-transform: uppercase !important;
}

@media (min-width:768px) {
    .heading-md {
        font-size: 36px !important;
        line-height: 1.1;
    }
}

@media (min-width:1024px) {
    .heading-md {
        font-size: 36px !important;
        line-height: 1;
    }
}

.gradient-text {
    --tw-gradient-from: #5fe4a1 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(95, 228, 161, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: #2ab876 var(--tw-gradient-to-position);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}