* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica', sans-serif;
}

body {
    line-height: 1.6;
    background-color: #fff;
    color: #0D0D12;
;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1000;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    padding-right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

header .logo {
    width: 120px;
}

header nav {
    display: flex;
    gap: 30px;
}

header nav a {
    text-decoration: none;
    font-weight: bold;
    color: #333;
    transition: 0.3s ease;
}

header nav a:hover {
    color: #555;
}

header nav hr {
    border: 2px solid #FFFFFF17
}

header .burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

header .burger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px;
}

header .contact-button {
    background: #333;
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
}

header .contact-button:hover {
    background: #555;
}

.hero {
    text-align: center;
    padding: 20px 20px 50px;
}

h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 80px;
}

.hero-color {
    margin-bottom: 20px;
    background: linear-gradient(90deg, #47B8D0 0%, #F8367C 100%);
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.20000000298023224px;
    text-align: left;

}

p.slogan {
    font-size: 20px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: -0.20000000298023224px;
    text-align: center;

}

.cta-button {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.20000000298023224px;
    text-align: left;
    margin-top: 20px;

}

.cta-button:hover {
    background: #555;
}

.content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    margin-bottom: 50px;
}

.section-title-black {
    color: #0D0D12;
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    letter-spacing: -0.20000000298023224px;
    text-align: left;

}

