/*
Theme Name: Centro de Conciliación Notaría 17
Author: storydata
Description: Tema personalizado basado en Tailwind CSS para el Centro de Conciliación.
Version: 1.1
*/

:root {
	--primary-color: #006580;
	--secondary-color: #F4A261;
	--text-color: #333333;
	--light-bg: #F8F9FA;
	--white: #FFFFFF;
}

body {
	font-family: 'Montserrat', sans-serif;
	color: var(--text-color);
	line-height: 1.6;
	
}

.bg-primary {
	background-color: var(--primary-color);
}

.text-primary {
	color: var(--primary-color);
}

.bg-secondary {
	background-color: var(--secondary-color);
}

.text-secondary {
	color: var(--secondary-color);
}

.btn-primary {
	background-color: #fff;
	color: #006580;
	padding: 12px 24px;
	font-weight: 600;
	border-radius: 6px;
	transition: all 0.3s ease;
	display: inline-block;
}

.btn-primary:hover {
	background-color: rgba(3, 97, 129, .8);
	transform: translateY(-2px);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	color: #fff;
}

.btn-cta {
	color: #fff;
	background: #f04e23;
	padding: 12px 24px;
	font-weight: 600;
	border-radius: 6px;
	transition: all 0.3s ease;
	display: inline-block;
	cursor: pointer;
}

.btn-cta:hover {
	background: #fff;
	color: #f04e23;
	transform: translateY(-2px);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shadow-custom {
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hero-section {
	background-image: linear-gradient(rgba(0, 101, 128, 0.6), rgba(0, 101, 128, 0.6)), url('https://notaria17bogota.com/wp-content/uploads/2024/12/centro-de-conciliacion-1.jpg');
	background-size: cover;
	background-position: center;
	padding-top: 80px !important;
}

.benefit-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	background: #006580;
}

.benefit-card h3,
.benefit-card p {
	color: #fff;
}

.benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.conciliator-card {
	transition: transform 0.3s ease;
}

.conciliator-card:hover {
	transform: scale(1.03);
}

input:focus,
textarea:focus,
select:focus {
	border-color: var(--primary-color);
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 109, 119, 0.25);
}

.bg-blue-50 {
	--tw-bg-opacity: 0.6;
	background-color: rgba(0, 101, 128, var(--tw-bg-opacity));
	color: #fff;
	font-weight: 900;
}

.bg-gray-51 {
	--tw-bg-opacity: 0.5;
	background-color: rgba(0, 101, 128, var(--tw-bg-opacity));
}

/* Checkmark animation */
@keyframes checkmark {
	0% {
		transform: scale(0);
		opacity: 0;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.checkmark {
	animation: checkmark 0.3s ease-in-out forwards;
}

/* Progress bar */
.progress-container {
	width: 100%;
	background-color: #e0e0e0;
	border-radius: 4px;
	overflow: hidden;
}

.progress-bar {
	width: 0;
	height: 8px;
	background-color: var(--primary-color);
	border-radius: 4px;
	transition: width 0.5s ease;
}

/* Urgency indicator */
.urgency-indicator {
	background-color: #fef3c7;
	border-left: 4px solid #f59e0b;
}

/* Trust badges */
.trust-badge {
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.trust-badge:hover {
	opacity: 1;
}

/* Form label animation */
.form-group {
	position: relative;
	margin-bottom: 1.5rem;
}

.form-label {
	position: absolute;
	left: 10px;
	top: 14px;
	color: #6b7280;
	pointer-events: none;
	transition: 0.2s all ease-in-out;
}

.form-control:focus~.form-label,
.form-control:not(:placeholder-shown)~.form-label {
	top: -10px;
	left: 5px;
	font-size: 12px;
	color: var(--primary-color);
	background-color: white;
	padding: 0 5px;
}

.bg-verde {
	background: #006580;
}

.menu-cc li a:hover {
	color: rgba(136, 176, 190, 1) !important;
}

.menu-cc li .btn-primary:hover {
	background-color: rgba(136, 176, 190, 1) !important;
	color: #ffffff !important;
}

.btn-link-footer:hover {

	color: rgba(136, 176, 190, 1) !important;
}
.google-map-cc iframe {
    display: block;
    overflow: hidden;
    border-radius: 15px;
}

/* Aseguramos que el header sea visible y no corte el menú móvil */
header#masthead {
    background-color: #ffffff; /* Asegúrate de que tenga fondo */
    overflow: visible !important; 
    transition: none !important; /* Quitamos transiciones para que no haya lag en Chrome */
}

/* Forzamos que los contenedores de Elementor también dejen ver el menú */
header#masthead .elementor-section, 
header#masthead .elementor-container {
    overflow: visible !important;
}
