:root {
    --drts-primary: #001223;
    --drts-second: #24d099;
    --drts-primary-dark: #032130;
    --drts-light: #f5f7fb;
}

/* General */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    scroll-behavior: smooth;
}

/* Botones principales del hero con color secundario */
.btn-hero-second {
    background-color: var(--drts-second) !important;
    border-color: var(--drts-second) !important;
    color: #022c22 !important; /* texto oscuro pero legible sobre el verde */
}

.btn-hero-second:hover {
    filter: brightness(0.95);
}

/* Navbar */
.bg-primary {
    background: var(--drts-primary-dark) !important;
}
.bg-second {
    background:var(--drts-second);
}

.colorwhite{
    color: #fff;
}

.brand-dot {
    font-weight: 600;
    color: var(--drts-primary);
}

.navbar-brand {
    font-weight: 600;
    color: var(--drts-primary) !important;
}

.navbar .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: #000000 !important;
}

/* Hero */
.hero-section {
    padding-top: 110px; /* navbar */
    padding-bottom: 80px;
    background: var(--drts-primary-dark);
    color: #fff;
}

.hero-badge {
    background-color: rgba(254, 202, 57, 0.15);
    color: var(--drts-second);
    border: 1px solid rgba(254, 202, 57, 0.4);
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.85);
}

.text-light-50 {
    color: rgba(255, 255, 255, 0.55);
}

/* Botón verde en el navbar ("Contáctanos") */
.btn-nav-second {
    background-color: var(--drts-second) !important;
    border-color: var(--drts-second) !important;
    color: #fff !important; /* texto oscuro, buen contraste */
    border-radius: 999px;
}

.btn-nav-second:hover {
    filter: brightness(0.95);
}

.btn-nav-primary {
    background-color: var(--drts-primary) !important;
    border-color: var(--drts-primary) !important;
    color: #fff !important; /* texto oscuro, buen contraste */
    border-radius: 999px;
}

.btn-nav-primary:hover {
    filter: brightness(0.95);
}


/* Hero card */
.hero-card {
    background: #0d2d3b;
    border-radius: 1.25rem;
    padding: 1.75rem;
    color: #fff;
}

.hero-card .badge.bg-soft {
    background-color: rgba(254, 202, 57, 0.12);
    color: var(--drts-second);
}

/* Secciones */
.section-padding {
    padding: 80px 0;
}

.section-header .section-tag {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--drts-primary);
    background-color: rgba(6, 53, 74, 0.06);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.5rem;
}

/* Cards */
.service-card,
.micro-card,
.product-card,
.about-card,
.contact-card {
    border: none;
    color: #fff;
    border-radius: 1.25rem;
    background-color: #0d2d3b;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.service-card:hover,
.micro-card:hover,
.product-card:hover,
.about-card:hover,
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    border-color: rgba(6, 53, 74, 0.16);
}

/* Clientes */
.client-logo {
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    border: 1px dashed rgba(15, 23, 42, 0.15);
    font-size: 0.85rem;
}

.placeholder-logo {
    background: linear-gradient(135deg, rgba(6, 53, 74, 0.06), rgba(254, 202, 57, 0.08));
}

/* Contacto */
.contact-section {
    background: radial-gradient(circle at top right, #fef6dd 0, #ffffff 40%);
}

.contact-list a {
    color: var(--drts-primary);
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    border-top: 1px solid rgba(148, 163, 184, 0.4);
}

/* Navbar shrink (cuando haces scroll) */
.navbar.navbar-shrink {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    background: rgba(6, 53, 74, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.35);
}

/* Cuando el navbar está shrink, puedes cambiar el color de los li/nav-link */
.navbar.navbar-shrink .nav-link {
    color: #a5c1d9 !important;                      /* color normal con navbar-shrink */
}

.navbar.navbar-shrink .nav-link:hover {
    color: #fff !important;           /* hover */
}

.navbar.navbar-shrink .nav-link.active {
    color: #fff !important;                      /* activo en shrink (ej. dorado) */
}

.hero-tabs .nav-pills .nav-link.active {
    color: #022c22 !important; /* texto oscuro, se lee bien sobre el verde */
}


/* Responsive tweaks */
@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 104px;
        padding-bottom: 64px;
    }
}


