/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(92, 92, 92, 0.6);
    z-index: 1000;
    transition: all 0.3s ease;
}

header .navbar {
    background-color: transparent !important;
    padding: 1rem 0;
}

header .navbar-brand img {
    height: 40px;
}

header .navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

header .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

header .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

header .btn-agenda {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

header .btn-agenda:hover {
    background-color: white;
    color: #333;
}

header .btn-login {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

header .btn-login:hover {
    background-color: white;
    color: #333;
}

/* Nav buttons container */
header .nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

@media (max-width: 991px) {
    header .nav-buttons {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }

    header .btn-agenda,
    header .btn-login {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 4rem 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-cta .btn-hero {
    background-color: white;
    color: #333;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-cta .btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background-color: #f8f9fa;
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-contact .divider {
    color: white;
}

.hero-contact .phone-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.hero-contact .phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.hero-contact .phone-label {
    font-size: 11px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-contact .phone-icon {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-contact .phone-icon svg {
    width: 24px;
    height: 24px;
    color: #333;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .hero-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-contact .divider {
        display: none;
    }
}

/* Service Section */
.service-section {
    background: linear-gradient(135deg, #2c2c2e 0%, #1c1c1e 100%);
    border-radius: 20px;
    margin: 3rem 0;
}

.service-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.service-section .lead-text {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-feature {
    color: white;
}

.service-feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.service-feature h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #4a90e2;
}

.service-feature p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-footer .tagline {
    color: #b0b0b0;
    font-size: 1.1rem;
}

.service-footer .btn-service {
    background-color: white;
    color: #333;
    padding: 1rem 3rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-footer .btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background-color: #f8f9fa;
}

.brands-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2e;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.brand-logo {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .service-section h2 {
        font-size: 2rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .service-footer {
        flex-direction: column;
        text-align: center;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .brand-logo {
        max-width: 100px;
    }
}

/* Services Offered Section */
.services-offered-section {
    background: rgba(32, 32, 32, 1);
    padding: 5rem 0;
}

.services-offered-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card-content {
    flex: 1;
    max-width: 70%;
}

.service-card-image {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -15px;
    height: 270px;
}

.service-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2e;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card ul li {
    color: #666;
    padding-left: 1.5rem;
    position: relative;
    font-size: 16px;
}

.service-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
    font-size: 1.2rem;
}

.services-cta {
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.services-cta-text {
    color: white;
    flex: 1;
}

.services-cta-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.services-cta-text p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.services-cta .btn-contact {
    background-color: white;
    color: #333;
    padding: 1rem 3rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.services-cta .btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        flex-direction: column;
        text-align: center;
    }

    .service-card-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .service-card ul li {
        text-align: left;
    }

    .services-cta {
        flex-direction: column;
        text-align: center;
    }

    .services-offered-section h2 {
        font-size: 2rem;
    }
}

/* Agenda Section */
.agenda-section {
    background: #2c2c2e;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.agenda-section::before {
    content: '';
    position: absolute;
    right: -10%;
    bottom: -20%;
    width: 60%;
    height: 100%;
    background-image: url('../img/huella.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    opacity: 0.15;
    z-index: 1;
}

.agenda-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.agenda-content {
    color: white;
}

.agenda-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.agenda-label img {
    width: 24px;
    height: 24px;
}

.agenda-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.agenda-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 60px;
    height: 60px;
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details p {
    font-size: 1rem;
    margin: 0;
    opacity: 1;
}

.agenda-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.agenda-form-wrapper h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2c2e;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.agenda-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
}

.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: border-color 0.3s ease;
}

.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

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

.agenda-form .btn-submit {
    background: #2c2c2e;
    color: white;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.agenda-form .btn-submit:hover {
    background: #1c1c1e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .agenda-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .agenda-content h2 {
        font-size: 2.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .agenda-form-wrapper {
        padding: 2rem;
    }

    .agenda-section::before {
        width: 80%;
        right: -20%;
    }
}

/* Reviews Section */
.reviews-section {
    background: #f8f9fa;
    padding: 5rem 0;
    overflow: hidden;
}

.reviews-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.reviews-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.reviews-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.reviews-slider-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 60px;
}

.reviews-slider {
    position: relative;
    width: 100%;
}

.review-card {
    background: #000;
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    outline: none;
    box-sizing: border-box;
}

.review-quote-icon {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-family: Georgia, serif;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.review-author {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.review-date {
    font-size: 0.9rem;
    color: #999;
}

/* Slick Slider Custom Arrows */
.reviews-slider-wrapper .slick-arrow {
    width: 40px;
    height: 40px;
    z-index: 10;
    background: white;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.reviews-slider-wrapper .slick-arrow:before {
    display: none;
}

.reviews-slider-wrapper .slick-prev:hover,
.reviews-slider-wrapper .slick-next:hover {
    background: #2c2c2e;
    border-color: #2c2c2e;
}

.reviews-slider-wrapper .slick-prev {
    left: 0;
}

.reviews-slider-wrapper .slick-next {
    right: 0;
}

.reviews-slider-wrapper .slick-prev img,
.reviews-slider-wrapper .slick-next img {
    width: 16px;
    height: 16px;
    display: block;
}

.reviews-slider-wrapper .slick-prev:hover img,
.reviews-slider-wrapper .slick-next:hover img {
    filter: brightness(0) invert(1);
}

/* Slick Dots */
.reviews-slider-wrapper .slick-dots {
    bottom: -40px;
    position: relative !important;
    display: flex !important;
    justify-content: center;
    gap: 0.5rem;
    padding: 0;
    list-style: none;
    margin-top: 1.5rem;
}

.reviews-slider-wrapper .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.reviews-slider-wrapper .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0;
}

.reviews-slider-wrapper .slick-dots li button:before {
    display: none;
}

.reviews-slider-wrapper .slick-dots li.slick-active button {
    background: #2c2c2e;
    width: 30px;
    border-radius: 5px;
}

/* Fix Slick Track */
.reviews-slider .slick-list {
    overflow: hidden;
}

.reviews-slider .slick-track {
    display: flex;
    align-items: center;
}

.reviews-slider .slick-slide {
    height: auto;
}

.reviews-slider .slick-slide > div {
    height: 100%;
}

@media (max-width: 992px) {
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .reviews-header {
        text-align: center;
    }

    .reviews-header h2 {
        font-size: 2rem;
    }

    .reviews-slider-wrapper {
        max-width: 100%;
        padding: 0 50px;
    }

    .review-card {
        padding: 2rem;
    }

    .review-text {
        font-size: 0.95rem;
    }
}

/* Benefits Section */
.benefits-section {
    background: #2c2c2e;
    padding: 5rem 0;
}

.benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.benefits-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.benefits-content {
    color: white;
}

.benefits-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.benefit-number {
    font-size: 2rem;
    font-weight: 700;
    min-width: 40px;
    color: white;
}

.benefit-text {
    padding-top: 0.3rem;
}

.benefits-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.benefits-cta p {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: #e0e0e0;
}

.benefits-cta a {
    color: white;
    font-weight: 700;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.benefits-cta a:hover {
    opacity: 0.8;
}

@media (max-width: 992px) {
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .benefits-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .benefits-list li {
        font-size: 1rem;
    }

    .benefit-number {
        font-size: 1.5rem;
        min-width: 35px;
    }
}

/* Empresas Section */
.empresas-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.empresas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.empresas-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c2c2e;
    line-height: 1.2;
    margin: 0;
}

.empresas-header .btn-register {
    background: #2c2c2e;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.empresas-header .btn-register:hover {
    background: #1c1c1e;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.empresas-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.empresas-feature {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.empresas-feature h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c2c2e;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.empresas-feature p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .empresas-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .empresas-header h2 {
        font-size: 2.5rem;
    }

    .empresas-features {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 576px) {
    .empresas-header h2 {
        font-size: 2rem;
    }
}

/* Footer */
footer {
    background: transparent;
    padding: 3rem 0 2rem 0;
}

.footer-contact-banner {
    background: #2c2c2e;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.footer-contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-contact-info {
    flex: 1;
}

.footer-contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.footer-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-info-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.footer-info-item p {
    font-size: 1rem;
    color: #e0e0e0;
    margin: 0;
}

.footer-contact-btn {
    background: white;
    color: #2c2c2e;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.footer-contact-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    color: #2c2c2e;
}

.step-number {
    position: relative;
}

.process-timeline .process-timeline-item:not(:last-child) .step-number:after {
    content: " ";
    background: #FFFFFF;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(36, 36, 36, 1) 100%);
    height: 3px;
    width: 400%;
    left: 100%;
    position: absolute;
}

@media (max-width: 992px) {
    .footer-contact-banner {
        padding: 2.5rem;
    }

    .footer-contact-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-contact-info h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .process-timeline .process-timeline-item .step-number:after {
        display: none!important;
    }

    .red-confianza-section .cta-banner .btn-in-banner {
        border-radius: 0 !important;
        width: 100% !important;
    }

    .red-confianza-section h2 {
        font-size: 24px !important;
    }

    .empresas-header {
        text-align: start;
        align-items: start;
    }

    .benefits-section {
        margin-top: 200px;
    }

    .benefits-image {
        margin-top: -300px;
    }

    .benefits-list li {
        margin-bottom: 24px;
    }

    .benefits-content h2 {
        font-size: 24px;
    }

    .reviews-slider-wrapper {
        padding: 0;
    }

    .reviews-container {
        display: flex;
        flex-direction: column;
    }

    .agenda-content h2 {
        font-size: 26px;
    }

    .agenda-content p {
        font-size: 16px;
    }

    .services-cta .btn-contact {
        width: 100%;
        justify-content: center;
    }

    .service-card {
        align-items: start;
    }

    .brands-section h2 {
        font-size: 30px;
    }

    .service-footer .btn-service {
        width: 100%;
    }

    .service-feature h3 {
        font-size: 16px;
    }

    .service-section .lead-text {
        font-size: 14px;
    }

    .service-section h2 {
        font-size: 20px;
    }

    .footer-contact-banner {
        padding: 2rem;
    }

    .footer-contact-info h3 {
        font-size: 1.5rem;
    }

    .footer-info-item h4 {
        font-size: 0.9rem;
    }

    .footer-info-item p {
        font-size: 0.9rem;
    }

    header .navbar {
        padding: 10px 0;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 16px;
        font-weight: normal;
    }

    .hero-content {
        padding: 0;
    }

    .hero-cta .btn-hero {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-cta {
        margin-top: 50%;
    }
}

#menuSwitcher a {
    font-size: 14px;
    padding: 5px 25px;
    border-radius: 7px;
}

#menuSwitcher {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-radius: 7px;
}

#menuSwitcher .active a {
    background-color: #000;
    color: #fff !important;
}
