/* CSS Variables */
:root {
    /* Primary Colors */
    --color-primary: #823148;
    --color-primary-hover: #581B2C;
    --color-primary-light: #C66480;

    --color-secondary: #044388;
    
    /* Background Colors */
    --color-bg-dark: #000;
    --color-bg-dark-secondary: #1a1a1a;
    --color-bg-light: #fff;
    --color-bg-gray: #2a2a2a;
    --color-bg-gray-light: #f8f9fa;
    --color-bg-card: #1a1a1a;
    
    /* Text Colors */
    --color-text-primary: #333;
    --color-text-secondary: #034389;
    --color-text-light: #484848;
    --color-text-extra-light: #AEAEAE;
    --color-text-white: #fff;
    --color-text-placeholder: #999;
    
    /* Border Colors */
    --color-border: #444;
    --color-border-light: #333;
    
    /* Shadow Colors */
    --color-shadow-primary: rgba(255, 102, 0, 0.4);
    --color-shadow-dark: rgba(0, 0, 0, 0.3);
    --color-shadow-light: rgba(0, 0, 0, 0.1);
    
    /* Navigation Colors */
    --color-nav-bg-transparent: rgba(0, 0, 0, 0.1);
    --color-nav-bg-scrolled: rgba(0, 0, 0, 0.95);
    
    /* Circle Gradient */
    --color-circle-start: #ff6600;
    --color-circle-middle: rgba(255, 102, 0, 0.3);
    --color-circle-end: transparent;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hanken Grotesk', sans-serif !important;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    background: var(--color-primary);
    color: var(--color-text-white);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}
.btn.expanded {
    width: 100%;
}



/* Header Styles */
.header {
    background: #000;
    color: white;
    position: relative;
}

.top-nav {
   background: rgba(255, 255, 255, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
   
    transition: all 0.3s ease;
}

.top-nav.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
     backdrop-filter: blur(10px);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color:var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 18px;
    font-family: 'Anton', sans-serif;
    
}

.nav-menu a:hover {
    color: var(--color-primary);
}

.mobile-menu-toggle {
    display: none;
    color: var(--color-text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}


/* GENERALES */
.divider{
    background-repeat: repeat;
    background-color: var(--color-primary);
    height: 25px;
    background-size: contain;
}
.section-title{
    padding-left: 25px; 
    position: relative;
}
.section-title:after{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    content: '';
    background: #823148;
}
.section-title h2{
    font-family: 'Anton', sans-serif;
    font-weight: normal;
    font-size: 2.5rem;
}
.section-title h3{
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.badge-img{
    position: fixed;
    bottom: 0;
    right: 5%;
    width: 150px;
    transition: all 0.3s ease;
}
.badge-img.scrolled{
    position: fixed;
    bottom: -50px;
    right: 5%;
    width: 100px;
}

/* Hero Section */
.hero {
    padding-top: 50px;
    background: var(--color-bg-light);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-circle {
    position: absolute;
    top: 30%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.8;
    z-index: 0;
}



.splide {
}

.splide__slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0;
}

#service-slider {
  width: 100%;
  overflow: hidden;
}

#service-slider .splide__track {
  width: 100%;
}

#service-slider .splide__list {
  display: flex;
  width: 100%;
}

#service-slider .splide__slide {
  flex: 0 0 100%;
  width: 100%;
}


.hero-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    object-position: center bottom;
}
.hero-image-mobile {
    display: none;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    padding: 120px 0 120px 0;
    margin-left: 50%;
    width: 50%;
}

.hero-text {
    text-align: left;
    max-width: 90%;
    padding: 0 5%;
}

.hero-text h2 {
    font-family: 'Anton', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-text-white);
    padding: 15px 40px;
    text-decoration: none;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--color-shadow-primary);
}

.hero-bottom-strip {
    height: 30px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin-top: auto;
}

.hero-strip-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

/* About Section */
.about {
    background: var(--color-bg-light);
    padding: 40px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.about-left h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-left h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: 1px;
}

