
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

#logo img {
    width: 150%;
    
    height: auto;
    
    display: block;
    margin: 0 auto;
    transition: height 0.4s ease, padding 0.4s ease, margin 0.4s ease, opacity 0.3s ease;
}


h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.heading-block h1, .heading-block h2, .heading-block h3,
.heading-block h4, .heading-block h5, .heading-block h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.1;
}


.heading-block h2, .heading-block .h2 {
    font-size: 2.7em;
}


.montserrat {
    font-family: 'Montserrat', sans-serif;
}

.before-heading {
    font-size: 15px;
    color: #9e9e9e;
}

@media (max-width: 767.98px) {
    .slider-caption h2, .slider-caption .h2 {
        font-size: 7.5vw;
    }
}


@media (min-width: 768px) {
    #slider.slider-element {
        min-height: 700px !important;
        height: 700px !important;
    }
}



.primary-menu ul li a {
    display: block;
    padding: 10px 15px;
    margin: 8px 6px;
    color: #333 !important;
    font-weight: 600;
    border: 1px solid rgb(126, 126, 126, 0.2);
    
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.8);
    
    backdrop-filter: blur(4px);
    
    text-shadow: none !important;
    transition: background-color 0.4s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.primary-menu ul li a:hover {
    background-color: var(--cnvs-themecolor);
    color: #fff !important;
    border-color: var(--cnvs-themecolor);
    transform: scale(1.05);
}

.iconlist {
    list-style: none;
    padding-left: 0;
}

.iconlist li {
    position: relative;
    padding-left: 26px;
    
    margin-bottom: 10px;
}

.iconlist li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0.2em;
    
    color: var(--cnvs-themecolor);
    font-weight: bold;
}

.porque-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.8em;
    line-height: 1.2;
    color: #222;
}

.porque-subtitle {
    font-size: 1.1rem;
    color: #555;
    font-weight: 400;
    line-height: 1.6;
    max-width: 380px;
}

.feature-box .fbox-icon i {
    color: #00ccbb !important;
}

.plan-icon {
    font-size: 3rem;
    display: inline-block;
    margin-bottom: 1rem;
    line-height: 1;
}

.text-primary {
    color: #aa1fbd !important;
}



.burbuja-expandible {
    max-height: 80px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
}

.burbuja-expandible.expandido {
    max-height: none;
}

.boton-expandir {
    display: block;
    color: #2e8b57;
    background: none;
    border: none;
    font-size: 12px;
    margin-top: 4px;
    cursor: pointer;
    padding: 0;
}




#chat-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 9999;
}

#toggle-chat-btn {
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: #46aeb0;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(20, 57, 63, .18);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

#toggle-chat-btn:hover {
    transform: translateY(-2px);
    background: #3e9ea0;
    box-shadow: 0 14px 28px rgba(20, 57, 63, .24);
}

#toggle-chat-btn .chat-buhost-ai-icon {
	width: 42px;
height: 42px;
	display: block;
}

#toggle-chat-btn:hover .chat-buhost-ai-icon {
	transform: scale(1.06);
}

.chat-buhost-ai-icon {
	transition: transform .18s ease;
}

#chat-window {
    display: none;
    position: fixed;
    bottom: 170px;
    right: 20px;
    width: 340px;
    height: 460px;
    background: #ffffff;
    border: 1px solid rgba(70, 174, 176, .16);
    border-radius: 18px;
    overflow: hidden;
    z-index: 9999;
    box-shadow: 0 18px 45px rgba(21, 44, 49, .16);
}

#chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: linear-gradient(135deg, #46aeb0 0%, #5ca8cf 100%);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

#chat-header button {
    background: rgba(255, 255, 255, .16);
    border: 0;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    transition: background .18s ease, transform .18s ease;
}

#chat-header button:hover {
    background: rgba(255, 255, 255, .26);
    transform: scale(1.04);
}

#chat-log {
    padding: 14px;
    height: 322px;
    overflow-y: auto;
    font-size: 14px;
    background: #f8fafb;
}

#chat-log .mensaje-user,
#chat-log .mensaje-ia {
    margin: 0 0 12px 0;
    padding: 0;
    background: transparent !important;
    border: 0 !important;
    border-left: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    line-height: 1.5;
    width: 100%;
}

