:root {
    --dell-blue: #016DFB;
    --dell-dark-blue: #1C1D84;
    --dell-light-gray: #f4f4f4;
    --text-dark: #222222;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* Evitar desbordamiento de texto */
* {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

header.site-header {
    background-color: #ED1C24;
    border-bottom: solid #222222 3px;
    width: 100%;
    padding: 10px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

/* Navbar */
.navbar {
    transition: all 0.4s ease;
    background-color: rgb(237, 28, 35) !important;
    padding: 20px 0;
}

.navbar.scrolled {
    background-color: rgb(237, 28, 35) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    padding: 2px 0;
    border-bottom: solid #222222 3px;
}

.filter-white {
    filter: brightness(0) invert(1);
}
.pie-foto{
    font-size: 10px;
    color: grey;
}
/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
}

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

.bg-dell-blue {
    background-color: var(--dell-blue) !important;
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.mouse::after {
    content: '';
    width: 4px;
    height: 8px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: mouseScroll 2s infinite;
}

@keyframes mouseScroll {
    0% {
        opacity: 0;
        top: 10px;
    }

    50% {
        opacity: 1;
        top: 20px;
    }

    100% {
        opacity: 0;
        top: 25px;
    }
}

/* Components */
.divider-center {
    width: 60px;
    height: 4px;
    background: var(--dell-blue);
    margin: 20px auto;
}

.hover-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.img-wrapper {
    position: relative;
}

.img-wrapper img {
    transition: transform 0.5s ease;
}

.img-wrapper:hover img {
    transform: scale(1.05);
}

/* Accordion Customization */
.custom-accordion .accordion-item {
    border: 1px solid #eee;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--dell-blue);
    color: white;
}

.custom-accordion .accordion-button::after {
    filter: grayscale(1) brightness(2);
}

/* Buttons */
.btn-primary {
    background-color: var(--dell-blue);
    border-color: var(--dell-blue);
}

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

/* Utilities */
.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.6rem !important;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero {
        min-height: 100vh;
        height: auto !important;
        padding: 60px 0;
    }
}