:root {
    --primary: #003d99;
    --primary-light: #0066cc;
    --primary-dark: #002251;
    --secondary: #0080ff;
    --accent: #ff6b35;
    --success: #10b981;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --bg-light: #f8fafc;
    --bg-lighter: #f1f5f9;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: var(--text-dark);
    background: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* ===== HERO SECTION ===== */
.hero-services {
    background: linear-gradient(135deg, #003d99 0%, #0066cc 40%, #0080ff 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
    color: white;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-services-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.hero-services-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-services-image {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-services-image img {
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    margin-bottom: -1px;
}

.hero-services h1 {
    font-size: 3.5rem;
    font-weight: 950;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.2;
    text-align: left;
}

.hero-services p {
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 2rem;
    letter-spacing: 0.3px;
    text-align: left;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: white;
    color: var(--primary);
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    padding: 0.875rem 2rem;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary);
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    padding: 5rem 2rem;
    border: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 102, 204, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 950;
    background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== SERVICES SHOWCASE SECTION ===== */
.services-showcase {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== CARD STYLES ===== */
.services-container {
    /* margin-bottom: 5rem; */
    scroll-margin-top: 100px;
    text-align: center;
}

.services-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 4px solid var(--primary);
    display: inline-block;
    text-align: center;
    position: relative;
}

.services-description {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 0;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.12);
    border-color: var(--primary);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-header {
    background: linear-gradient(135deg, rgba(0, 61, 153, 0.04) 0%, rgba(0, 128, 255, 0.04) 100%);
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: none;
}

.service-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    color: white;
}

.service-card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.service-card-body {
    padding: 2rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-card-features li {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.5;
}

.service-card-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-card-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-card {
    flex: 1;
    min-width: 140px;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: none;
}

.btn-card-primary {
    background: var(--primary);
    color: white;
}

.btn-card-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 61, 153, 0.3);
}

.btn-card-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-card-secondary:hover {
    background: var(--primary);
    color: white;
}

/* ===== DIVIDER ===== */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--border) 15%, var(--border) 85%, transparent 100%);
    margin: 5rem 0;
}

