/* GLOBAL */
:root {
	--negro: #000;
	--amarillo-mostaza: #D9B206;
	--amarillo-mostaza-oscuro: #C9A400;
	--amarillo-mostaza-claro: #F7DC6F;
	--amarillo-mostaza-neutro: #aa8a07;
	--monserrat: "Montserrat", Helvetica, Arial, sans-serif;
}

.monserrat {
	font-family: var(--monserrat) !important;
	font-weight: 700 !important;
}

.color-mostaza {color: var(--amarillo-mostaza);}

* {
	margin: 0;
	padding: 0;
}

/* FIN GLOBAL */

/* SUMMERNOTE */
.note-dropdown-menu {
    max-height: 200px; /* Limita la altura del menú */
    overflow-y: auto; /* Agrega scroll vertical */
}

/* NAV CSS */
.navbar {
	position: fixed !important;
	top: 0;
	z-index: 20;
	width: 100%;
	background-color: rgba(0, 0, 0, 0) !important;
	transition: all 0.5s ease;
}

.navbar-brand > div > img {
	width: 110px;
	height: 90px;
	pointer-events: none;
}

.navbar.scrolled {
	background-color: black !important;
}

@media (max-width: 768px) {
	.navbar-brand > div > img {
		width: 60px;
		height: 50px;
	}
}

/* LOGO NAV */
.logo-nav {
	width: 100px;
	height: 100px;
	pointer-events: none !important;
}



/* NAV LINKS */

.dropdown-item:focus, .dropdown-item:hover {
	background-color: var(--negro) !important;
}

.nav-link:focus {
	background-color: var(--negro) !important;
}

.navbar-nav .nav-link {
	color: white !important;
	font-weight: bold;
}

.navbar-nav .nav-link:hover {
	color: var(--amarillo-mostaza-oscuro) !important;
}

ul.dropdown-menu > .dropdown-item .nav-link {color: var(--negro) !important;}
ul.dropdown-menu > .dropdown-item .nav-link:hover {
	color: var(--amarillo-mostaza-oscuro) !important;
}

ul.dropdown-menu {
	background-color: var(--negro) !important;
}



/* BRAND CSS */
.brand-text {
	font-family: var(--monserrat);
	color: transparent;
	transition: -webkit-text-stroke 0.5s ease, color 0.5s ease;
}

.brand-text > h3,h5 {
	transition: font-size 0.3s ease;
}

.brand-text.scrolled {
	-webkit-text-stroke: 0px;
	color: white;
}

.brand-text.scrolled:hover {
	color: rgb(217, 178, 6);
}

@media (max-width: 480px) {
	.brand-text h3 {font-size: 16px ;}
	.brand-text h5 {font-size: 12px ;}
}

/* HEADER CARRUSEL CSS */
#headerCarrusel {
	margin: 0;
	padding: 0;
	height: 100vh;
	overflow: hidden;
}

.carousel-inner {
	height: 100vh;
	display: block;
	overflow: hidden;
}

.carousel-item img {
	height: 100% !important;
	width: 100% !important;
	object-fit: cover !important;
	filter: brightness(30%) !important;
	pointer-events: none !important;
}

