* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    font-size: 5em;
}

h2 {
    font-size: 2.7em;
}

h3 {
    font-size: 2em;
}

p {
    font-size: 1.25em;
}

ul {
    list-style: none;
}

.color-acento {
    color: rgb(234, 132, 13);
}

.color-acento2 {
    color: rgb(26, 48, 85);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Garet", sans-serif;
    background-color: rgb(240, 240, 240);
}

button {
    display: inline-block;
    margin: 15px;
    padding: 15px 30px;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
    text-decoration: none;
    color: rgb(219, 123, 13);
    background: transparent;
    cursor: pointer;
    transition: ease-out 0.5s;
    border: 2px solid rgb(219, 123, 13);
    border-radius: 10px;
    box-shadow: inset 0 0 0 0 rgb(219, 123, 13);
}

button:hover {
    color: white;
    box-shadow: inset 0 -100px 0 0 rgb(219, 123, 13);
}

button:active {
    transform: scale(0.9);
}

.container {
    max-width: 1400px;
    margin: auto;
}

#map {
    height: 450px;
    width: 100%;

}

/* ---------- HEADER ---------- */

header {
    background-color: rgb(26, 48, 85);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
}

header .logo {
    margin: 0;
    padding: 25px 30px;
}

header img {
    width: 116.4px;
    height: 61.2px;
}

header .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

header nav {
    flex-direction: row;
    padding-right: 20px;
    padding-top: 50px;
}

header a {
    color: rgb(241, 241, 241);
    padding: 5px 15px;
    text-decoration: none;
    font-weight: bold;

}

header a:hover {
    color: rgb(234, 132, 13);
}



/* ------- titulos -------  */

.titulo-asimetrico {
    position: relative;
    background-image: url(../IMG/Deco/Azul.jpg);
    /* color de fondo */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    /* color del texto */
    padding: 225px;
    /* espacio interno alrededor del texto */
    text-align: center;
    font-size: 25px;
    /* tamaño de texto */
    margin-top: 20vh;
    /* ajusta según sea necesario */
    margin-left: 0px;
    margin-right: 0px;
    clip-path: polygon(0 25%, 100% 0, 100% 75%, 0 100%);
    /* forma del fondo */
}

.titulo-asimetrico-2 {
    position: relative;
    background-image: url(../IMG/Deco/Naranjo.jpg);
    /* color de fondo */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    /* color del texto */
    padding: 225px;
    /* espacio interno alrededor del texto */
    text-align: center;
    font-size: 25px;
    /* tamaño de texto */
    margin-top: 5vh;
    /* ajusta según sea necesario */
    margin-left: 0px;
    margin-right: 0px;
    clip-path: polygon(0 25%, 100% 0, 100% 75%, 0 100%);
    /* forma del fondo */
}


/* ------- GALERIA -------  */

.galeria1 {
    display: flex;
    justify-content: center;
    color: rgb(241, 241, 241);
    text-align: center;
    padding: 150px 0px;
}

.card {
    width: 1400px;
    height: 700px;
    background: rgb(234, 132, 13, 0.65);
    overflow: auto;
    border: 3px solid rgb(234, 132, 13);
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.card::-webkit-scrollbar {
    width: 12px; /* Puedes ajustar el ancho de la barra de desplazamiento según tus necesidades */
}

.card::-webkit-scrollbar-thumb {
    background-color: #a1a1a1;
    border-radius: 20px;
    z-index: 2; 
}

.card::-webkit-scrollbar-track {
    margin: 15px; /* Ajusta según sea necesario */
}

.titlebar {
    background-color: #2e0043;
    width: 100%;
    height: auto;
    text-align: left;
    align-self: center;
    font-size: 10px;
}

.gallery-container {
    width: 80%;
    margin: 100px auto;
    display: grid;
    grid-template-columns: repeat(3, 33.33%);
    grid-template-rows: repeat(2, 300px);
}

.gallery-container .gallery-card {
    overflow: hidden
}

.gallery-container .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 15px;
}

.galeria2 {
    display: flex;
    justify-content: center;
    color: rgb(241, 241, 241);
    text-align: center;
    padding: 150px 0px;
}

.galeria2 .card {
    background: rgba(28, 45, 87, 0.65);
    border: 3px solid rgb(28, 45, 87);
}