.about-left img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img-large{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 8px;
}
.value-item {
    background-color: #E3E8EE;
    border-radius: 5px;
    padding: 20px;
}
.value-item {
    background-color: #E3E8EE;
    border-radius: 5px;
    padding: 20px;
}
.value-item h3{
    font-size: 22px;
    font-weight: 500;
    font-family: 'Anton', sans-serif;
    color: var(--color-secondary)
}
.mobile-only {
    display: block;
}
.desktop-only {
    display: none;
}
  
.item-0 {
    grid-column: 1;
    grid-row: 1;
}
    
.item-1 {
    grid-column: 1;
    grid-row: 2;
}
    
.item-2 {
    grid-column: 1;
    grid-row: 3;
}
    
.item-3 {
    grid-column: 1;
    grid-row: 4;
}
@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(7, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 8px;
    }
    .mobile-only {
        display: none;
    }
    .desktop-only {
        display: block;
    }
    .item-0 {
        grid-column: 1 / span 2;
        grid-row: 1;
    }
    
    .item-1 {
        grid-column: 3 / span 5;
        grid-row: 1;
    }
    
    .item-2 {
        grid-column: 1 / span 4;
        grid-row: 2;
    }
    
    .item-3 {
        grid-column: 5 / span 3;
        grid-row: 2;
    }
    
}



.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card {
    background: var(--color-bg-gray-light);
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    border-top: 4px solid var(--color-primary);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #E3E8EE;
    border-radius: 5px;
    padding: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-secondary);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.service-content p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: var(--color-bg-gray);
    color: var(--color-text-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.8;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.contact-header h3 {
    color: var(--color-primary);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-header h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: 1px;
}

.contact-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    color: var(--color-primary);
    font-size: 1.5rem;
    width: 30px;
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--color-text-light);
}
.contact-item img{
    height: 55px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid var(--color-border);
    border-radius: 5px;
    color: #474747;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #ffffffc7;
    font-family: 'Hanken Grotesk', sans-serif !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #474747;
}

.submit-button {
    background: var(--color-primary);
    color: var(--color-text-white);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}

.submit-button:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--color-shadow-primary);
}
.submit-button:disabled {
    background: var(--color-text-placeholder);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Form Messages */
.form-message {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
    color: #ef4444;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: #061018;
    color: var(--color-text-white);
    position: relative;
}

.footer-stripes {
    height: 20px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light), var(--color-primary));
    background-size: 20px 20px;
    position: relative;
}

.footer-divider {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Anton', sans-serif;
    color: white;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--color-text-extra-light);
    line-height: 1.6;
    margin-bottom: 20px;
}


.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    color: var(--color-text-extra-light);
}


.footer-section ul li a {
    color: var(--color-text-extra-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--color-primary);
}

.social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: var(--color-text-white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--color-border-light);
}

.footer-bottom-left p {
    color: var(--color-text-placeholder);
    font-size: 0.9rem;
}

.eu-logos {
    display: flex;
    gap: 15px;
}

.eu-logos img {
    height: 40px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-nav {
        background: rgba(255, 255, 255, 1);
    }
    .mobile-menu-toggle {
        display: block;
    }

    .logo img {
        height: 40px;
    }
    
    .nav-menu {
        position: fixed;
        top: 40px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 40px);
        background: rgba(255, 255, 255, 1);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }

    .nav-menu a{
        font-size: 24px;
        font-family: 'Anton', sans-serif !important;
    }
    
    .hero-content {
        margin-left: 0;
        width: 100%;
            padding: 40px 0 160px 0;
        justify-content: center;
    }
    
    .hero-text {
        text-align: center;
        max-width: 90%;
        padding: 0 5%;
    }

    
    .hero-image {
        width: 100%;
        height: 100%;
        bottom: -9px;
        left: -74px;
        object-fit: cover;
        object-position: center bottom;
        display: none
    }
    .hero-image-mobile{
        position: absolute;
        display: block;
        width: 102%;
        bottom: 5px;
        left: 0px;
        object-fit: cover;
        object-position: center bottom;
    }
    
    .hero-circle {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 300px;
        height: 300px;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .about-text h2,
    .services-header h2,
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[src=""] {
    opacity: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #ff6600;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer {
        background: white !important;
        color: black !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
    }
    
    .services {
        background: white !important;
        color: black !important;
    }
    
    .contact {
        background: white !important;
        color: black !important;
    }
}