/* Titulo Carrusel */
.carousel-title {
	position: absolute;
	font-family: var(--monserrat);
	top: 40%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	text-align: center;
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.carousel-title h1 {font-size: 48px;}
.carousel-title p {font-size: 24px;}

/* MQ Dispositivos 768px */
@media (max-width: 768px) {
	.carousel-title h1 {font-size: 36px;}
	.carousel-title p {font-size: 18px;}
}

/* MQ Dispositivos 576px */
@media (max-width: 576px) {
	.carousel-title h1 {font-size: 24px;}
	.carousel-title p {font-size: 12px;}
}

/* CONTENIDO PRINCIPAL CSS */

/* TITLE MONSERRAT */
.important-title {
    font-family: var(--monserrat) !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
}

/* CORREO AJUSTADO CARTAS */
.custom-hover {
	background-color: #f8f9fa; 
	border-radius: 10px;
	text-align: center;
	border: 1px solid #efeaea;
	transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.custom-hover:hover {
	background-color: #d2dae2;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.correo-ajustado {
	word-wrap: break-word !important;
	overflow-wrap: break-word !important;
	max-width: 100% !important;
}

/* SOCIAL BUTTON */

.social-buttons a {
	border-radius:50%;
	width: 40px;
	height: 40px;
	background-color: var(--negro);
	transition: all 0.3s ease; 
	font-size: 1.2rem; 
	color: white !important;
	text-decoration: none !important;
	outline: none !important;
}

.social-buttons a:focus {
	transition: all .3s ease;
	color: white !important;
}

.social-buttons a:hover {
	transition: all 0.3s ease; 
	background-color: var(--amarillo-mostaza-oscuro) !important;
	transform: scale(1.2);
}
.social-buttons a:hover i {
	transition: all 0.3s ease; 
	transform: scale(1.1);
	color: white !important;
}

/* TEXTO EDITABLE */
.editable-section {
	position: relative; /* Para colocar el lápiz en una esquina */
	overflow: visible;
	border-radius: 5px;
	padding: 5px;
	margin-bottom: 20px;
}

.edit-icon {
	position: absolute; /* Posiciona el lápiz en la esquina */
	top: 8px;
	right: -25px;
	width: 24px;
	height: 24px;
	cursor: pointer;
	color: var(--amarillo-mostaza-claro);
	font-size: 1.5rem;
	z-index: 2;
}

.edit-icon:hover {
	color: var(--amarillo-mostaza-oscuro);
}

/* BOTONES MOSTAZA FORM */
.btn-main {
    background-color: var(--amarillo-mostaza-neutro);
    color: white;
    padding: 10px;
    text-align: center;
	border: 2px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
    min-width: 100px;
	max-width: 150px;
}

.btn-main:hover {
    background-color: var(--amarillo-mostaza-oscuro);
    /* color: white !important; */
}


/* CSS PAGINACIÓN */
.page-link {
	color: var(--negro) !important;
}

.active>.page-link, .page-link.active {
	background-color: var(--amarillo-mostaza) !important;
	border-color: var(--amarillo-mostaza) !important;
}

/* Hover Departamentos */
.hover-departamentos {transition: background-color 0.4s ease, box-shadow 0.4s ease;}

.hover-departamentos:hover {
	background-color: #ffffff;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
}

/* PDF CSS */
.modal-body {
    overflow: auto;
}

.modal-content {
    overflow: hidden;
}

.modal-dialog {
    max-width: 95%;
    margin: auto;
}

canvas[id^="pdf-canvas"] {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    canvas[id^="pdf-canvas"] {
        width: 100% !important;
        height: auto !important;
    }

    .modal-dialog {
        margin: 1rem auto;
        width: 95%;
    }

    .modal-body {
        padding: 10px;
    }

    .modal .btn {
        font-size: 0.9rem;
        padding: 6px 10px;
    }
}
/* CSS CARD DOCS */
.card-docs {
    position: relative;
    transition: background-color 0.3s ease-in-out;
}

.card-docs:hover {
    background-color: var(--amarillo-mostaza); /* La card se vuelve amarilla */
}

.icono-ojo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: white;
    opacity: 0; /* Oculto inicialmente */
    transition: opacity 0.3s ease-in-out;
}

.card-docs:hover .icono-ojo {
    opacity: 1; /* Aparece el icono de ojo en el centro */
}

.card-docs img {
	height: 250px;
	object-fit: cover;
	border-radius: 5px;
	transition: opacity 0.3s ease-in-out;
}

.card-docs:hover img {
    opacity: 0; /* La imagen desaparece al hacer hover */
}

.card-docs-title {
	height: 75px;
}

/* FLOATING SOCIAL WIDGET */
.float-icons {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 9999;
}
.float-btn {
    display: flex;
    align-items: center;
    gap: 0;
    width: 46px;
    height: 46px;
    padding: 0 0 0 11px;
    border-radius: 0 23px 23px 0;
    color: #fff;
    font-size: 1.25rem;
    text-decoration: none;
    box-shadow: 2px 2px 12px rgba(0,0,0,.25);
    transition: width .35s ease, box-shadow .35s ease, gap .35s ease;
    overflow: hidden;
    white-space: nowrap;
}
.float-btn:hover {
    width: 175px;
    gap: 10px;
    box-shadow: 4px 4px 20px rgba(0,0,0,.35);
    color: #fff;
    text-decoration: none;
}
.float-btn.instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888,#8a3ab9); }
.float-btn.facebook { background: #1877f2; }
.float-btn .btn-label {
    font-size: .82rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity .3s ease .1s;
}
.float-btn:hover .btn-label { opacity: 1; }