#chat-log .mensaje-user {
    text-align: right;
}

#chat-log .mensaje-ia {
    text-align: left;
}

#chat-log .mensaje-user b,
#chat-log .mensaje-ia b {
    display: block;
    margin: 0 0 5px 0;
    padding: 0;
    font-size: 13px;
    font-weight: 700;
    color: #2b3a42;
    background: transparent !important;
    border: 0 !important;
}

#chat-log .mensaje-user .burbuja-chat,
#chat-log .mensaje-ia .burbuja-chat {
    display: inline-block;
    max-width: 100%;
    margin: 0;
    box-shadow: none;
}

#chat-log .mensaje-user .burbuja-chat {
    background: #eef1f3;
    color: #334047;
    padding: 11px 13px;
    border: 1px solid #e2e7ea;
    border-radius: 12px;
}

#chat-log .mensaje-ia .burbuja-chat {
    background: #e8f3ef;
    color: #334047;
    padding: 11px 13px;
    border: 1px solid #d8e9e3;
    border-left: 4px solid #46aeb0;
    border-radius: 12px;
}

#chat-log .burbuja-expandible {
    max-height: 260px;
    overflow: hidden;
    position: relative;
}

#chat-log .burbuja-expandible.expandido {
    max-height: none;
}

#chat-log .boton-expandir {
    margin-top: 6px;
    padding: 0;
    background: none;
    border: 0;
    color: #3e8fb5;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

#chat-input-wrap {
    padding: 12px;
    border-top: 1px solid #e7ecef;
    background: #fff;
}

#chat-form {
    margin: 0;
}

#chat-input {
    width: 100%;
    min-height: 44px;
    height: 44px;
    max-height: 60px;
    padding: 10px 12px;
    border: 1px solid #d4dde2;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    line-height: 1.3;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color .18s ease, box-shadow .18s ease;
    background: #fff;
    color: #334047;
    resize: none;
    overflow-y: auto;
    display: block;
}

#chat-input::placeholder {
    color: #8a98a3;
}

#chat-input:focus {
    border-color: #46aeb0;
    box-shadow: 0 0 0 3px rgba(70, 174, 176, .14);
}

#chat-log::-webkit-scrollbar {
    width: 8px;
}

#chat-log::-webkit-scrollbar-thumb {
    background: rgba(70, 174, 176, .24);
    border-radius: 10px;
}

#chat-form {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

#chat-input {
    flex: 1;
}

#chat-send-btn {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #33b8b8;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
}

#chat-send-btn:hover {
    background: #269f9f;
}

@media (max-width: 480px) {
    #chat-window {
        right: 12px;
        left: 12px;
        bottom: 90px;
        width: auto;
        height: 70vh;
        max-height: 540px;
    }

    #chat-btn {
        right: 12px;
        bottom: 20px;
    }
}


.precio-normal {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    text-decoration: line-through;
    opacity: 0.8;
    margin-bottom: 4px;
    display: block;
}

.precio-promocional {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0c1f17;
    line-height: 1.1;
}

