* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    padding-top: 85px
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0
}

.container {
    --bs-gutter-x: 1.5rem;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x)*.5);
    padding-left: calc(var(--bs-gutter-x)*.5);
    margin-right: auto;
    margin-left: auto
}

.navbar {
    background-color: #1a1a2e;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
    padding: .15rem 1rem
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030
}

.navbar-brand {
    display: flex;
    align-items: center
}

.navbar-brand .logo-img {
    height: 80px;
    width: 80px;
    animation: slideLogo 6s ease-in-out infinite;
    will-change: transform
}

@keyframes slideLogo {
    0% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(-20px)
    }

    100% {
        transform: translateX(0)
    }
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
    transition: color .3s ease;
    position: relative
}

.nav-link.active,
.nav-link:hover {
    color: #60a5fa !important
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #60a5fa;
    transition: width .3s ease
}

.nav-link:hover::after {
    width: 100%
}

.navbar-collapse:not(.show) {
    display: none !important
}

.navbar-toggler {
    border: 0;
    padding: 0;
    width: 35px;
    height: 35px;
    position: relative;
    cursor: pointer;
    background: 0 0
}

.navbar-toggler:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
    border-radius: 4px
}

.navbar-toggler:focus:not(:focus-visible) {
    box-shadow: none;
    outline: 0
}

.navbar-toggler .hamburger-line {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform .3s ease, opacity .3s ease
}

.navbar-toggler .hamburger-line:first-child {
    transform: translate(-50%, calc(-50% - 8px))
}

.navbar-toggler .hamburger-line:nth-child(2) {
    transform: translate(-50%, -50%)
}

.navbar-toggler .hamburger-line:nth-child(3) {
    transform: translate(-50%, calc(-50% + 8px))
}

.navbar-toggler[aria-expanded=true] .hamburger-line:first-child {
    transform: translate(-50%, -50%) rotate(45deg)
}

.navbar-toggler[aria-expanded=true] .hamburger-line:nth-child(2) {
    transform: translate(-50%, -50%) scaleX(0);
    opacity: 0
}

.navbar-toggler[aria-expanded=true] .hamburger-line:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg)
}

.hero {
    position: relative;
    height: 90vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden
}

.hero .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .35);
    z-index: 1
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 20px;
    pointer-events: none
}

.hero .hero-content * {
    pointer-events: auto
}

.hero .h1-like {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .5);
    overflow-wrap: normal
}

.hero .p-like {
    font-size: 1.25rem;
    opacity: 1
}

.rain-char {
    display: inline-block;
    opacity: 0;
    will-change: transform, opacity;
    transform: translateY(-100px) translateX(var(--x));
    animation: rain-fall var(--duration) var(--delay) ease-in forwards;
    contain: layout style
}

@keyframes rain-fall {
    0% {
        opacity: 0;
        transform: translateY(-100px) translateX(var(--x))
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 1;
        transform: translateY(0) translateX(0)
    }
}

.carousel-section {
    padding: 60px 0;
    background-color: #f8f9fa
}

.carousel-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a2e;
    font-weight: 700
}

.carousel-container {
    min-height: 550px
}

.carousel-item a {
    display: block;
    text-decoration: none;
    color: inherit
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/9
}

.carousel-item .carousel-caption {
    background: rgba(26, 26, 46, .75);
    border-radius: 8px;
    padding: 15px 25px;
    bottom: 30px
}

@media (max-width:767px) {
    .carousel-item .carousel-caption {
        padding: 8px 12px;
        bottom: 10px
    }

    .carousel-item .carousel-caption h3 {
        font-size: 1rem;
        margin-bottom: 2px
    }

    .carousel-item .carousel-caption p {
        font-size: .8rem;
        margin-bottom: 0
    }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(26, 26, 46, .7);
    border-radius: 50%;
    padding: 25px
}

.page-header {
    background-color: #1a1a2e;
    color: #fff;
    padding: 60px 0 40px;
    text-align: center
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700
}

.page-content {
    padding: 40px 0
}

.page-content p {
    line-height: 1.7
}

.page-content--design {
    position: relative;
    padding: 100px 0;
    background-image: url('../img/diseñoweb2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .5);
    min-height: 500px;
    display: flex;
    align-items: center
}

.page-content--design .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, .55), rgba(0, 0, 0, .35));
    z-index: 1
}

.page-content--design .container {
    position: relative;
    z-index: 2
}

.page-content--design p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem
}

@media (min-width:768px) {
    .page-content--design {
        background-image: url('../img/diseñoweb2@2x.webp');
        min-height: 550px
    }
}

@media (min-width:1200px) {
    .page-content--design {
        background-image: url('../img/diseñoweb2@3x.webp');
        min-height: 600px
    }
}

.page-content--development {
    position: relative;
    padding: 100px 0;
    background-image: url('../img/desarrollo2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .5);
    min-height: 500px;
    display: flex;
    align-items: center
}

.page-content--development .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, .55), rgba(0, 0, 0, .35));
    z-index: 1
}

.page-content--development .container {
    position: relative;
    z-index: 2
}

.page-content--development p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem
}

@media (min-width:768px) {
    .page-content--development {
        background-image: url('../img/desarrollo2@2x.webp');
        min-height: 550px
    }
}

@media (min-width:1200px) {
    .page-content--development {
        background-image: url('../img/desarrollo2@3x.webp');
        min-height: 600px
    }
}