/* PAGINA DE SERVICIOS */
.service-header{
    background: #f2f8ff;
    padding: 120px 0 80px 0;
}
.service-header .service-image{
    height: 400px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
}

.service-s1{
    padding: 80px 0;
}






/* Utility classes (inspiradas en Bootstrap) */
/* Spacing scale: 0=0, 1=.25rem, 2=.5rem, 3=1rem, 4=1.5rem, 5=3rem */
/* Margin */
.m-0{margin:0!important}
.m-1{margin:.25rem!important}
.m-2{margin:.5rem!important}
.m-3{margin:1rem!important}
.m-4{margin:1.5rem!important}
.m-5{margin:3rem!important}

.mt-0{margin-top:0!important}
.mt-1{margin-top:.25rem!important}
.mt-2{margin-top:.5rem!important}
.mt-3{margin-top:1rem!important}
.mt-4{margin-top:1.5rem!important}
.mt-5{margin-top:3rem!important}

.mb-0{margin-bottom:0!important}
.mb-1{margin-bottom:.25rem!important}
.mb-2{margin-bottom:.5rem!important}
.mb-3{margin-bottom:1rem!important}
.mb-4{margin-bottom:1.5rem!important}
.mb-5{margin-bottom:3rem!important}

.ms-0{margin-left:0!important}
.ms-1{margin-left:.25rem!important}
.ms-2{margin-left:.5rem!important}
.ms-3{margin-left:1rem!important}
.ms-4{margin-left:1.5rem!important}
.ms-5{margin-left:3rem!important}

.me-0{margin-right:0!important}
.me-1{margin-right:.25rem!important}
.me-2{margin-right:.5rem!important}
.me-3{margin-right:1rem!important}
.me-4{margin-right:1.5rem!important}
.me-5{margin-right:3rem!important}

.mx-0{margin-left:0!important;margin-right:0!important}
.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}
.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}
.mx-3{margin-left:1rem!important;margin-right:1rem!important}
.mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}
.mx-5{margin-left:3rem!important;margin-right:3rem!important}

.my-0{margin-top:0!important;margin-bottom:0!important}
.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}
.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}
.my-3{margin-top:1rem!important;margin-bottom:1rem!important}
.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}
.my-5{margin-top:3rem!important;margin-bottom:3rem!important}

/* Padding */
.p-0{padding:0!important}
.p-1{padding:.25rem!important}
.p-2{padding:.5rem!important}
.p-3{padding:1rem!important}
.p-4{padding:1.5rem!important}
.p-5{padding:3rem!important}

.pt-0{padding-top:0!important}
.pt-1{padding-top:.25rem!important}
.pt-2{padding-top:.5rem!important}
.pt-3{padding-top:1rem!important}
.pt-4{padding-top:1.5rem!important}
.pt-5{padding-top:3rem!important}

.pb-0{padding-bottom:0!important}
.pb-1{padding-bottom:.25rem!important}
.pb-2{padding-bottom:.5rem!important}
.pb-3{padding-bottom:1rem!important}
.pb-4{padding-bottom:1.5rem!important}
.pb-5{padding-bottom:3rem!important}

.ps-0{padding-left:0!important}
.ps-1{padding-left:.25rem!important}
.ps-2{padding-left:.5rem!important}
.ps-3{padding-left:1rem!important}
.ps-4{padding-left:1.5rem!important}
.ps-5{padding-left:3rem!important}

.pe-0{padding-right:0!important}
.pe-1{padding-right:.25rem!important}
.pe-2{padding-right:.5rem!important}
.pe-3{padding-right:1rem!important}
.pe-4{padding-right:1.5rem!important}
.pe-5{padding-right:3rem!important}

.px-0{padding-left:0!important;padding-right:0!important}
.px-1{padding-left:.25rem!important;padding-right:.25rem!important}
.px-2{padding-left:.5rem!important;padding-right:.5rem!important}
.px-3{padding-left:1rem!important;padding-right:1rem!important}
.px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}
.px-5{padding-left:3rem!important;padding-right:3rem!important}

