.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 500px;
  height: auto;
}

.swiper-slide img {
  display: block;
  width: auto;
}

:root {
    /* Paleta de colores */
    --blue-primary: #2176FF;
    --blue-dark: #144FCC;
    --blue: #1d4ed8;
    --blue-light: #66A4FF;
    --blue-lighter: #D6E6FF;
    
    --orange-primary: #FF5B04;
    --orange-dark: #CC4703;
    --orange-light: #FF8640;
    --orange-lighter: #FFD9C2;
    
    /* Tipografía */
    --font-primary: 'Open Sans', sans-serif;
    --font-secondary: 'Lato', sans-serif;
    
    /* Espaciados */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--blue-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--blue-dark);
}


.btn-primary-light {
    background-color: var(--blue-lighter);
    color: var(--blue-primary);
}

.btn-primary-light:hover {
    background-color: var(--blue-light);
}

.btn-secondary {
    background-color: var(--orange-primary);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--orange-dark);
}

.text-blue-primary {
    color: var(--blue-primary);
}

.text-orange-primary {
    color: var(--orange-primary);
}
/* Estilos para degradados y títulos */
.gradient-blue {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-light) 100%);
}

.gradient-orange {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-light) 100%);
}

.gradient-light-blue {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
}

.bg-blue-lighter {
    background-color: var(--blue-lighter);
}

.bg-orange-lighter {
    background-color: var(--orange-lighter);
}

.title-gradient {
    color: var(--orange-primary);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    color: white;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: white;
}

.section-title-orange {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    color: var(--orange-primary);
}

.section-title-orange::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--orange-primary);
}

/* Navbar hover effect */
.nav-link {
    font-size: 18px;
    position: relative;
    color: white;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FF5B04;
    font-weight: bold;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF5B04;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Imágenes de fondo para secciones */
.bg-l {
    background-image: url('../images/bg-l.png');
    background-position-y: center;
}

.bg-r {
    background-image: url('../images/bg-r.png');
    background-position-y: center;
}

.bg-left {
    background-image: url('../images/bg-left.png');
    background-position-y: top !important;
}

.bg-right {
    background-image: url('../images/bg-right.png');
}

@media screen and (max-width: 768px) {
    .bg-left {
        opacity: 0.1 !important;
        background-position-y: center !important;
    }
    
    .bg-right {
        opacity: 0.1 !important;
        background-position-y: center !important;
    }    
}