.section-title {
    margin-bottom: 20px;
    background: linear-gradient(90deg, #47B8D0 0%, #F8367C 100%);
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    letter-spacing: -0.20000000298023224px;
    text-align: left;

}

.section-title-small {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #47B8D0 0%, #F8367C 100%);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 400;
    display: inline-block;
}

.section-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.text-block {
    flex: 1;
    min-width: 250px;
}

.price-tag {
    background: #ff66ff;
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
    margin-top: 10px;
    border-radius: 20px;
    font-weight: bold;
}

.section-content-wrapper {
    display: flex;
    align-items: center;
    /* Vertically center the text-block */
    gap: 20px;
    /* Optional: space between text and image */
}

.text-block {
    flex: 1;

    /* Center text horizontally */
}

.image-block {
    flex: 1;
    min-width: 690px;

}

.section-content {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
    padding-top: 20px;
}

.details-sec {
    padding-top: 50px;
}

.image-block img {
    width: 100%;
    max-width: 100%;
}

.footer {
    background: #f8f8f8;
    color: #333;
    padding: 0 20px 20px 50px;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin: 40px auto 0;
    /* Remove align-items: flex-end to allow custom alignment */
}

.footer-mobile {
    background: #f8f8f8;
    color: #333;
    padding: 0 20px 20px 50px;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin: 40px auto 0;
    /* Remove align-items: flex-end to allow custom alignment */
}

.footer-mobile .footer-top.flex-container {
    display: flex;
    justify-content: space-between;
}

.footer .footer-branding {
    flex: 1;
    min-width: 20%;
    padding-left: 127px;
    display: flex; /* Ensure image and text are in a flex context */
    flex-direction: column; /* Stack image and text vertically */
    justify-content: flex-start; /* Align image to the top */
}

.footer .footer-branding img {
    margin-top: -30px;
    align-self: flex-start; /* Ensure image starts at the top */
}

.footer-mobile .footer-branding img {
    width: 170px;
    margin-bottom: 10px;
    margin-left:0;
}

.footer .footer-branding img{
    width: 190px;
    margin-bottom: 10px;
    /* Remove any vertical alignment that might interfere */
}

.footer .footer-branding p {
    margin-top: 10px;
    color: #262626B2;
    font-size: 14px;
}

.footer .footer-column {
    flex: 1;
    max-width: 20%;
}

.footer-mobile .footer-columns span {
    color: #44B8D1;
    display: block;
    margin-top: 30px;
}

.footer span {
    display: block;
    font-size: 16px;
    margin-bottom: 15px;
    color: #44B8D1;
}

.footer .footer-column .footer-menu-item,
.footer .footer-column a {
    display: block;
    color: #262626B2;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer .footer-column a:hover {
    color: #44B8D1;
}

.footer .footer-contact p {
    color: #262626B2;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer .footer-contact a,
.footer-mobile .footer-contact a {
    color: #44B8D1;
    text-decoration: none;
    font-size: 14px;
}

.footer .footer-contact a:hover,
.footer-mobile .footer-contact a:hover {
    text-decoration: underline;
    color: #262626B2;
}

.footer-mobile .footer-contact span {
    color: #44B8D1;
}

.footer .social-media {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    align-self: flex-end; /* Align icons to the bottom of the flex container */
}

.footer-mobile .social-media {
    display: flex;
    gap: 10px;
    align-self: flex-end;
    padding-bottom: 20px;
}

.footer .social-media a,
.footer-mobile .social-media a {
    background-color: #000;
    color: #fff !important;
    font-size: 16px;
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    padding-left: 0;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.footer .social-media a:hover,
.footer-mobile .social-media a:hover {
    background-color: #fff;
    color: #000 !important;
}



.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    position: relative;
    padding-left: 30px;
    /* margin-bottom: 10px; */
    margin: 0;
    margin-bottom: -5px;
    font-family: Helvetica;
    font-weight: 400;
    line-height: 41px;
    letter-spacing: -0.20000000298023224px;
    text-align: left;


}

.custom-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
}

.custom-list li:nth-child(1)::before {
    background-image: url('assets/Guarantee.webp');
}

.custom-list li:nth-child(2)::before {
    background-image: url('assets/Security-Shield.webp');
}

.custom-list li:nth-child(3)::before {
    background-image: url('assets/Air-Play.webp');
}

.custom-list li:nth-child(4)::before {
    background-image: url('assets/Air.webp');
}

.custom-list li:nth-child(5)::before {
    background-image: url('assets/Building.webp');
}

.custom-list li:nth-child(6)::before {
    background-image: url('assets/Toilet.webp');
}

.workshop-img {
    width: 100%;
    padding: 0;
    margin: 0;
}

.centered-image {
    display: block;
    margin: 0 auto;
    width: 50%;
}

.footer .footer-line {
    width: 100%;
    height: 2px;
    background: #00000014;
    margin-bottom: 50px;
    margin-top: 10px;
}

.footer-mobile {
    display: none;
}

.bottom-footer {
    font-size: 12px;
    width: 100%;
    text-align: center;
    color: #878787;
}

.bottom-footer a {
    color: #878787;
}

.is-mobile {
    display: none;
}



@media (max-width: 768px) {
    header {
        /* position: relative; */

    }

    nav {
        display: none;
        flex-direction: column;
        background: #000000;
        position: fixed;
        top: 80px;
        right: 0;
        width: 200px;
        padding: 20px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        gap: 15px;
    }

    nav a {
        color: #f5f5f5 !important;
        text-align: left;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        letter-spacing: -0.14000000059604645px;

    }

    h1 {
        font-size: 32px;
        font-weight: 700;
        line-height: 40px;
        letter-spacing: -0.20000000298023224px;
        text-align: center;

    }

    p.slogan {
        font-size: 15px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: -0.20000000298023224px;
        text-align: center;

    }

    .section-title,
    .section-title-black {
        font-size: 32px;
        font-weight: 400;
        line-height: 40px;
        letter-spacing: -0.20000000298023224px;
        text-align: left;

    }

    .burger {
        display: flex;
    }

    .contact-button {
        display: none;
    }

    .burger-menu-open {
        display: flex !important;
    }

    .footer {
        display: none;
    }

    .footer-mobile {
        display: block;
    }

    .social-media a {
        padding-left: 0px;
    }

    .section-content-wrapper {
        flex-direction: column-reverse;
    }

    .section-content-wrapper .text-block {
        order: 1;
    }

    .section-content-wrapper .image-block {
        order: 2;
    }

    .image-block {
        flex: 1;
        min-width: 100%;
    }

    .is-desktop {
        display: none;
    }

    .is-mobile {
        display: block;
    }

    .workshop-mobile img {
        width: 100%;
        display: block;
    }

    .header-img-mobile {
        width: 75%;
        display: block;
        margin: 0 auto;
    }
}


/* Self Tape Reels Section (Mobile-first) */
.self-tape-reels {
    padding: 7rem 0 0;
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}

.self-tape-reels .content-wrapper {
    position: relative;
    border-radius: 25px;
    background: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 400px;
    overflow: visible;
    width: 96%;
}

.self-tape-reels .content-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(257.12deg, #54B6CF -7.78%, #F54F8C 101.44%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.self-tape-reels .header-block {
    margin-bottom: 20px;
    width: 100%;
}

.self-tape-reels .image-block {
    position: relative;
    width: 80%; /* Maintain the original width proportion */
    height: 300px; /* Set the original height of the image */
}

.self-tape-reels .image-block img {
    position: absolute;
    top: -1.5rem; /* Push the image upwards (adjust as needed) */
    left: 3rem;
    width: 100%; /* Maintain the original width */
    height: auto; /* Maintain aspect ratio */
    z-index: 1; /* Ensure it appears above other content */
}

.self-tape-reels .text-block {
    z-index: 2; /* Ensure text stays above the image */
    position: relative;
    padding-top: 20px;
    margin-top: 4rem; /* Offset to account for the image space, adjust as needed */
    font-family: Helvetica;
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    letter-spacing: -0.2px;
}

.self-tape-reels .text-block p {
    display: flex; /* Use flexbox to control icon and text alignment */
    align-items: center; /* Vertically center the icon with the text */
    margin-bottom:2rem;
    width: 80%;
}

.self-tape-reels .custom-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    flex-shrink: 0; /* Prevent the icon from shrinking */
}