.hero-tab-layout {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.hero-tab-text {
    flex: 1.3;
}

.hero-tab-image {
    flex: 1;
    max-width: 150px;
}

.hero-tab-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* En móviles, que se ponga uno debajo del otro */
@media (max-width: 575.98px) {
    .hero-tab-layout {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-tab-image {
        max-width: 220px;
        align-self: center;
    }
}


.hero-tabs .nav-pills .nav-link {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(36, 208, 153, 0.35); /* borde verdoso suave */
}
.nav-link{
    color: #495057 !important;
}

.hero-tabs .nav-pills .nav-link.active {
    background-color: var(--drts-second);  /* 💚 el color nuevo */
    border-color: var(--drts-second);
    color: #022c22; /* texto oscuro, se lee bien sobre el verde */
}

/* Layout texto + imagen en las tabs del hero */
.hero-tab-layout {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

/* Texto ocupa más espacio, imagen menos */
.hero-tab-text {
    flex: 1.4;
}

/* Contenedor de la imagen con tamaño fijo */
.hero-tab-image {
    flex: 0 0 160px;          /* ancho fijo aprox */
    max-width: 160px;
    height: 100px;            /* alto fijo */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Todas las imágenes mismo tamaño visual */
.hero-tab-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;      /* o 'cover' si quieres que recorte un poco */
    border-radius: 0.75rem;
}

/* En móviles, que se ponga uno debajo del otro */
@media (max-width: 575.98px) {
    .hero-tab-layout {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-tab-image {
        flex: 0 0 auto;
        width: 220px;
        max-width: 100%;
        height: 120px;
        align-self: center;
    }
}

/* Título principal + imagen a la derecha */
.hero-title-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-title-text {
    flex: 1;
    margin-left: 78px;
}

.hero-title-image {
    flex: 0 0 72px;      /* tamaño de la imagen */
    max-width: 72px;
}

.hero-title-image img {
    width: 153px;
    height: auto;
    object-fit: contain;
}

/* En móvil, que la imagen baje debajo del título */
@media (max-width: 767.98px) {
    .hero-title-block {
        flex-direction: row;
        align-items: flex-start;
    }
    .hero-title-image {
        flex: 0 0 52px;
        max-width: 52px;
    }
}


/* Icono / imagen en la parte superior de cada servicio */
.service-icon {
    width: 72px;                 /* puedes ajustar el tamaño */
    height: 72px;
    border-radius: 50%;          /* círculo perfecto */
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;            /* IMPORTANTE: recorta la imagen fuera del círculo */
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;           /* se adapta al contenedor */
    border-radius: 50%;          /* la propia imagen también es circular */
}

/* Microservicios: cards compactas */
.micro-card {
    border-radius: 1rem;
    padding: 1.2rem 1rem;
    background-color: #24d099;
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.micro-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
}

/* Icono redondo, recortando la imagen */
.micro-icon {
    width: 70px;
    height: 70px;
    margin-inline: auto;
    border-radius: 50%;
    border: 2px solid rgba(36, 208, 153, 0.4); /* usa tu verde */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, rgba(36, 208, 153, 0.12), #f9fafb);
}

.micro-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Texto compacto */
.micro-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #4b5563;
}

/* Imagen superior en las product cards */
.product-card-image {
    width: 100%;
    height: 140px;              /* alto fijo para que todas queden iguales */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.9rem;
    overflow: hidden;
    background: radial-gradient(circle at top, rgba(36, 208, 153, 0.12), #000000);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;        /* usa 'cover' si quieres que llene aunque recorte un poco */
}

/* Faja verde debajo de productos */
.strategy-banner {
    background-color: #021627;         /* fondo oscuro similar al de la imagen */
    padding: 24px 0;
}

.strategy-ribbon {
    background: var(--drts-second, --drts-primary-dark);
    color: #022c22;
    text-align: center;
    padding: 18px 16px;
    font-size: 1.25rem;
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    clip-path: polygon(
        0 20%,
        50% 0,
        100% 20%,
        100% 80%,
        50% 100%,
        0 80%
        );
}

.strategy-ribbon p {
    margin: 0;
}

/* Ajuste en pantallas pequeñas */
@media (max-width: 576px) {
    .strategy-ribbon {
        font-size: 1rem;
        padding: 14px 12px;
    }
}

/* Cuando haces scroll y el menú está shrink */
.navbar.navbar-shrink .btn-nav-primary {
    background-color: var(--drts-second) !important;  /* verde lleno */
    border-color: var(--drts-second) !important;
    color: #022c22 !important;
}

.navbar.navbar-shrink .btn-nav-primary:hover {
    filter: brightness(0.95);
}

.navbar.navbar-shrink .navbar-brand,
.navbar.navbar-shrink .navbar-brand .brand-dot {
    color: #ffffff !important;
}