.porcentaje-descuento {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1e9b52;
    background-color: rgba(30, 155, 82, 0.1);
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-hosting-img {
    max-width: 450px;
    width: 100%;
    
}

@media (max-width: 991px) {
    .hero-hosting-img {
        display: none !important;
    }
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

.user-menu a {

    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-menu a:hover {
    opacity: 0.8;
}

.user-greeting {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logout-btn i {
    font-size: 18px;
}


.grecaptcha-badge {
    width: 68px !important;
    height: 60px !important;
    overflow: hidden !important;
    border-radius: 4px !important;
    transition: width 0.25s ease !important;
    left: 0px !important;
    right: auto !important;
}

.grecaptcha-badge:hover {
    width: 256px !important;
}


.password-strength-meter {
    font-size: 0.85rem;
}

.password-strength-meter {
    font-size: 0.85rem;
}

.password-strength-bar-wrapper {
    width: 100%;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 4px;
}

.password-strength-bar {
    height: 100%;
    width: 0%;
    background-color: #d9534f;
    
    transition: width 0.2s ease, background-color 0.2s ease;
}


.password-very-weak {
    background-color: #d9534f;
}


.password-weak {
    background-color: #f0ad4e;
}


.password-medium {
    background-color: #ffd500;
}


.password-strong {
    background-color: #5bc0de;
}


.password-very-strong {
    background-color: #5cb85c;
}



#password-error-msg {
    margin-top: 8px;
}


.contratar-content {
    padding-top: 1.5rem;
    
    padding-bottom: 5rem;
    
}



.billing-toggle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.billing-toggle {
    background-color: #fff;
    border-radius: 999px;
    padding: 4px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    font-family: 'Montserrat', sans-serif;
}

.billing-toggle-option {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    cursor: pointer;
    color: #666;
    transition: all 0.2s ease;
    user-select: none;
}

.billing-toggle-option.active {
    background-color: var(--cnvs-themecolor);
    color: #fff;
}

.billing-toggle-switch {
    position: relative;
    width: 42px;
    height: 22px;
}

.billing-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.billing-toggle-slider {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background-color: #ddd;
    cursor: pointer;
    transition: 0.2s;
}

.billing-toggle-slider::before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 2px;
    top: 2px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    transition: 0.2s;
}

.billing-toggle-switch input:checked+.billing-toggle-slider {
    background-color: var(--cnvs-themecolor);
}

.billing-toggle-switch input:checked+.billing-toggle-slider::before {
    transform: translateX(20px);
}

.billing-toggle-helper {
    font-size: 0.8rem;
    color: #777;
}


.user-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.user-avatar-btn {
    border: 1px solid rgba(126, 126, 126, 0.20);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    border-radius: 999px;
    padding: 6px;
    cursor: pointer;
    transition: transform .15s ease, border-color .2s ease, background-color .2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.user-avatar-btn:hover {
    border-color: var(--cnvs-themecolor);
    transform: scale(1.03);
}

.user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--cnvs-themecolor);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: 0.5px;
    font-size: 13px;
    user-select: none;
}

.user-avatar.user-avatar-sm {
    width: 36px;
    height: 36px;
    font-size: 13px;
}

.user-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 260px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .12);
    padding: 10px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}

.user-menu.open .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px 8px 10px 8px;
}

.user-meta {
    line-height: 1.2;
}

.user-fullname {
    font-weight: 700;
    font-size: 14px;
    color: #222;
}

.user-email {
    font-size: 12px;
    color: #777;
    margin-top: 2px;
}

.user-dropdown-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 8px;
    color: #333 !important;
    text-decoration: none !important;
    font-weight: 600;
}

.user-dropdown-links a:hover {
    background: rgba(68, 170, 172, 0.10);
    color: #111 !important;
}

.user-dropdown-links a i {
    width: 18px;
    text-align: center;
    opacity: 0.85;
}

.user-dropdown-sep {
    height: 1px;
    background: rgba(0, 0, 0, .08);
    margin: 8px 6px;
}

.user-dropdown-links a.logout-btn:hover {
    background: rgba(220, 53, 69, 0.10);
}

.resumen-dominio-item {
    display: flex;
    gap: 6px;
    align-items: baseline;
}

.resumen-label {
    font-weight: 600;
}

.resumen-dominio {
    font-weight: 700;
    color: var(--cnvs-themecolor);
}

.resumen-periodo {
    font-size: 0.85em;
    opacity: 0.6;
}



