:root {
    --primary-blue: #0654b6;
    --primary-white: #ffffff;
    --primary-orange: #ef5241;
    --light-white-bg: #F0ECF9;
    --light-orange-bg: #F0ECF9;
    --text-dark: #333;
    --newsletter-button-bg: #E84C3D;
    --social-icon-bg: rgba(255, 255, 255, 0.1);
    --social-icon-hover-bg: rgba(255, 255, 255, 0.2);
    --primary: #0654b6;
    --primary-dark: #043a80;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #fdfdff;
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.text-primary {
    color: var(--primary-blue) !important;
}

.navbar-brand img {
    height: 40px;
    margin-right: 8px;
}

.navbar-brand .brand-text {
    font-weight: bold;
    color: var(--primary-blue);
    font-size: 1rem;
}

.navbar-brand .brand-subtext {
    font-size: 0.8rem;
    color: #6c757d;
    display: block;
    line-height: 1;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.navbar .btn-contact {
    background-color: var(--primary-blue);
    color: var(--primary-white);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.navbar .btn-contact:hover {
    background-color: var(--primary-orange);
}

.hero-section {
    background-color: var(--light-white-bg);
    background-image:
        linear-gradient(rgba(83, 83, 83, 0.5), rgba(100, 100, 100, 0.5)),
        url('../img/banner.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 4rem;
    padding-bottom: 4rem;
    color: #fff;
}

.hero-section .lead-text {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-white);
}

.hero-section .main-headline {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-white);
}

.hero-section .highlight-headline {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-blue);
    display: block;
    line-height: 1.1;

    text-shadow:
        -1px -1px 0 var(--light-white-bg),
        1px -1px 0 var(--light-white-bg),
        -1px  1px 0 var(--light-white-bg),
        1px  1px 0 var(--light-white-bg),
        -2px  0   0 var(--light-white-bg),
        2px  0   0 var(--light-white-bg),
        0   -2px 0 var(--light-white-bg),
        0    2px 0 var(--light-white-bg);
}

.hero-section .btn-cta {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
}

.hero-section .devices-img {
    max-width: 100%;
    height: auto;
}

.form-container {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.1);
}

.form-container h3 {
    color: var(--primary-blue);
    font-weight: bold;
}

.service-section, .trust-section {
    background-color: var(--primary-blue);
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.reasons-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #fff;
}

.reasons-section .section-title {
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark-grey);
}

.reasons-section .section-title .highlight {
    color: var(--primary-blue);
}

.reasons-section .description-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.reason-card {
    background-color: var(--card-bg-light-purple);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.reason-card .icon-container svg {
    width: 60px;
    height: 60px;
    fill: var(--primary-blue);
    margin-bottom: 1rem;
}

.reason-card .card-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark-grey);
    margin-bottom: 0;
}

.services-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #f8f9fa;
}

.services-section .section-title {
    font-weight: 700;
}

.services-section .lead {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #6c757d;
}

.service-item {
    margin-bottom: 2rem;
    cursor: pointer;
}

.service-image-background {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    cursor: pointer;
}

.service-item:hover .service-image-background {
    transform: translateY(-5px);
}

.service-image-background img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 30px;
}

.service-name {
    font-weight: 500;
    color: #343a40;
    margin-top: 1rem;
}

.modal-service .modal-content {
    border-radius: 1.5rem;
    border: none;
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.15);
    overflow: hidden;
}

.modal-service .modal-body {
    padding: 0;
}

.modal-service .modal-image-col {
    padding: 0;
}

.modal-service .modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-service .modal-text-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.modal-service .modal-title-custom {
    font-size: 2.25rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 1rem;
}

.modal-service .modal-paragraph {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.btn-custom-close-service {
    background-color: var(--primary-blue);
    color: var(--primary-white);
    font-weight: 600;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    border: 2px solid var(--primary-blue);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-custom-close-service:hover {
    background-color: #05489a;
    border-color: #05489a;
    color: var(--primary-white);
}

.about-us-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: var(--primary-white);
    overflow-x: hidden;
}

.about-us-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.5rem;
}

.about-us-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
}

.text-highlight-custom {
    color: var(--primary-blue);
    font-weight: 600;
}

.image-decoration-wrapper {
    position: relative;
    min-height: 350px;
}

.decorative-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    z-index: 1;
}

.decorative-blob svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0px 8px 15px rgba(0,0,0,0.1));
}

.team-image {
    position: relative;
    width: 100%;
    max-width: 450px;
    border-radius: 0.75rem;
    z-index: 2;
    display: block;
    margin: auto;
}