/* ===== CTA SECTION ===== */
.cta-big-section {
    background: linear-gradient(135deg, #003d99 0%, #0066cc 40%, #0080ff 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-big-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-big-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cta-big-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    text-transform: none;
    letter-spacing: -0.5px;
}

.cta-big-section p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 500;
    line-height: 1.6;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1024px) {
    .hero-services {
        padding: 3rem 2rem;
        min-height: 550px;
    }

    .hero-services-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        max-width: 1200px;
    }

    .hero-services h1 {
        font-size: 2.8rem;
        margin-bottom: 1.2rem;
    }

    .hero-services p {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }

    .hero-services-image img {
        max-width: 90%;
    }

    .services-showcase {
        padding: 4rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .service-card-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-services {
        padding: 2.5rem 1.5rem;
        min-height: auto;
        padding-bottom: 0;
    }

    .hero-services-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        row-gap: 0;
    }

    .hero-services-content {
        padding-bottom: 1rem;
    }

    .hero-services h1 {
        font-size: 2.2rem;
        text-align: left;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .hero-services p {
        font-size: 1rem;
        text-align: left;
        margin-bottom: 1.5rem;
        opacity: 0.9;
    }

    .hero-cta {
        flex-direction: row;
        gap: 1rem;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: auto;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-services-image {
        max-height: 350px;
        overflow: visible;
        margin-right: -1.5rem;
        margin-left: -1.5rem;
        margin-bottom: -1px;
    }

    .hero-services-image img {
        max-height: 350px;
        width: 100%;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .services-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .services-description {
        font-size: 0.95rem;
    }

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

    .service-card {
        border-radius: 12px;
    }

    .service-card-header {
        padding: 1.5rem;
    }

    .service-card-body {
        padding: 1.5rem;
    }

    .service-card-icon {
        width: 55px;
        height: 55px;
        font-size: 2.2rem;
    }

    .service-card-title {
        font-size: 1.1rem;
    }

    .cta-big-section {
        padding: 3.5rem 1.5rem;
        border-radius: 16px;
    }

    .cta-big-section h2 {
        font-size: 1.6rem;
    }

    .cta-big-section p {
        font-size: 1rem;
    }

    .stats-grid {
        gap: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .hero-services {
        padding: 2rem 1rem;
        padding-bottom: 0;
        min-height: auto;
    }

    .hero-services-wrapper {
        gap: 1rem;
        row-gap: 0;
    }

    .hero-services h1 {
        font-size: 1.75rem;
        text-align: left;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .hero-services p {
        font-size: 0.9rem;
        text-align: left;
        margin-bottom: 1rem;
        opacity: 0.9;
    }

    .hero-cta {
        gap: 0.5rem;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.65rem 1.25rem;
        font-size: 0.8rem;
        width: auto;
    }

    .hero-services-image {
        max-height: 300px;
        overflow: visible;
        margin-right: -1rem;
        margin-left: -1rem;
        margin-bottom: -1px;
    }

    .hero-services-image img {
        max-height: 300px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-services {
        padding: 1.5rem 1rem;
        padding-bottom: 0;
    }

    .hero-services h1 {
        font-size: 1.5rem;
        margin-bottom: 0.65rem;
    }

    .hero-services p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .hero-cta {
        gap: 0.4rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }

    .hero-services-image {
        max-height: 280px;
    }

    .hero-services-image img {
        max-height: 280px;
    }

    .services-title {
        font-size: 1.3rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .btn-card {
        min-width: 100%;
    }

    .service-card-footer {
        flex-direction: column;
    }

    .service-card-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
}

/* ===== COWORKING SECTION ===== */
.coworking-section {
    padding: 4rem 2rem;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.coworking-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.coworking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

/* CONTENT SIDE */
.coworking-content {
    animation: fadeIn 0.8s ease-out;
}

.coworking-header {
    margin-bottom: 1.5rem;
}

.coworking-title {
    font-size: 2.8rem;
    font-weight: 950;
    line-height: 1.1;
    color: #0f172a;
    margin: 0;
    letter-spacing: -1px;
}

.coworking-highlight {
    color: #003d99;
}

.coworking-description {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin: 1rem 0 1.5rem;
}

/* FEATURES */
.coworking-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.coworking-feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #003d99;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.coworking-feature-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 61, 153, 0.1);
}

.coworking-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #003d99;
    border-radius: 8px;
    color: white;
    font-size: 1.3rem;
}

.coworking-feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.25rem 0;
}

.coworking-feature-text p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

/* CTA BUTTONS */
.coworking-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.coworking-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.3px;
}

.coworking-btn-primary {
    background: #003d99;
    color: white;
}

.coworking-btn-primary:hover {
    background: #002251;
    transform: translateY(-2px);
}

.coworking-btn-secondary {
    background: white;
    color: #003d99;
    border: 2px solid #003d99;
}

.coworking-btn-secondary:hover {
    background: #003d99;
    color: white;
    transform: translateY(-2px);
}

/* VIDEO SIDE */
.coworking-video {
    animation: fadeIn 0.8s ease-out;
}

.coworking-video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 61, 153, 0.15);
    aspect-ratio: 16 / 9;
    background: #000;
}

.coworking-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.coworking-video-overlay {
    display: none;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .coworking-section {
        padding: 3.5rem 1.5rem;
    }

    .coworking-grid {
        gap: 2rem;
    }

    .coworking-title {
        font-size: 2.4rem;
    }

    .coworking-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .coworking-section {
        padding: 3rem 1.5rem;
    }

    .coworking-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .coworking-title {
        font-size: 2rem;
    }

    .coworking-cta {
        flex-direction: column;
    }

    .coworking-btn {
        width: 100%;
        justify-content: center;
    }

    .coworking-feature-item {
        padding: 1rem;
    }

    .coworking-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .coworking-section {
        padding: 2.5rem 1rem;
    }

    .coworking-grid {
        gap: 1.5rem;
    }

    .coworking-title {
        font-size: 1.75rem;
    }

    .coworking-description {
        font-size: 0.9rem;
        margin: 0.8rem 0 1rem;
    }

    .coworking-features {
        gap: 0.8rem;
        margin-bottom: 1.25rem;
    }

    .coworking-feature-item {
        padding: 0.9rem;
        gap: 0.75rem;
    }

    .coworking-feature-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .coworking-feature-text h4 {
        font-size: 0.9rem;
    }

    .coworking-feature-text p {
        font-size: 0.8rem;
    }

    .coworking-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
}
.catalogos-carousel-section {
    position: relative;
}

.tipo-carousel-wrap {
    padding: 20px 60px;
    position: relative;
}

.tipo-carousel-wrap .carousel-inner {
    border-radius: 12px;
    background: transparent;
}

/* .tipo-carousel-wrap .carousel-item {
    padding: 20px 0;
} */

.tipo-card {
    border: 2px solid #e0e7ff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(13, 47, 102, 0.08);
    height: 180px;
    transition: all .3s ease;
    background: #fff;
    cursor: pointer;
    text-align: center;
}

.tipo-card:hover {
    box-shadow: 0 12px 24px rgba(13, 47, 102, 0.15);
    transform: translateY(-4px);
    border-color: #0066cc;
}

.tipo-card .card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tipo-card-icon {
    font-size: 28px;
    color: #0056b3;
    margin-bottom: 10px;
}

.tipo-card-title {
    color: #0d2f66;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.tipo-card-count {
    color: #94a3b8;
    font-size: 11px;
    margin-top: 6px;
}

.carousel-nav-btn {
    width: 50px;
    height: 50px;
    background: #0066cc;
    border-radius: 50%;
    padding: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.carousel-nav-btn:hover {
    background: #003d99;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
}

@media (max-width: 992px) {
    .tipo-carousel-wrap {
        padding: 20px 50px;
    }
}

@media (max-width: 768px) {
    .tipo-carousel-wrap {
        padding: 20px 45px;
    }

    .carousel-nav-btn {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 576px) {
    .tipo-carousel-wrap {
        padding: 15px 40px;
    }

    .carousel-nav-btn {
        width: 42px;
        height: 42px;
    }

    .tipo-card {
        min-height: 120px;
    }
}