/* ---------- BOTON DE WHATSAPP ---------- */

.container-wsboton {
    background-color: #2e6329;
    border: 1px solid #fff;
    position: fixed;
    z-index: 3;
    border-radius: 100%;
    bottom: 30px;
    right: 30px;
    padding: 25px;
    transition: ease 0.3s;
    animation: efecto 1.2s infinite;
}

.container-wsboton:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

.wsboton {
    width: 65px;
    transition: ease 1s;
}

@keyframes efecto {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.85);
    }

    100% {
        box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
    }
}



/* ---------- FOOTER ---------- */

.pie-pagina {
    width: 100%;
    background-color: rgb(26, 48, 85);
}

.pie-pagina .grupo-1 {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    padding: 45px 0px;
}

.pie-pagina .grupo-1 .box figure {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pie-pagina .grupo-1 .box figure img {
    width: 250px;
}

.pie-pagina .grupo-1 .box h2 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
}

.pie-pagina .grupo-1 .box p {
    color: #efefef;
    margin-bottom: 10px;
}

.pie-pagina .grupo-1 .red-social a {
    display: inline-block;
    text-decoration: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    margin-right: 10px;
    background-color: 054164;
    text-align: center;
    transition: all 300ms ease;
}

.pie-pagina .grupo-1 .red-social a:hover {
    color: #f98d00;
}

.pie-pagina .grupo-2 {
    background-color: rgb(21, 39, 70);
    padding: 15px 10px;
    text-align: center;
    color: #fff;
}

.pie-pagina .grupo-2 small {
    font-size: 15px;
}


i {
    cursor: pointer;
}

/* Modo pantalla completa */

::-webkit-media-controls {
    display: none !important;
}

::-webkit-media-controls-enclosure {
    display: none !important;
}

video:-webkit-full-screen {
    width: 100%;
    height: 100%;
}

.video-fullScreen {
    width: 100%;
    height: 100%;
}

/* ->Modo pantalla completa */

.video-container {
    display: block;
    width: 50%;
    margin: auto;
}

.video-container .video {
    position: relative;
    background: #000;
    text-align: center;
}

.video-container .video video {
    display: block;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    cursor: pointer;
}

.video-fullScreen video {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
}

.video-container .video .video-controlls {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #fff;
    display: inline-block;
    width: 100%;
    background: rgba(255, 0, 0, 0.5);
    padding: 3px;
    display: none;
}

.video-fullScreen .video-controlls {
    padding: 17px;
}

/* Asignar medidas a cada árte del reproductor */

.video-container .video .video-controlls .playpause {
    display: inline-block;
    width: 7%;
    float: left;
    text-align: center;
}

.video-container .video .video-controlls .time {
    display: inline-block;
    width: 15%;
    float: left;
}


.video-container .video .video-controlls .reproduction-container {
    display: inline-block;
    width: 65%;
    float: left;
}

.video-container .video .video-controlls .video-options {
    display: inline-block;
    width: 13%;
    float: left;
}

/* ->Asignar medidas a cada árte del reproductor */

.video-container .video .video-controlls .playpause .pause {
    display: none;
}

/*TiempoDeReproduccion*/

.video-container .video .video-controlls .reproduction-container .reproduction-body {
    display: inline-block;
    width: 100%;
    height: 4px;
    background: #fff;
    margin-bottom: 2px;
    position: relative;
    cursor: pointer;
}

.video-container .video .video-controlls .reproduction-container .reproduction-body .time-globe {
    position: absolute;
    top: -25px;
    left: 0;
    transform: translateX(-50%);
    font-size: 10px;
    background: #fff;
    color: #000;
    border-radius: 5px;
    padding: 4px;
    display: none;
}

.video-container .video .video-controlls .reproduction-container .reproduction-body .reproduction-played {
    height: 4px;
    background: #000;
    width: 0;
}

.video-container .video .video-controlls .reproduction-container .reproduction-body .circle-indicator {
    position: absolute;
    top: 0;
    margin-top: -6px;
    left: 0;
    transform: translateX(-50%);
    display: inline-block;
    background: #040552;
    border-radius: 100%;
    border: 1px solid #000;
    height: 15px;
    width: 15px;
    cursor: pointer;
}

/*->TiempoDeReproduccion*/

/*Volume*/

