:root {
	--primary-color: #2563eb;
	      
  --secondary-color: #1e40af;
	    
  --accent-color: #60a5fa;
	       
  --dark-bg: #0f172a;
	            
  --light-bg: #f8fafc;
	          
  --gradient-blue: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

body {
	font-family: 'Montserrat', sans-serif;
	
  line-height: 1.6;
	
  color: #333;
	
  scroll-behavior: smooth;
}

.hero-wrap {
	position: relative;
	
  overflow: hidden;
}

.hero-wrap:before {
	content: '';
	
  position: absolute;
	
  top: 0;
	
  left: 0;
	
  width: 100%;
	
  height: 100%;
	
  opacity: 0.9;
	
  z-index: 1;
}

.parrafo {
	background: rgba(255, 255, 255, 0.1);
	
  backdrop-filter: blur(10px);
	
  border-radius: 20px;
	
  border: 1px solid rgba(255, 255, 255, 0.2);
	
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);

  padding: 40px;

  max-width: 600px; /* Limitar el ancho máximo */

  width: 150%;

  padding: 40px;
}

.ftco-navbar-light {
	background: rgba(255, 255, 255, 0.95) !important;
	
  backdrop-filter: blur(10px);
	
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
	position: relative;
	
  color: var(--dark-bg) !important;
	
  padding: 0.5rem 1.5rem !important;
	
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:after {
	content: '';
	
  position: absolute;
	
  width: 0;
	
  height: 2px;
	
  bottom: 0;
	
  left: 50%;
	
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover:after {
	width: 60%;
	
  left: 20%;
}

.box {
	perspective: 1000px;
	
  background: #fff;
	
  border-radius: 10px;
	
  padding: 20px;
	
  transition: transform 0.3s ease, box-shadow 0.3s ease;
	
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.box:hover {
	transform: translateY(-10px);
	
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.pricing-content {
	border: 1px solid #ddd;
	
  border-radius: 10px;
	
  overflow: hidden;
	
  transition: transform 0.3s ease, box-shadow 0.3s ease;
	
  background: #fff;
	
  padding: 20px;
	
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pricing-content:hover {
	border-color: var(--accent-color);
	
  transform: translateY(-10px);
	
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.pricing-content h2 {
	background: var(--gradient-blue);
	
  color: white;
	
  padding: 1.5rem;
	
  margin: 0;
}

.pricing-content h3 {
	background: var(--gradient-black);
	
  color: black;
	
  padding: 1.5rem;
	
  margin: 0;
}




.price-bottom .btn {
	width: 80%;
	
  margin: 1.5rem auto;
	
  transition: transform 0.3s ease;
}

.price-bottom .btn:hover {
	transform: translateY(-2px);
}

footer {
	background: var(--dark-bg);
	
  color: #fff;
	
  position: relative;
	
  overflow: hidden;
	
  background-color: #2c3e50;
	
  padding: 40px 0;
}

footer:before {
	content: '';
	
  position: absolute;
	
  top: -50px;
	
  left: 0;
	
  width: 100%;
	
  height: 100px;
	
  background: var(--light-bg);
}

.company-social li {
	display: inline-block;
	
  margin: 0 10px;
	
  transition: transform 0.3s ease;
}

.company-social li:hover {
	transform: translateY(-3px);
}

.section-heading {
	position: relative;
	
  padding-bottom: 1rem;
	
  text-align: center;
	
  margin-bottom: 30px;
}

.section-heading:after {
	content: '';
	
  position: absolute;
	
  bottom: 0;
	
  left: 50%;
	
  transform: translateX(-50%);
	
  width: 80px;
	
  height: 3px;
}

@keyframes float {
	0% { transform: translateY(0px);
}

50% {
	transform: translateY(-20px);
}

100% {
	transform: translateY(0px);
}

}

.flotante {
	animation: float 3s ease-in-out infinite;
	
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary {
	border: none;
	
  padding: 10px 20px;
	
  border-radius: 5px;
	
  font-weight: 600;
	
  letter-spacing: 0.5px;
	
  text-transform: uppercase;
	
  position: relative;
	
  overflow: hidden;
	
  background-color: #3498db;
	
  font-size: 16px;
	
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:after {
	content: '';
	
  position: absolute;
	
  top: 0;
	
  left: -100%;
	
  width: 100%;
	
  height: 100%;
	
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
	
  transition: all 0.5s;
}

.btn-primary:hover:after {
	left: 100%;
}

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
	border-radius: 4px;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	
  color: #2c3e50;
}

p {
	font-size: 16px;
	
  color: #666;
}

.btn-primary:hover {
	background-color: #0056b3;
	
  transform: scale(1.05);
}

.box h4 {
	margin-top: 15px;
	
  font-size: 20px;
	
  color: #3498db;
}

.box p {
	font-size: 14px;
	
  color: #666;
}

footer h5 {
	color: #fff;
	
  margin-bottom: 20px;
}

footer p {
	color: #ddd;
}

footer ul {
	list-style: none;
	
  padding: 0;
}

footer ul li {
	margin-bottom: 10px;
}

footer ul li a {
	color: #ddd;
	
  text-decoration: none;
}

footer ul li a:hover {
	color: #3498db;
}

.sub-footer {
	background-color: #1a252f;
	
  padding: 10px 0;
	
  text-align: center;
	
  color: #ddd;
}

.sub-footer a {
	color: #3498db;
	
  text-decoration: none;
}

.sub-footer a:hover {
	text-decoration: underline;
}

.flotante {
	display: scroll;
	
  position: fixed;
	
  left: 10px;
	
  bottom: 10px;
	
  width: 70px;
	
  height: 70px;
	
  border-radius: 50%;
	
  background-color: transparent;
	
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flotante:hover {
	transform: scale(1.1);
	
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.flotante img {
	border-radius: 50%;
	
  width: 100%;
	
  height: 100%;
	
  object-fit: cover;
}

.h2.text-center {
	text-align: center;
}

.service-box {
	margin-bottom: 20px;
	
  padding: 20px;
	
  background: #f9f9f9;
	
  border-radius: 8px;
	
  transition: transform 0.3s ease, box-shadow 0.3s ease;
	
  display: flex;
	
  align-items: center;
	
  gap: 15px;
	
  min-height: 210px;
}

.service-box:hover {
	transform: translateY(-10px);
	
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-icon {
	transition: color 0.3s ease;
	
  display: flex;
	
  align-items: center;
	
  justify-content: center;
	
  min-width: 50px;
}





.service-box:hover .service-icon {
  color: #323edd; 
}




.bg-gray {
	background: #fafafa;
}

.callaction {
	padding: 30px 30px 20px 30px;
	
    border-radius: 4px;
	
    border-bottom: 2px solid #f2f2f2;
}



.section-heading h2 {
	font-size: 2.5rem;
	
  color: #333;
}

.section-heading p {
	font-size: 1.2rem;
	
  color: #666;
}

.pricing-box {
	margin-bottom: 30px;
}

.pricing-content h2.pricing-title {
	font-size: 1.8rem;
	
color: #fff;
	 
margin-bottom: 20px;
}

.pricing-content ul {
	list-style: none;
	
padding: 0;
}

.pricing-content ul li {
	margin-bottom: 10px;
	
font-size: 1rem;
}

.pricing-content ul li i {
	margin-left: 10px;
	
color: #28a745;
}

.pricing-content .price-bottom {
	text-align: center;
	
margin-top: 20px;
}

.pricing-content .btn-primary {
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.pricing-content .btn-primary:hover {
	background-color: #0056b3;
	 
transform: scale(1.05);
}

.btn-primary.btn-sm {
	padding: 10px 20px;
	 
font-size: 1rem;
}

.btn-primary.btn-sm:hover {
	background-color: #0056b3;
	 
transform: scale(1.05);
}

.row {
	display: flex;
	
  flex-wrap: wrap;
}

.col-sm-6, .col-md-6 {
	display: flex;
	
  flex-direction: column;
}

.service-desc {
	flex: 1;
}

.service-box:hover .service-desc h5 {
  color: #323edd; 
}

#vmare{
	width: 500%;
	height: 100px;
}


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

 .lead-list li {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

 .lead-list li span.icon-success {
        margin-right: 50px; /* Espacio entre el icono y el texto */
        width: 30px; /* Asegura que el icono tenga un tamaño fijo */
    }

.lead-list li strong {
        font-size: 15px;
    }


h2.heading.text-white{

	font-size: 30px;
}

h2.mb-5{
  font-family:'Fira Sans', sans-serif;
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
  color:white;
  text-align: center;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
  animation: fadeIn 1s ease-in-out;
  position: relative;
  z-index: 3; 


}

h3.mb-5{
  font-family:'Fira Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color:white;
  text-align: center;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
  animation: fadeIn 1s ease-in-out;
  position: relative;
  z-index: 3; 


}

.overlay-detail{
   text-align: center;
   position: absolute;
   bottom: 25px;
   font-size: 38px;
   color: white;
}

h2.mb-6{
  font-family:'Fira Sans', sans-serif;
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
  color:#67696C;
  text-align: center;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
  animation: fadeIn 1s ease-in-out;
  position: relative;
  z-index: 3; 


}

h2.mb-7{
  font-family:'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color:black;
  text-align: center;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
  animation: fadeIn 1s ease-in-out;
  position: relative;
  z-index: 3; 


}

h2.mb-8{
  font-family:'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color:black;
  text-align: center;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
  animation: fadeIn 1s ease-in-out;
  position: relative;
  z-index: 3; 


}