﻿@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,500&display=swap');

:root {
    --fuentePrincipal: 'Rubik', sans-serif;
    --black: #333;
    --azulCmax: #017dc8;
}

body {
    font-family: var(--fuentePrincipal);
    margin: 0;
    background: #f3f1fc;
}

html {
    scroll-behavior: smooth;
}

.nav-link {
    font-family: var(--fuentePrincipal);
    padding: 0 1rem !important;
}

.nav li {
    margin: 0 1rem !important;
}

.btn--tra-black {
    color: var(--black) !important;
    background-color: transparent !important;
    border-color: var(--black) !important;
    border: 1px solid;
    border-radius: 10px;
}

    .btn--tra-black:hover {
        background-color: var(--azulCmax) !important;
        color: white !important;
        border-color: white !important;
    }


.navbar {
    z-index: 1001;
}

.navbar-brand {
    position: fixed;
    left: 10px;
    top: 10px;
    margin: 0;
    padding: 0;
    box-shadow: 0px 0rem 12px 2px rgb(0 0 0 / 25%);
    z-index: 1003;
}



.section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px;
    background: linear-gradient(135deg, #f4f2fc, #ece9fb);
}

.content-box {
    display: flex;
    max-width: 1300px;
    width: 100%;
    gap: 50px;
    align-items: center;
}

.text-column {
    flex: 1;
}

    .text-column h5 {
        color: #888;
        letter-spacing: 1px;
        font-size: 13px;
        margin-bottom: 10px;
    }

    .text-column h2 {
        font-size: 2.5rem;
        font-weight: 800;
        color: #1c103b;
        margin-bottom: 20px;
    }

    .text-column p {
        font-size: 16px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .text-column ul {
        text-align: left;
        list-style: circle;
    }

.image-mockup {
    position: relative;
    height: 300px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

    .image-mockup img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.fullcontn {
    padding-top: 100px !important;
    padding-right: 1rem;
}

    .fullcontn.styleleft {
        padding-left: 5rem;
    }

.landingbanner {
    margin: 0;
    padding: 0;
    margin-top: 3.5rem !important;
}


.features-section {
    padding: 120px 40px;
    background: #f4f2fc;
}

.features-container {
    max-width: 1100px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    background: #dddddd;
    padding: 12px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    min-height: 56px;
}

    .feature-icon img {
        width: 40px;
        height: 40px;
    }

.feature-heading {
    margin: 0 0 8px;
    color: #1c103b;
    font-weight: 700;
    font-size: 16px;
}

.feature-text {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-section {
        padding: 40px 20px;
    }

    .feature-icon {
        min-width: 48px;
        min-height: 48px;
    }

        .feature-icon img {
            width: 32px;
            height: 32px;
        }
}


.advantages-section {
    padding: 120px 20px;
    background-color: #fff;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1b103f;
    margin-bottom: 10px;
    text-align:center;
}

.section-subtitle {
    font-size: 1rem;
    color: #6a6a77;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.advantage-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 300px;
}

    .advantage-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

.advantage-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 1.2rem;
    color: #1b103f;
    margin-bottom: 10px;
}

.advantage-card p {
    font-size: 0.95rem;
    color: #6a6a77;
}





.compatibilidad-section {
    padding: 100px 20px;
    background-color: #f9fafc;
    text-align: center;
}

    .compatibilidad-section .section-title {
        font-size: 2.5rem;
        font-weight: 800;
        color: #1b103f;
        margin-bottom: 10px;
    }

    .compatibilidad-section .section-subtitle {
        font-size: 1rem;
        color: #6a6a77;
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

.compatibilidad-table {
    overflow-x: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

    .compatibilidad-table table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
    }

    .compatibilidad-table thead {
        background-color: #f1f4f5;
        text-align: left;
    }

    .compatibilidad-table th, .compatibilidad-table td {
        padding: 15px 20px !important;
        border-bottom: 1px solid #eee;
    }

    .compatibilidad-table th {
        font-weight: bold;
        color: #1b103f;
        text-align: left;
    }

    .compatibilidad-table td {
        color: #333;
        text-align: left;
    }

        .compatibilidad-table td img {
            max-width: 10rem;
            max-height: 5rem;
        }

    .compatibilidad-table tr:last-child td {
        border-bottom: none;
    }



/* Mostrar dropdown al pasar el mouse */
.nav-item.hover-dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Asegurar estilo limpio */
.hover-dropdown .dropdown-menu {
    display: none;
    transition: all 0.2s ease-in-out;
    border-radius: 8px;
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.05);
    min-width: 200px;
}

.hover-dropdown .dropdown-item:hover {
    background-color: #f8f9fa;
}




.card-header a {
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
}

    .card-header a:hover {
        color: #007bff;
    }

.card-body ul {
    padding-left: 1.2rem;
    text-align: left;
    list-style: circle;
}

.card-body li {
    margin-bottom: 0.5rem;
}