.domain-choice {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.domain-card {
    display: block;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 14px 16px;
    background: #fff;
    transition: all 0.25s ease;
}

.domain-card input {
    display: none;
}

.domain-card-body {
    display: flex;
    align-items: center;
    gap: 14px;
}

.domain-icon {
    font-size: 28px;
    position: relative;
}

.domain-icon .small-plus {
    position: absolute;
    font-size: 12px;
    bottom: -2px;
    right: -6px;
}

.domain-text strong {
    display: block;
    font-size: 15px;
}

.domain-text span {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}


.domain-card:has(input:checked) {
    border-color: var(--cnvs-themecolor);
    background: rgba(68, 170, 172, 0.08);
}

.domain-card:has(input:checked) .domain-text strong {
    color: var(--cnvs-themecolor);
}


/* ===============================
   Selector de moneda inline (mejor contraste)
   =============================== */

.bh-currency-switch {
    display: inline-flex;
    align-items: center;
    padding: 4px;
    margin-right: 12px;

    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);

    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.bh-currency-switch .bh-cur {
    padding: 6px 12px;
    border-radius: 999px;
    text-decoration: none;

    color: #bfc5c9;
    transition: all .2s ease;
}

.bh-currency-switch .bh-cur:hover {
    color: #ffffff;
}


.bh-currency-switch .bh-cur.active {
    background: #44AAAC;
    
    color: #ffffff;
}



.bh-currency-switch .bh-cur-sep {
    display: none;
}

/* ---------------------------------------------------
   Overlay central para mejorar legibilidad en sliders
--------------------------------------------------- */

.swiper-slide.dark {
    position: relative;
}

.swiper-slide.dark::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.35) 30%,
            rgba(0, 0, 0, 0.35) 70%,
            rgba(0, 0, 0, 0) 100%);
}



.swiper-slide.dark .container {
    position: relative;
    z-index: 2;
}


.vps-slider-value {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(142, 58, 249, 0.12);
    
    color: #8e3af9;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.15s ease-in-out;
}


.vps-slider-value.vps-flash {
    transform: scale(1.10);
    background: rgba(142, 58, 249, 0.35);
    box-shadow: 0 0 0 4px rgba(142, 58, 249, 0.25);
}

.vps-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    width: 100%;
    padding: 14px 44px 14px 16px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background-color: #fff;
    color: #111827;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 8 10 12 14 8'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;

    transition: all .2s ease;
}

.vps-select:hover {
    border-color: #c7d2fe;
}

.vps-select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, .15);
}



#sum_features li.resumen-dominio-item {
    position: relative;
    padding-left: 26px;
    
}

#sum_features li.resumen-dominio-item::before {
    left: 0;
}

#sum_features li.resumen-dominio-item .domgrid {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 12px;
    align-items: start;
}

#sum_features li.resumen-dominio-item .domgrid-left {
    display: flex;
    gap: 10px;
    align-items: baseline;
    min-width: 0;
    
}

#sum_features li.resumen-dominio-item .resumen-dominio {
    color: #1abc9c;
    font-weight: 600;
    min-width: 0;
    overflow-wrap: anywhere;
    
    word-break: break-word;
}

#sum_features li.resumen-dominio-item .domgrid-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    white-space: nowrap;
    
}

#sum_features li.resumen-dominio-item .resumen-periodo {
    color: #6c757d;
    font-size: 0.9em;
}

#sum_features li.resumen-dominio-item .resumen-precio {
    font-weight: 700;
}

#btnGenRegisterPass {
    cursor: pointer;
}


#content .grid-inner .precio-promocional {
    font-size: 2.8rem;
    line-height: 1.1;
}


#copyrights {
	padding: 34px 0 30px;
	background: rgba(255, 255, 255, 0.02);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

#copyrights .copyrights-content {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

#copyrights .copyrights-top {
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.78);
	margin-bottom: 24px;
}

#copyrights .copyrights-legal-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	text-align: left;
	margin-bottom: 22px;
}

#copyrights .copyrights-legal-item {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	padding: 18px 20px;
}

#copyrights .copyrights-legal-item h5 {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
}

#copyrights .copyrights-legal-item p {
	margin: 0;
	font-size: 13px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.55);
}

#copyrights .copyrights-legal-item a {
	color: #44aaac;
	border-bottom: 1px solid transparent;
	transition: 0.2s ease;
}

#copyrights .copyrights-legal-item a:hover {
	color: #6ecfd1;
	border-bottom-color: rgba(110, 207, 209, 0.45);
}

#copyrights .copyrights-bottom {
	font-size: 13px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 767px) {
	#copyrights {
		padding: 28px 0 24px;
	}

	#copyrights .copyrights-legal-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	#copyrights .copyrights-top {
		margin-bottom: 18px;
	}

	#copyrights .copyrights-legal-item {
		padding: 16px 16px;
	}
}

.bg-purple {
    background-color: #6f42c1 !important;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    padding: 0 6px;
    font-size: 11px;
    line-height: 1;
}