.page-content--maintenance {
    position: relative;
    padding: 100px 0;
    background-image: url('../img/mantenimiento2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .5);
    min-height: 500px;
    display: flex;
    align-items: center
}

.page-content--maintenance .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, .55), rgba(0, 0, 0, .35));
    z-index: 1
}

.page-content--maintenance .container {
    position: relative;
    z-index: 2
}

.page-content--maintenance p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem
}

@media (min-width:768px) {
    .page-content--maintenance {
        background-image: url('../img/mantenimiento2@2x.webp');
        min-height: 550px
    }
}

@media (min-width:1200px) {
    .page-content--maintenance {
        background-image: url('../img/mantenimiento2@3x.webp');
        min-height: 600px
    }
}

.page-content--hosting {
    position: relative;
    padding: 100px 0;
    background-image: url('../img/hospedaje2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .5);
    min-height: 500px;
    display: flex;
    align-items: center
}

.page-content--hosting .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, .55), rgba(0, 0, 0, .35));
    z-index: 1
}

.page-content--hosting .container {
    position: relative;
    z-index: 2
}

.page-content--hosting p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem
}

@media (min-width:768px) {
    .page-content--hosting {
        background-image: url('../img/hospedaje2@2x.webp');
        min-height: 550px
    }
}

@media (min-width:1200px) {
    .page-content--hosting {
        background-image: url('../img/hospedaje2@3x.webp');
        min-height: 600px
    }
}

.footer {
    background-color: #1a1a2e;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px
}

.btn-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #fff;
    color: #1a1a2e;
    text-decoration: none;
    transition: background-color .3s ease, transform .3s ease
}

.btn-x::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-color: #1a1a2e;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center
}

.btn-x:hover {
    background-color: #60a5fa;
    color: #fff;
    transform: scale(1.1)
}

.btn-x:hover::before {
    background-color: #fff
}

.btn-facebook {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #fff;
    color: #1a1a2e;
    text-decoration: none;
    transition: background-color .3s ease, transform .3s ease
}

.btn-facebook::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-color: #1a1a2e;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center
}

.btn-facebook:hover {
    background-color: #1877f2;
    color: #fff;
    transform: scale(1.1)
}

.btn-facebook:hover::before {
    background-color: #fff
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 9999;
    padding: 8px 16px;
    background: #3b82f6;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 4px 0
}

.skip-link:focus {
    top: 0;
    outline: 2px solid #fff;
    outline-offset: 2px
}

.entrance {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease-out, transform .7s ease-out
}

.entrance.show {
    opacity: 1;
    transform: translateY(0)
}

.contact-form {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .1)
}

.contact-form .form-label {
    font-weight: 600;
    color: #1a1a2e
}

.contact-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px 15px;
    transition: border-color .3s ease, box-shadow .3s ease
}

.contact-form .form-control:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 .2rem rgba(96, 165, 250, .25)
}

.contact-form .form-control.is-invalid {
    border-color: #b02a37
}

.contact-form .btn-primary {
    background-color: #1a1a2e;
    border-color: #1a1a2e;
    padding: 12px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color .3s ease
}

.contact-form .btn-primary:hover {
    background-color: #60a5fa;
    border-color: #60a5fa
}

.alert-success-custom {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    padding: 15px 20px;
    text-align: center;
    font-weight: 500
}

.alert-error-custom {
    background-color: #f8d7da;
    color: #58151c;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    padding: 15px 20px;
    text-align: center;
    font-weight: 500
}

@media (max-width:992px) {
    .carousel-container {
        min-height: 400px
    }
}

@media (max-width:768px) {
    .hero .h1-like {
        font-size: 2.5rem
    }

    .page-header h1 {
        font-size: 2rem
    }
}

@media (max-width:576px) {
    .carousel-container {
        min-height: 250px
    }

    .hero .h1-like {
        font-size: 2rem
    }

    .page-header h1 {
        font-size: 1.75rem
    }
}

@media (max-width:400px) {
    .hero .h1-like {
        font-size: 1.5rem
    }
}

.text-danger {
    color: #b02a37 !important
}

.invalid-feedback {
    color: #b02a37
}

.carousel-indicators button {
    width: 32px !important;
    height: 32px !important;
    margin: 0 6px !important;
    border-radius: 50%;
    border: 2px solid transparent;
    background-clip: content-box;
    padding: 6px
}

.carousel-indicators button.active {
    border-color: #1a1a2e
}

.carousel-pause-btn {
    position: absolute;
    bottom: 10px;
    right: 60px;
    z-index: 5;
    width: 36px;
    height: 36px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: rgba(26, 26, 46, .7);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s
}

.carousel-pause-btn:hover {
    background: rgba(26, 26, 46, .9)
}

.carousel-pause-btn:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 4px
}

.pause-icon {
    display: block;
    width: 0;
    height: 0
}

[aria-pressed=false] .pause-icon {
    border-left: 12px solid #fff;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent
}

[aria-pressed=true] .pause-icon {
    border-left: 4px solid #fff;
    border-right: 4px solid #fff;
    width: 12px;
    height: 14px;
    background: none;
    border-top: 0;
    border-bottom: 0
}

.nav-link:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 4px;
    border-radius: 4px
}

@media (prefers-reduced-motion:reduce) {
    .navbar-brand .logo-img {
        animation: none
    }

    .entrance {
        opacity: 1;
        transform: none;
        transition: none
    }

    .rain-char {
        opacity: 1;
        transform: none;
        animation: none
    }
}