.floating-icon {
    position: absolute;
    background-color: white;
    border-radius: 0.5rem;
    padding: 0.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.floating-icon i {
    font-size: 1.25rem;
}

.icon-rocket { top: -10%; right: 10%; background-color: #dc3545; color: white;}
.icon-book { top: 20%; left: -5%; background-color: #6f42c1; color: white;}
.icon-handshake { bottom: -5%; left: 15%; background-color: #0d6efd; color: white;}
.icon-image { top: 10%; right: -8%; background-color: #198754; color:white;}
.icon-display { bottom: 5%; right: -10%; background-color: #20c997; color:white;}

.image-decoration-wrapper::before,
.image-decoration-wrapper::after {
    content: '';
    position: absolute;
    border: 2px solid #adb5bd;
    border-radius: 50%;
    z-index: 0;
}

.image-decoration-wrapper::before {
    width: 100px;
    height: 80px;
    border-color: transparent transparent #adb5bd #adb5bd;
    transform: rotate(-45deg);
    top: 5%;
    right: -15%;
}

.image-decoration-wrapper::after {
    width: 80px;
    height: 60px;
    border-color: #adb5bd #adb5bd transparent transparent;
    transform: rotate(45deg);
    bottom: 10%;
    left: -12%;
}

.features-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #fff;
}

.section-pre-title {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.section-main-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.3;
    margin-bottom: 3rem;
}

.feature-item {
    margin-bottom: 2rem;
}

.feature-icon-circle {
    width: 64px;
    height: 64px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.feature-item:hover .feature-icon-circle {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(6, 84, 182, 0.2);
}

.feature-icon-circle i {
    font-size: 2rem;
    color: var(--primary-white);
}

.feature-category-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #343a40;
    margin-bottom: 0.5rem;
}

.feature-category-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
}

.how-we-work-section {
    background-color: var(--primary-blue);
    padding-top: 4rem;
    padding-bottom: 2rem;
    color: var(--primary-white);
}

.how-we-work-section .section-heading {
    font-weight: 700;
    margin-bottom: 3rem;
}

.step-item {
    margin-bottom: 3rem;
}

.step-visual {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    color: #343a40;
    border: 3px solid;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.step-visual .icon-container {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.step-visual .icon-container i {
    font-size: 3.5rem;
}

.icon-bg-yellow { background-color: #ffc107; }
.icon-bg-yellow i { color: #343a40; }
.border-yellow { border-color: #ffc107 !important; }

.icon-bg-pink { background-color: #e83e8c; }
.icon-bg-pink i { color: var(--primary-white); }
.border-pink { border-color: #e83e8c !important; }

.icon-bg-teal { background-color: #20c997; }
.icon-bg-teal i { color: var(--primary-white); }
.border-teal { border-color: #20c997 !important; }

.step-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.9rem;
    opacity: 0.85;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

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

.bg-custom-blue {
    background-color: var(--primary-blue) !important;
}

.contact-image-wrapper {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.1);
    height: 100%;
}

.contact-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-icons-bar {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(30%);
    background-color: var(--primary-blue);
    padding: 0.75rem 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 10;
}

.social-icons-bar a {
    color: white;
    font-size: 1.2rem;
    transition: opacity 0.2s ease-in-out;
}

.social-icons-bar a:hover {
    opacity: 0.8;
}

.contact-form-area {
    padding-left: 2.5rem;
}

.form-control-bottom-border {
    border: none;
    border-bottom: 1px solid #ced4da;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    box-shadow: none !important;
}

.form-control-bottom-border:focus {
    border-color: var(--primary-blue);
}

.form-select-bottom-border {
    border: none;
    border-bottom: 1px solid #ced4da;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    box-shadow: none !important;
    background-position: right 0.25rem center;
}

.form-select-bottom-border:focus {
    border-color: var(--primary-blue);
}

.btn-custom-contact {
    background-color: #e7f0fa;
    color: var(--primary-blue);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-custom-contact:hover {
    background-color: var(--primary-blue);
    color: white;
}

.icon-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.icon-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.05);
}

.icon-circle-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9ecef;
}

.icon-circle-wrapper.bordered {
    border-color: var(--primary-blue);
    background-color: #fff;
}

.icon-circle-wrapper.bordered i {
    color: var(--primary-blue);
}

.icon-circle-wrapper i {
    font-size: 4.5rem;
    color: #495057;
}

.item-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.item-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
}

.site-footer {
    background-color: var(--primary-blue);
    color: var(--primary-white);
    padding-top: 4rem;
    padding-bottom: 1rem;
    font-size: 0.9rem;
}

.site-footer h5 {
    color: var(--primary-white);
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.site-footer p,
.site-footer ul li {
    margin-bottom: 0.6rem;
}

.site-footer a {
    color: var(--primary-white);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.site-footer a:hover {
    color: var(--primary-white);
    text-decoration: none;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--social-icon-bg);
    color: var(--primary-white);
    margin-right: 0.5rem;
    transition: background-color 0.2s ease-in-out;
}

.social-icons a:hover {
    background-color: var(--social-icon-hover-bg);
    color: var(--primary-white);
}

.newsletter-form .form-control {
    border-radius: 2rem 0 0 2rem;
    border: none;
    padding-left: 1.25rem;
}

.newsletter-form .form-control::placeholder {
    color: #aaa;
}

.newsletter-form .btn-submit-newsletter {
    background-color: var(--newsletter-button-bg);
    color: var(--primary-white);
    border: none;
    border-radius: 0 2rem 2rem 0;
    padding: 0.5rem 1.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom .list-inline-item:not(:last-child) {
    margin-right: 1rem;
}

.text-custom-blue {
    color: var(--primary-blue) !important;
}

.blog-image-container {
    overflow: hidden;
    border-radius: var(--bs-border-radius);
}

.blog-image {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.blog-image:hover {
    transform: scale(1.05);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
}

.blog-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.section-title .highlight {
    color: var(--primary-blue);
}

.post-card {
    transition: box-shadow 0.3s ease-in-out;
}

.post-card .card-img-top {
    transition: transform 0.35s ease-out, box-shadow 0.35s ease-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.075);
    max-height: 220px;
    object-fit: cover;
}

.post-card:hover .card-img-top {
    transform: scale(1.06);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.post-card:hover {
    box-shadow: var(--bs-box-shadow-lg) !important;
}

.post-card .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-card .card-body .read-more-link {
    margin-top: auto;
    align-self: flex-start;
}

.card-title {
    font-weight: 600;
}

.card-text {
    font-size: 0.9rem;
    color: #6c757d;
}


@media (max-width: 767.98px) {
    .hero-section .text-content {
        text-align: center;
    }
    .hero-section .devices-img {
        margin-top: 2rem;
    }
    .hero-section .main-headline {
        font-size: 1.8rem;
    }
    .hero-section .highlight-headline {
        font-size: 2.5rem;
    }
    .form-container {
        margin-top: 2rem;
    }
    .service-section .d-flex {
        display: grid !important;
        flex-wrap: wrap;
        justify-content: center;
    }
    .service-section .d-flex .fs-7 {
        padding: .3rem !important;
    }
    .reason-card {
        margin-bottom: 1.5rem;
    }
    .reasons-section .section-title {
        font-size: 2rem;
    }
    .section-heading {
        font-size: 2rem;
        text-align: center;
    }
    .blog-card-img img {
        height: 200px;
    }
    .about-us-title {
        font-size: 2.5rem;
        text-align: center;
    }
    .about-us-text {
        text-align: center;
        font-size: 1rem;
    }
    .image-decoration-wrapper {
        margin-top: 3rem;
        min-height: 300px;
    }
    .team-image {
        max-width: 80%;
    }

    .icon-book { top: 10%; left: -10%; }
    .icon-rocket { top: -5%; right: 0%; }
    .icon-handshake { bottom: -2%; left: 5%;}
    .icon-image { top: 5%; right: -12%;}
    .icon-display { bottom: 0%; right: -15%;}
    .image-decoration-wrapper::before,
    .image-decoration-wrapper::after { display: none; }

    .modal-service .modal-image {
        max-height: 300px;
    }
    .modal-service .modal-text-content {
        text-align: center;
    }
}

@media (max-width: 991.98px) {
    .reasons-section .text-content {
        margin-bottom: 3rem;
    }

    .contact-form-area {
        padding-left: 0;
        margin-top: 2rem;
    }

    .social-icons-bar {
        transform: translateY(-50%) translateX(0);
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
}



.hero-sectionn {
    min-height: 50vh;
    background: linear-gradient(135deg, #0654b6, #043a80);
    position: relative;
    overflow: hidden;
}
.hero-sectionn::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.1);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    filter: blur(100px);
}
.features-section {
    background: #f8f9fc;
}
.section-tag {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}
.feature-card {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(6,84,182,0.2);
}
.icon-box {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 15px;
    background: rgba(6,84,182,0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
}
.mv-section {
    background: linear-gradient(135deg, #0654b6, #021f4a);
    position: relative;
    overflow: hidden;
}
.mv-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.08);
    top: -100px;
    left: -100px;
    border-radius: 50%;
    filter: blur(100px);
}
.mv-tag {
    color: #000000;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}
.mv-card {
    background: linear-gradient(135deg, #0654b6, #021f4a);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 35px 25px;
    color: white;
    height: 100%;
    transition: all 0.35s ease;
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
}
.mv-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    background: white;
    color: #0654b6;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.mv-title {
    font-weight: 700;
    margin-bottom: 10px;
}
.mv-text {
    font-size: 0.95rem;
    color: #e6ecff;
}
.mv-text span {
    color: #ffffff;
    font-weight: 600;
}











:root {
    --primary: #0654b6;
    --primary-dark: #043a80;
}

/* HERO */
.contact-hero {
    min-height: 40vh;
    background: linear-gradient(135deg, #0654b6, #021f4a);
    position: relative;
}

.contact-hero::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    top: -80px;
    border-radius: 50%;
    filter: blur(80px);
}

/* CARD FORM */
.contact-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* INPUTS */
.custom-input {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 12px 15px;
    transition: all 0.3s;
}

.custom-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(6,84,182,0.15);
}

/* BOTÓN */
.btn-primary-custom {
    background: var(--primary);
    color: white;
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
}

/* INFO */
.contact-info {
    background: #f8f9fc;
    padding: 30px;
    border-radius: 20px;
    height: 100%;
}

/* ITEMS */
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.info-item i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 18px;
}

/* BOTÓN OUTLINE */
.btn-outline-primary-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 12px;
    padding: 10px;
    transition: 0.3s;
}

.btn-outline-primary-custom:hover {
    background: var(--primary);
    color: white;
}