.py-0{padding-top:0!important;padding-bottom:0!important}
.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}
.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}
.py-3{padding-top:1rem!important;padding-bottom:1rem!important}
.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}
.py-5{padding-top:3rem!important;padding-bottom:3rem!important}

/* Font sizes */
.fs-1{font-size:2.5rem!important}
.fs-2{font-size:2rem!important}
.fs-3{font-size:1.75rem!important}
.fs-4{font-size:1.5rem!important}
.fs-5{font-size:1.25rem!important}
.fs-6{font-size:1rem!important}

/* Font size aliases */
.fs-sm{font-size:.875rem!important}
.fs-md{font-size:1rem!important}
.fs-lg{font-size:1.125rem!important}

/* Flexbox utilities */
/* Display */
.d-flex{display:flex!important}
.d-inline-flex{display:inline-flex!important}

/* Direction */
.flex-row{flex-direction:row!important}
.flex-row-reverse{flex-direction:row-reverse!important}
.flex-column{flex-direction:column!important}
.flex-column-reverse{flex-direction:column-reverse!important}

/* Wrap */
.flex-wrap{flex-wrap:wrap!important}
.flex-nowrap{flex-wrap:nowrap!important}
.flex-wrap-reverse{flex-wrap:wrap-reverse!important}

/* Justify content */
.justify-start{justify-content:flex-start!important}
.justify-end{justify-content:flex-end!important}
.justify-center{justify-content:center!important}
.justify-between{justify-content:space-between!important}
.justify-around{justify-content:space-around!important}
.justify-evenly{justify-content:space-evenly!important}

/* Align items */
.items-start{align-items:flex-start!important}
.items-end{align-items:flex-end!important}
.items-center{align-items:center!important}
.items-baseline{align-items:baseline!important}
.items-stretch{align-items:stretch!important}

/* Align content */
.content-start{align-content:flex-start!important}
.content-end{align-content:flex-end!important}
.content-center{align-content:center!important}
.content-between{align-content:space-between!important}
.content-around{align-content:space-around!important}
.content-stretch{align-content:stretch!important}

/* Align self */
.self-auto{align-self:auto!important}
.self-start{align-self:flex-start!important}
.self-end{align-self:flex-end!important}
.self-center{align-self:center!important}
.self-baseline{align-self:baseline!important}
.self-stretch{align-self:stretch!important}

/* Flex grow/shrink */
.flex-grow-0{flex-grow:0!important}
.flex-grow-1{flex-grow:1!important}
.flex-shrink-0{flex-shrink:0!important}
.flex-shrink-1{flex-shrink:1!important}
.flex-fill{flex:1 1 auto!important}

/* Order */
.order-first{order:-1!important}
.order-0{order:0!important}
.order-1{order:1!important}
.order-2{order:2!important}
.order-3{order:3!important}
.order-4{order:4!important}
.order-5{order:5!important}
.order-last{order:6!important}

/* Gap utilities (usa la misma escala de spacing) */
.gap-0{gap:0!important}
.gap-1{gap:.25rem!important}
.gap-2{gap:.5rem!important}
.gap-3{gap:1rem!important}
.gap-4{gap:1.5rem!important}
.gap-5{gap:3rem!important}
.gap-x-0{column-gap:0!important}
.gap-x-1{column-gap:.25rem!important}
.gap-x-2{column-gap:.5rem!important}
.gap-x-3{column-gap:1rem!important}
.gap-x-4{column-gap:1.5rem!important}
.gap-x-5{column-gap:3rem!important}
.gap-y-0{row-gap:0!important}
.gap-y-1{row-gap:.25rem!important}
.gap-y-2{row-gap:.5rem!important}
.gap-y-3{row-gap:1rem!important}
.gap-y-4{row-gap:1.5rem!important}
.gap-y-5{row-gap:3rem!important}


/* Comunes */
.text-white{color:#fff!important}
.text-black{color:#000!important}
.text-inherit{color:inherit!important}
.text-primary{color: var(--color-primary)}
.text-secondary{color: var(--color-secondary)}
.bold{font-weight: 800!important}


.bg-primary{
    background-color: var(--color-primary);
}
.anton{
    font-family: 'Anton', sans-serif;
}