.self-tape-reels .text-block p span {
    display: block; /* Ensure text wraps as a block */
    text-align: left; /* Align text to the left */
}

.self-tape-reels h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 15px;
    text-align: left;
}

.reels-circles{
    position: absolute;
    right: -10rem;
    bottom: 3rem;
}

.self-tape-reels .self-tape {
    background: linear-gradient(90deg, #47B8D0 0%, #F8367C 100%);
    -webkit-background-clip: text;
    color: transparent;
}

.self-tape-reels .reels {
    background: linear-gradient(90deg, #47B8D0 0%, #F8367C 100%);
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.self-tape-reels .reel-border {
    position: relative;
    display: inline-flex;
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
    padding: 8px 18px;
}

.self-tape-reels .reel-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(257.12deg, #54B6CF -7.78%, #F54F8C 101.44%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.self-tape-reels .cta-button {
    margin-top: 20px;
    display: inline-block;
    padding: 12px 25px;
    font-size: 14px;
}

/* Desktop (Web) Styles */
@media (min-width: 768px) {
    .self-tape-reels {
        padding: 6rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .self-tape-reels .header-block {
        position: relative;
        left: 3rem;
    }

    .self-tape-reels .content-wrapper {
        width: 100%;
        height: 35rem;
        align-items: flex-end;
    }

    .self-tape-reels .image-block {
        position: absolute;
        width: 25rem;
        min-width: auto;
    }

    .self-tape-reels .image-block .self-tape-reels-image {
        width: 100%;
        padding-top: 0;
        margin-left: 0;
        position: relative;
        top: 0;
        left: 0;
    }

    .self-tape-reels .content-wrapper .header {
        font-size: 48px;
        line-height: 64px;
    }

    .self-tape-reels h2 {
        font-size: 3rem;
    }

    .self-tape-reels p {
        font-size: 1em;
    }

    .self-tape-reels .text-block{
        position: absolute;
        left: 6rem;
        max-width: 22rem;
        top: 10rem;
    }

    .self-tape-reels .text-block .cta-button{
        margin-top: 6rem;
    }

    .reels-circles{
        bottom: 7rem;
        right: 22rem;
    }

    .self-tape-reels .image-block .self-tape-reels-text {
        width: auto;
    }

    .self-tape-reels .content-wrapper img {
        margin-left: 0;
        margin-top: 0;
    }
}

/* Book Fotográfico Section (Mobile-first) */
.book-fotografico {
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}

.book-fotografico .content-wrapper {
    position: relative;
    border-radius: 25px;
    background: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 580px;
    overflow: visible;
    margin-bottom: 5rem;
}

.book-fotografico .content-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(307.45deg, #F54F8C 15.75%, #65388C 101.31%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2; /* Increase z-index to be above the image */
}

.book-fotografico .header-block {
    margin-bottom: 20px;
    width: 100%;
}

.book-fotografico .image-block {
    position: relative;
    width: 100%; /* Maintain the original width proportion */
    height: 600px; /* Set the original height of the image */
}

.book-fotografico .image-block img {
    position: absolute;
    top: -1.5rem; /* Push the image upwards (adjust as needed) */
    left: 0;
    width: 100%; /* Maintain the original width */
    height: auto; /* Maintain aspect ratio */
    z-index: 1; /* Ensure it appears below the border */
}

.book-fotografico .text-block {
    z-index: 3; /* Ensure text stays above the image and border */
    position: relative;
    margin-top: 2rem; /* Offset to account for the image space, adjust as needed */
    font-family: Helvetica;
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    letter-spacing: -0.2px;
}

.book-fotografico .text-block p {
    display: flex; /* Use flexbox to control icon and text alignment */
    align-items: center; /* Vertically center the icon with the text */
    margin-bottom: 2rem;
}

.book-fotografico .description-block {
    margin-top: 2rem;
}

.book-fotografico .description-block .header {
    font-family: Helvetica;
    font-weight: 700;
    font-size: 16px;
    line-height: 56px;
    letter-spacing: -0.2px;
    text-align: left;
}

.book-fotografico .description-block .header span {
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
    padding: 4px 9px;
    border: 1px solid #000000;
}

.book-fotografico .description-block p {
    width: 78%;
}

.book-fotografico .custom-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    flex-shrink: 0; /* Prevent the icon from shrinking */
}

.book-fotografico .text-block p span {
    display: block; /* Ensure text wraps as a block */
    text-align: left; /* Align text to the left */
}

.book-fotografico h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 15px;
    text-align: left;
}

.book-fotografico .text {
    background: linear-gradient(90deg, #47B8D0 0%, #65388C 100%);
    -webkit-background-clip: text;
    color: transparent;
}

.book-fotografico .reel-border {
    position: relative;
    display: inline-flex;
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
    padding: 8px 18px;
}

.book-fotografico .reel-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(257.12deg, #54B6CF -7.78%, #65388C 101.44%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.book-fotografico .cta-button {
    margin-top: 20px;
    display: inline-block;
    padding: 12px 25px;
    font-size: 14px;
}

.fotografico-circles {
    position: absolute;
    right: -1.3rem;
    bottom: 7rem;
    z-index: 0; /* Place behind text and image */
}

/* Desktop Adjustments */
@media (min-width: 768px) {
    .book-fotografico {
        padding: 60px 40px;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .book-fotografico .content-wrapper {
        flex-direction: row;
        min-height: 500px;
    }

    .book-fotografico .header-block {
        margin-bottom: 0;
    }

    .book-fotografico .image-block {
        width: 40%;
        height: 400px;
    }

    .book-fotografico .image-block img {
        top: -100px;
    }

    .book-fotografico .text-block {
        flex: 1;
        padding-left: 20px;
        padding-top: 0;
        margin-top: 0;
    }

    .book-fotografico h2 {
        font-size: 48px;
        line-height: 56px;
    }

    .book-fotografico .text-block p {
        font-size: 16px;
    }

    .book-fotografico .custom-icon {
        width: 32px;
        height: 32px;
    }

    .book-fotografico .reel-border {
        padding: 6px 12px;
    }

    .fotografico-circles {
        right: -2rem;
        bottom: 6rem;
    }
}

/* Oferta Section (Mobile-first) */
.oferta {
    padding: 4rem 0;
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}

.oferta .content-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    border-radius: 16px;
    background: linear-gradient(250.13deg, #BF45FB 28.77%, #FC703E 79.3%);
    overflow: hidden;
    box-shadow:
            0 8px 16px rgba(0, 0, 0, 0.14),
            inset 0 8px 16px rgba(0, 0, 0, 0.22);
    padding: 1rem 0;
}

.oferta .content-wrapper .offer-image {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.oferta .header-block {
    margin: 16px 24px 20px;
    width: calc(100% - 48px);
}

.oferta .offer-badge {
    width: 126px;
    height: 53px;
    border: 2px solid #000;
    border-radius: 25px;
    display: flex; /* Use Flexbox for centering */
    align-items: center; /* Vertically center the content */
    justify-content: center; /* Horizontally center the content */
}

.oferta .offer-badge span {
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 0; /* Remove margin to avoid offset */
    color: #000;
}

.oferta .text-block {
    position: relative;
    margin: 0 24px;
    color: #000;
}

.oferta .text-block p {
    font-family: Helvetica;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    padding-bottom: 1rem;
}

/* Desktop Adjustments */
@media (min-width: 768px) {
    .oferta {
        padding: 60px 40px;
        text-align: left;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .oferta .content-wrapper {
        flex-direction: row;
        max-width: 70%;
        height: auto;
        min-height: 250px;
        padding: 30px;
    }

    .oferta .header-block {
        margin: 0 0 0 24px;
        width: auto;
    }

    .oferta .offer-badge {
        top: 20px;
        left: 24px;
        position: absolute; /* Ensure it stays positioned */
    }

    .oferta .text-block p {
        font-size: 18px;
        text-align: left;
    }

    .oferta .cta-button {
        font-size: 16px;
    }
}


/* Recruitment Page */


/* Recruitment Section */
.recruitment-section {
    padding-top: 8rem;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.recruitment-section .content-wrapper {
    z-index: 1;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 25px;
    position: relative;
    margin: 0 auto;
}

.recruitment-section .header-block {
    font-weight: 700;
    letter-spacing: -0.2px;
    font-size: 2rem;
    line-height: 60px;
    margin-bottom: 15px;
    text-align: left;
}

.recruitment-section .header-block .text{
    background: linear-gradient(90deg, #47B8D0 0%, #F8367C 100%);
    -webkit-background-clip: text;
    color: transparent;

}


.recruitment-section .image-block .recruitment-image {
    height: auto;
    margin-left: 0;
}

.recruitment-section .text-block {
    padding: 1rem;
    text-align: center;
    color: #0D0D12;
}

.recruitment-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.recruitment-text {
    margin-bottom: 15px;
}

.recruitment-email {
    font-size: 14px;
    color: #333;
    margin-top: 10px;
    text-align: center;
}

.oferta-recruitment{
    padding: 0;
}

.oferta .recruitment-badge{
    width: 12rem;
    height: 53px;
    border: 2px solid #000;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.oferta .recruitment-badge span {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 40px;
    margin-bottom: 0;
    color: #000;
}
.recruitment-section .cta-button {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
    font-size: 16px;
    margin-top: 20px;
}

.recruitment-section .cta-button:hover {
    background: #555;
}

/* Styles for the todos section */
.section.todos {
    padding: 20px;
}

.section.todos .content-wrapper {
    margin: 0 auto;
}

.section.todos .text-block {
    color: #0D0D12;
    text-align: left;
}

.section.todos ul {
    list-style-position: inside; /* Moves bullets inside the content area */
    padding-left: 0; /* Removes default padding */
    margin-left: 0; /* Removes default margin */
}

.section.todos ul li {
    padding-left: 1.5em; /* Adds padding to align text with p tags */
    text-indent: -1.5em; /* Adjusts the bullet position */
}

.section.todos ul li::before {
    padding-right: 0.5em; /* Space between bullet and text */
}
.section .todos .content-wrapper {
    position: relative;
    border-radius: 25px;
    background: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 400px;
    overflow: visible;
    width: 96%;
}


.candidate .text-block {
    padding: 1rem;
    text-align: center;
    color: #0D0D12;
}

.candidate .text-block p{
    text-align: center;
    margin-bottom: 2rem;
}

.candidate .text-block a{
    color: #000000;
    text-decoration: underline;
}

.candidate .text-block a:hover{

    text-decoration: none;
}



.recruitment-email a{
    font-size: 14px;
    color: #333;
    margin-top: 10px;
    text-align: center;
    text-decoration: none !important;
}

.recruitment-email a:hover {
    text-decoration: underline !important;
}

.oferta-recruitment{
    padding: 0;
}

.candidate .cta-button {
    display: inline-block;
    background: #333;
    color: #fff !important;
    padding: 15px 30px;
    text-decoration: none !important;
    border-radius: 30px;
    transition: 0.3s ease;
    font-size: 16px;
    margin-top: 20px;
}

.candidate .cta-button:hover {
    background: #555;
}

/* Media query for desktop */
@media (min-width: 768px) {
    .recruitment-section {
        padding: 60px 40px;
        display: flex;
        justify-content: space-around;
        text-align: left;
    }

    .recruitment-section .content-wrapper {
        max-width: 50%;
    }

    .recruitment-title {
        font-size: 30px;
    }

    .recruitment-text {
        font-size: 16px;
        max-width: 400px;
    }


}