/*
Theme Name: Denocheydia Child Theme
Theme URI: http://www.denocheydia.com
Template: oceanwp
Author: moodoraman
Author URI: http://www.denocheydia.com
Description: Child theme.
Version: 1.0.1706177729
Updated: 2024-01-25 11:15:29

*/

/*==  by Denocheydia  ==*/


/* header */
.ekit-heading__description li{margin-left: 40px!important; margin-bottom: 20px!important; list-style-type: circle; font-size: 18px; font-weight: 200;}

/*menu*/
.elementor-widget-container h3 {
  font-family: "Rajdhani", Sans-serif;
  font-size: 2em; line-height: 1em;
  font-weight: 700;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  color: #1d1d37;
}




/* pages */
.widget-title::after {
display:none!important;
}
.sidebar-box .widget-title, .sidebar-box.widget_block .wp-block-heading {
	color: #2a7d2e!important;
}

/*migas de pan*/
.eael-breadcrumbs {
  display: inherit;
}

/*blog*/
.single-post .thumbnail{display: none;}
.elementor-post__text {
  text-align:left;
}

input[type="button"], input[type="reset"], input[type="submit"], button[type="submit"], .button {
  background-color: #001e90!important;
  color: #fff;
  font-size: 12px;
}



/*formulario de contacto*/
/*formulario*/
 .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900;
	 background-color: #ffb900;
	 padding: 20px; border-radius: 0px;
	 text-align: center;
	 font-weight: 700;
} 
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
	background-color: #46b450;
	 padding: 20px; border-radius: 0px;
	 text-align: center;
	 font-weight: 700;
	color: #fff;
}

  
/*
Formulario Contact Form 7 a 2 columnas responsive
*/
#responsive-form{
	max-width:600px /*-- change this to get your desired form width --*/;
	margin:0 auto;
        width:100%;
}
.form-row{
	width: 100%;
}
.column-half, .column-full{
	float: left;
	position: relative;
	padding: 0.65rem;
	width:100%;
	-webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box
}
.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

input[type="email"], input[type="number"], input[type="password"], input[type="reset"], input[type="search"], input[type="tel"], input[type="text"], input[type="url"], select, textarea {
  color: #666;
  padding: .75em;
  height: auto;
  border-width: 0px;
  border-style: solid;
  border-color: var(--ast-border-color);
  border-radius: 2px;
  background:#fff;
  box-shadow: none;
  box-sizing: border-box;
  transition: all .2s linear;
	border-bottom: 1px solid var(--ast-border-color);
}

form textarea {
  min-height: inherit;
}

input[type="submit"]{
  background-color: #131b3a !important;
  color: #fff;
  font-size: 12px;
	border:none!important;
}

.clearfix h4{ font-size: 0.9em; margin: 0; margin-left: 25px; padding-top: 20px;}
/**---------------- Media query ----------------**/
@media only screen and (min-width: 48em) { 
	.column-half{
		width: 50%;
	}
}


/* maquetación de la historia */
/* ===== ESTRUCTURA BASE ===== */
.historia ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 1100px;
  margin-inline: auto;
	text-align: left;
}

.historia ul::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: #167baa;
  transform: translateX(-50%);
  z-index: 0;
}

/* ===== TARJETAS ===== */
.historia li {
  position: relative;
  width: 50%;
  padding: 25px 40px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  margin-bottom: 40px;
  transition: all .3s ease;
}

.historia li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Alternancia izquierda/derecha */
.historia li:nth-child(odd) {
  left: 0;
  text-align: left;
}

.historia li:nth-child(even) {
  left: 50%;
}

/* Círculo con conector */
.historia li::before {
  content: '';
  position: absolute;
  top: 30px;
  right: -10px;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 3px solid #167baa;
  border-radius: 50%;
  z-index: 2;
}

.historia li:nth-child(even)::before {
  left: -10px;
  right: auto;
}

/* Año destacado dentro del texto (opcional) */
.historia li strong {
  color: #167baa;
  font-weight: 600;
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

/* ===== RESPONSIVE ===== */

/* --- Tablets verticales y móviles (<768px) --- */
@media (max-width: 768px) {
	
  .historia ul {
    padding-left: 30px;
  }

  /* Línea al lado izquierdo */
  .historia ul::before {
    left: 25px;
    width: 2px;
	  
  }

  /* Todas las tarjetas en la misma línea */
  .historia li {
    width: 100%;
    left: 0 !important;
    text-align: left;
    padding: 20px 25px 20px 45px;
    margin-bottom: 25px;
    background: #fff;
  }

  /* Círculo indicador alineado con la línea */
  .historia li::before {
    left: -10px;
    right: auto;
    top: 25px;
    width: 14px;
    height: 14px;
  }

  /* Eliminar efectos innecesarios */
  .historia li:hover {
    transform: none;
  }
}

/* --- Móviles pequeños (<480px) --- */
@media (max-width: 480px) {
  .historia ul {
    padding-left: 25px;
  }

  .historia li {
    padding: 18px 20px 18px 40px;
    font-size: 15px;
  }

  .historia li strong {
    font-size: 16px;
  }

  .historia li::before {
    left: 2px;
  }
}


/* Responsive */

@media only screen and (max-width: 1340px){

	
}

@media only screen and (max-width: 1080px){

	
}

@media (max-width: 1024px) {
	
}



@media only screen and (max-width: 1080px){
	
	
}

@media only screen and (max-width: 959px){
	
	
}

@media only screen and (max-width: 767px){

	
}

@media only screen and (max-width: 480px){
	

	
}




















