/** {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
body {
    font-family: Arial, sans-serif;
    background: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}*/

:root {
    --brand-color: #651c1d;
    --brand-second-color: #0075be;
    --white: #fefefe;
    --gray: #6c757d;
    --light-grey: #eaeaea;
    --light: #f8f9fa;
    --gray-dark: #343a40;
    --dark: #212529;
    --principal-color:#004481;
    --show: block;
    --hidden: none;
    --all-width: 100%;
    --box: inset -15.5em 0 0 0 #004481,inset 15.5em 0 0 0 #00448199;
    --backgroundtransparent: #0075be68;
    --box-two: inset -.1em 0 0 0 #004481,inset .1em 0 0 0 #00448199;
    --gray100: hsl(0,0%,100%);
    --gray70: hsl(0,0%,70%);
    --gray0: hsl(0,0%,0%);
    --background: linear-gradient(to left, #36D1DC99 0%, #fefefe59 100%);
/*  --background: linear-gradient(to left, #36D1DCc9, #36D1DC10);*/
    --solid-bground: linear-gradient(to right, #0075be 0%, #004481 100%);
}

::-webkit-scrollbar {
    display: none;
}

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

body {
    display: flex;
    flex-direction: column;
    font-family: "Roboto", system-ui, sans-serif;
    /*place-content: center;*/
    height: 100vh;
    justify-content: center;
}

.title {
    position: relative;
        text-align: center;
        margin-bottom: 50px;
        width: 100%;

    h1 {
        
        font-size: clamp(32px, 4vw, 42px);
        
    }

    p {
        display: block;
        font-size: 20px;
        color: hsl(0 1% 50% / .5);
    }

}

.slider-container {
    flex-grow: 2;
    position: relative;
    width: 350px;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    background: #2b2b2b99;
    justify-self: center;
    margin: 0 auto;
}
.slides {
    display: flex;
    transition: transform 0.4s ease-in-out;
    width: 100%;
    height: 100%;
}
.slide {
    min-width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
/* Botones de navegación */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    z-index: 10;
}
.prev { left: 10px; }
.next { right: 10px; }

/* Indicadores */
.dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}
.dot {
    width: 8px;
    height: 8px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    cursor: pointer;
}
.dot.active {
    background: #fff;
}

footer {
    flex-grow: 1;
    text-align: center;
    background-color: hsl(0 10% 10% / 0.8);
    height: 100px;
    /*gap: 2em;*/
    place-content: center;
    color: #fafafa;
    address {

        display: block;
        gap: 1em;
        div {
            margin: 10px 0;

            a {
                color: inherit;

                &:hover {
                    color: #2b2b2b;
                }
            }
        }
    }
}