/* Get in Touch Section */
.get-touch {
    padding: var(--sfc-space-3xl) var(--sfc-space-sm) var(--sfc-space-xs);
    background-color: var(--sfc-color-bg-white);
    position: relative;
}

.get-touch__decoration {
    position: absolute;
    top: -40px;
    right: 0;
    width: 130px;
    height: 185px;
    z-index: 1;
}
.camps-template-default .get-touch__decoration {
    display: none;
}

.get-touch__container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header */
.get-touch__header {
    text-align: center;
    margin-bottom: 50px;
}

.get-touch__title {
    font-family: var(--sfc-font-primary);
    font-size: 62px;
    font-weight: 700;
    color: var(--sfc-color-primary);
    margin: 0;
    padding-bottom: var(--sfc-space-xs);
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.get-touch__title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 280px;
    height: 15px;
    background-image: url('../images/BRUSHES.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateX(-50%);
}

.get-touch__subtitle {
    font-family: var(--sfc-font-primary);
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: var(--sfc-space-xl);
    margin-top: var(--sfc-space-md);
}

/* Wrapper */
.get-touch__wrapper {
    display: flex;
    align-items: flex-start;
    gap: 90px;
}

/* Card - Solo imagen */
.get-touch__card {
    position: relative;
    flex-shrink: 0;
    max-width: 420px;
    width: 100%;
    height: 420px;
    border: 2px solid var(--sfc-color-primary);
    border-radius: var(--sfc-radius-md);
    box-shadow: 12px 12px 0px 0px var(--sfc-color-primary);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.get-touch__image-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #C9A0DC;
    background-image: url('../images/vector-violet.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 18px;
}

.get-touch__image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom;
    border-radius: 18px;
}

/* Content Section - Fuera de la card */
.get-touch__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--sfc-space-sm);
}

.get-touch__name {
    font-family: var(--sfc-font-primary);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--sfc-color-primary);
    text-transform: capitalize;
    margin: 0;
}

.get-touch__pronouns {
    font-family: var(--sfc-font-secondary);
    font-size: 14px;
    font-weight: 600;
    color: var(--sfc-color-secondary);
    margin: 0;
    text-transform: uppercase;
    margin-bottom: var(--sfc-space-md);
    margin-top: var(--sfc-space-sm);
    display: block;
}

.get-touch__bio {
    font-family: var(--sfc-font-primary);
    font-size: 18px;
    line-height: 1.4;
    margin: 0;
    margin-bottom: 50px;
}

/* Buttons */
.get-touch__buttons {
    display: flex;
    gap: var(--sfc-space-xs);
    justify-content: start;
}

.get-touch__button {
    font-family: var(--sfc-font-primary);
    padding: 8.5px 28px;
    border-radius: var(--sfc-radius-lg);
    font-size: 18px;
    text-decoration: none;
    transition: all var(--sfc-transition-base);
    line-height: 1;
    cursor: pointer;
    font-weight: 700;
}

.get-touch__button--outline {
    background-color: transparent;
    border: 2px solid var(--sfc-color-secondary);
    color: var(--sfc-color-secondary);
}

.get-touch__button--outline:hover {
    transform: translateY(-2px); 
}

.get-touch__button--filled {
    background-color: var(--sfc-color-secondary);
    border: 2px solid var(--sfc-color-secondary);
    color: var(--sfc-color-text-light);
}

.get-touch__button--filled:hover {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .get-touch {
        padding: var(--sfc-space-xl) var(--sfc-space-sm) 0;
    }

    .get-touch__decoration {
        height: 100px;
        width: 100px;
    }

    .get-touch__title {
        font-size: 36px;
    }

    .get-touch__title::after {
        width: 200px;
    }

    .get-touch__subtitle {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .get-touch__wrapper {
        flex-direction: column;
        align-items: center;
        gap: var(--sfc-space-md);
    }

    .get-touch__content {
        text-align: center;
        padding-top: 0;
    }

    .get-touch__name {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .get-touch__title {
        font-size: 28px;
    }

    .get-touch__title::after {
        width: 160px;
        height: 12px;
    }

    .get-touch__name {
        font-size: 22px;
    }

    .get-touch__bio {
        font-size: 18px;
    }

    .get-touch__button {
        padding: var(--sfc-space-xs) 22px;
        font-size: 14px;
    }
}
