.float-wsp{
	position:fixed;
	width:60px;
	height:60px;
	bottom:30px;
	right:30px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: var(--shadow-modern);
  z-index:9999;
  transition: var(--transition-default);
}

.float-wsp:hover {
	transform: scale(1.1);
	box-shadow: var(--shadow-modern-hover);
	color: #FFF;
	text-decoration: none;
}

.my-float-wsp{
	margin-top:16px;
}

/* ========================================
   DYNAMIC TYPOGRAPHY SYSTEM - CD-SYSTEM
   ======================================== */

/* Root font family variables - Now managed dynamically by CD-System */
/* Variables are injected dynamically via get_dynamic_css_variables() helper */

/* Global font family application */
body,
html {
    font-family: var(--font-family-primary) !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-family-primary) !important;
    font-weight: 600;
}

/* Navigation elements */
.navbar-nav > li > a,
.navbar-nav > li > span,
.navbar-nav > li > div {
    font-family: var(--font-family-primary) !important;
}

/* Buttons */
.btn,
button,
input[type="submit"],
input[type="button"] {
    font-family: var(--font-family-primary) !important;
}

/* Form elements */
input, textarea, select, option {
    font-family: var(--font-family-primary) !important;
}

/* Tables */
table, th, td {
    font-family: var(--font-family-primary) !important;
}

/* Cards and panels */
.card,
.panel,
.thumbnail {
    font-family: var(--font-family-primary) !important;
}

/* Footer */
footer,
.footer {
    font-family: var(--font-family-primary) !important;
}

/* Sidebar */
.sidebar,
.sidebar-nav {
    font-family: var(--font-family-primary) !important;
}

/* Breadcrumbs */
.breadcrumb {
    font-family: var(--font-family-primary) !important;
}

/* Pagination */
.pagination > li > a,
.pagination > li > span {
    font-family: var(--font-family-primary) !important;
}

/* Tooltips and popovers */
.tooltip,
.popover {
    font-family: var(--font-family-primary) !important;
}

/* Modal dialogs */
.modal-title,
.modal-body {
    font-family: var(--font-family-primary) !important;
}

/* Alert messages */
.alert {
    font-family: var(--font-family-primary) !important;
}

/* Badges and labels */
.badge,
.label {
    font-family: var(--font-family-primary) !important;
}

/* Progress bars */
.progress-bar {
    font-family: var(--font-family-primary) !important;
}

/* List groups */
.list-group-item {
    font-family: var(--font-family-primary) !important;
}

/* Wells */
.well {
    font-family: var(--font-family-primary) !important;
}

/* Jumbotron */
.jumbotron {
    font-family: var(--font-family-primary) !important;
}

/* Custom components */
.porto-block,
.porto-block-title,
.porto-block-subtitle {
    font-family: var(--font-family-primary) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body, html {
        font-family: var(--font-family-primary) !important;
    }
}

/* ========================================
   METODOLOGÍA SECTION STYLES
   ======================================== */

.methodology-steps {
    position: relative;
}

.methodology-step {
    position: relative;
    padding: 2rem 1rem;
}

.step-icon {
    position: relative;
    z-index: 2;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.icon-circle:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Connecting lines between circles */
.methodology-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.5) 25%,
        rgba(255, 255, 255, 0.5) 75%,
        rgba(255, 255, 255, 0.3) 100%);
    z-index: 1;
    transform: translateY(-50%);
}

/* Hide connecting line on mobile */
@media (max-width: 991px) {
    .methodology-steps::before {
        display: none;
    }
}

/* Responsive adjustments for methodology */
@media (max-width: 768px) {
    .methodology-step {
        padding: 1.5rem 0.5rem;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .icon-circle i {
        font-size: 1.5rem !important;
    }
}