.video-container .video .video-controlls .video-options .volume {
    position: relative;
}

.video-container .video .video-controlls .video-options .volume .volume-container {
    position: absolute;
    bottom: 25px;
    right: 0;
    height: 100px;
    width: 50px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    display: none;
}

.video-container .video .video-controlls .video-options .volume .volume-container .volume-body {
    display: inline-block;
    width: 4px;
    height: 100%;
    background: #fff;
    margin-bottom: 2px;
    position: relative;
    cursor: pointer;
}

.video-container .video .video-controlls .video-options .volume .volume-container .volume-body .time-globe {
    position: absolute;
    bottom: 100%;
    left: 15px;
    transform: translateY(50%);
    font-size: 10px;
    background: #fff;
    color: #040059;
    border-radius: 5px;
    padding: 4px;
    display: none;
}

.video-container .video .video-controlls .video-options .volume .volume-container .volume-body .volume-actual {
    position: absolute;
    bottom: 0;
    height: 100%;
    background: #040059;
    width: 4px;
}

.video-container .video .video-controlls .video-options .volume .volume-container .volume-body .circle-indicator {
    position: absolute;
    bottom: 100%;
    transform: translateY(50%);
    display: inline-block;
    background: #040059;
    border-radius: 100%;
    border: 1px solid #000;
    height: 15px;
    width: 15px;
    margin-left: -7px;
    cursor: pointer;
}

/* ->Volume*/

/*Configuracion*/
.video-container .video .video-controlls .video-options .volume,
.video-container .video .video-controlls .video-options .settings,
.video-container .video .video-controlls .video-options .full-screen {
    display: inline-block;
    width: 33.33333333333333%;
    float: left;
    position: relative;
}

.video-container .video .video-controlls .video-options .settings .settings-container {
    position: absolute;
    bottom: 25px;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100px;
    display: none;
}

.video-container .video .video-controlls .video-options .settings .settings-container .setting-option {
    display: inline-block;
    width: 100%;
    float: left;
    padding: 10px;
    cursor: pointer;
}

.video-container .video .video-controlls .video-options .settings .settings-container .setting-option:hover,
.video-container .video .video-controlls .video-options .settings .settings-container .setting-option:active,
.video-container .video .video-controlls .video-options .settings .settings-container .setting-option.active {
    background: rgba(0, 29, 161, 0.5);
}

.video-container .video .video-controlls .video-options .settings .settings-container .setting-option input {
    float: left;
}

/*->Configuracion*/

/* Big Icon */

.video-container .video .big-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-container .video .big-icon .center-parent {
    display: table;
    width: 100%;
    height: 100%;
    color: #fff;
}

.video-container .video .big-icon .center-parent .center-children {
    display: table-cell;
    vertical-align: middle;
}

.video-container .video .big-icon .center-parent .center-children .icon-container-parent {
    margin: auto;
    width: 80px;
    height: 80px;
    border: 2px solid #fff;
    display: table;
    text-align: center;
    border-radius: 100%;
}

.video-container .video .big-icon .center-parent .center-children .icon-container-parent .icon-container-children {
    display: table-cell;
    vertical-align: middle;
    font-size: 30px;
}

/* ->Big Icon */


/* ---------- CONFIGURACIÓN MODO PANTALLA COMPLETA (MONITOR) ---------- */

@media (max-width: 720px) {



    /* ---------- HEADER ---------- */

    header {
        position: relative;
        transition: none;
        justify-content: flex-start;
        width: auto;
    }

    header .logo {
        transition: none;
        justify-content: flex-start;
        width: auto;
    }

    header .container {
        flex-direction: column;
        align-items: center;
    }

    header nav {
        flex-direction: column;
        text-align: center;
        padding-bottom: 25px;
        padding-top: 5px;
    }



    /* ---------- BOTON DE WHATSAPP ---------- */

    .wsboton {
        width: 45px;
    }



    /* ---------- FOOTER ---------- */

    .pie-pagina .grupo-1 {
        width: 90%;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
        padding: 35px 0px;
    }



    /* ---------- titulos ---------- */

    .titulo-asimetrico {
        padding: 150px;
        font-size: 20px;
        margin-top: 10vh;
    }
    
    .titulo-asimetrico-2 {
        padding: 150px;
        font-size: 20px;
        margin-top: 10vh;
    }


}