/* --------------------------------------------------------------------------
   File: style.css
   Theme Name: Hello Elementor Cuzgow
   Template:   hello-elementor
   Theme URI:  https://github.com/cuzgow/hello-elementor-cuzgow
   Author:     Cuzgow
   Author URI: https://cuzgow.com/
   Description: Main stylesheet for the Hello Elementor Cuzgow child theme,
                containing all core styles and layout rules.
   Version:     1.1.0
   Requires at least: 6.0
   Tested up to:      6.8
   Requires PHP:      8.1
   License:     GNU General Public License v3 or later
   License URI: https://www.gnu.org/licenses/gpl-3.0.html
   Text Domain: hello-elementor-cuzgow
------------------------------------------------------------------------- */

/* Headings
------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
	color: 													var(--brand-color);
	line-height: 										var(--line-height-condensed);
	margin: 												0;
	font-stretch: 									var(--font-stretch-condensed);
	font-family: 										var(--font-family-headings);
	font-weight:                    var(--font-weight-bold);
	max-width: 											var(--heading-width);
	text-wrap: 											balance;
}

h1 {
	font-size: 											4.78rem;
	font-size: 											var(--font-size-h1);
}
h2{
	font-size: 											3.98rem;
	font-size: 											var(--font-size-h2);
}
h3{
	font-size: 											3.32rem;
	font-size: 											var(--font-size-h3);
}
h4{
	font-size: 											2.76rem;
	font-size: 											var(--font-size-h4);
}
h5{
	font-size: 											2.3rem;
	font-size: 											var(--font-size-h5);
}
h6{
	font-size: 											1.92rem;
	font-size: 											var(--font-size-h6);
}

/* Blockquote
------------------------------------------------------------------------ 
Layout    - Blockquote
						- p
							- span
*/

blockquote {
  background-color: var(--color-sat-4);													
  border-inline-start: 2em solid var(--color-light-2);
  padding: 1em;
  border-radius: .5em;
  color: var(--text-light);	
  max-width: 80vw;
  font-weight: var(--font-weight-bold);
  text-wrap: var(--text-wrap); /* lo dejamos como lo tenías */
}

blockquote::before {
  content: "\275D";
  font-size: 3em;
  padding-inline-end: 5px;
  vertical-align: bottom;
  color: currentColor;
}

blockquote::after {
  content: "\275E";
  font-size: 3em;
  padding-left: 5px;
  vertical-align: text-top;
  color: currentColor;

  display: block;        /* ahora ocupa toda la línea */
  text-align: right;     /* alinea la comilla al borde derecho */
  margin-top: .2em;      /* opcional, para separarla del texto */
}

blockquote > p {
  margin: 0;
  padding: 0;
  display: inline;
  font-size: .9em;
}

blockquote > p span {
  font-weight: var(--font-weight-bold);
  font-size: 1.1em;
  display: block;
  line-height: var(--line-height-condensed);
  margin: 1em;
}

blockquote cite {
  display: inline-block;
  font-style: italic;
}

blockquote:not(.blockquote-sin-fondo) {
  text-shadow: var(--text-shadow-dark);
}

@media only screen and (max-width: 801px) {
  blockquote {
    max-width: 100%;
    padding: 0 1em;
  }
}

/* Other blockquote block without bg color
------------------------------------------------------------ 
Layout    - Blockquote --- .blockquote-sin-fondo
            - p
              - span
*/
.blockquote-sin-fondo {
  color: var(--brand-color);
  background-color: transparent;
  box-shadow: none;
  border-inline-start: none;
  text-align: left;
}

.blockquote-sin-fondo > p {
  font-size: 1.2em;
  margin-inline-start: 1em;
  margin-block-end: 1em;
}


/* Media and objects
----------------------------------------------- */
video,
audio,
progress,
canvas {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

embed,
iframe,
object,
video {
  max-width: 100%;
  height: auto; /* keep proportions */
}

img {
  max-width: 100%;
  height: auto;
  display: block; /* prevents inline gap */
}

picture {
  display: block; 
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

figure {
  margin: 0 auto;
  margin-block-end: max(7%, 40px);
  max-width: 60vw;
  text-align: center;
}

figcaption {
  line-height: var(--line-height-condensed);
  color: var(--brand-color);
  font-family: var(--font-family-headings);
  font-size: var(--font-size-sub);
  font-weight: var(--font-weight-bold);
  text-align: center;
}

@media only screen and (max-width: 801px) {
  figure {
    max-width: 100%;
  }
}

/* Lists 
------------------------------------------------------------------------ */
ul, 
ol, 
dl {
  margin-block-end: 1.5em;
  padding-inline-start: 0;
}

ul, 
ol {													
  list-style-type: none; /* reset default markers */
}

li {															
  list-style-type: none; /* keep here too – Elementor safety */
  padding-block-end: 1.5em;
  max-width: var(--li-with);
  line-height: var(--line-height-condensed);
  margin-inline: auto;
}

/* Custom marker */
li::before {
  content: "\00B7";  /*middle dot */
  /*display: none;*/
  font-size: 1.5em;
  color: var(--brand-color);
  font-weight: var(--font-weight-bold);
  padding-inline-end: 0.3em;
  position: relative;
  top: 0.15em; /* stable alignment with text */
}

/* Prevent breaking Elementor editor layout */
.elementor-editor-element-settings.elementor-editor-container-settings li::before,
.elementor-editor-element-settings.elementor-editor-widget-settings li::before {
  content: "";
  padding: 0;
}

dt {
  font-weight: var(--font-weight-bold);
  color: var(--brand-color);   
  margin-block-end: 1.5em;
	font-size: var(--font-size-h6);
}

dd {
  padding: 1.5em;
  margin-inline-start: 2em;
  max-width: 85vw;
  text-align: justify;
  text-align-last: left;

  overflow-wrap: break-word;
  word-break: break-word;

  border-radius: .5em;
	-webkit-box-shadow: 
	-6px -6px 12px rgba(255, 255, 255, 0.6), /* light shadow top-left */
	 6px  6px 12px rgba(0, 0, 0, 0.15);     /* dark shadow bottom-right */
  box-shadow: 
	-6px -6px 12px rgba(255, 255, 255, 0.6), /* light shadow top-left */
	 6px  6px 12px rgba(0, 0, 0, 0.15);     /* dark shadow bottom-right */

}

@media only screen and (max-width: 1024px) {
  dd {
    max-width: 100%;
    margin-inline-start: 1em;
    padding: 1em;
  }
}

/* horizontal line
------------------------------------------------------------------------ */
hr {
	box-sizing: 									content-box; 
	height: 											0; 
	overflow: 										visible;
	border-width: 								0;
	border-collapse: 							collapse;
	border-top: 									3px solid currentColor;
	color: 												var(--color-sat-4);
	clear: 												both;
	margin: 											1em 0;
}

/* Details 
------------------------------------------------------------------------ */
/* Adaptado a elementor
details{
	display: 												block;
	margin-block-end: 							1.5em;
	overflow-x: 										hidden;
	overflow-y: 										hidden;
	overflow: 											hidden;
}*/
summary::-webkit-details-marker {    
	display: 												none;
}

/* Adaptado a elementor
summary{
	list-style: 										none;
}
*/

/* Adaptado a elementor
details > summary{
	display: 												block;
	position: 											relative;
	max-width: 											60vw;
	padding: 												1.5em;
	overflow: 											hidden;
	outline: 												none;
	z-index: 												10;
	text-shadow: 										var(--text-shadow);
	border-radius: 									.5em;
	background-color: 							var(--brand-color);
	margin-block-end: 							1em;
	cursor: 												pointer; 
	-webkit-user-select:						none;	
	-moz-user-select:								none;
	-ms-user-select:								none;
	user-select: 										none; 
	color:													var(--text-white);
	font-weight: 										var(--font-weight-bold);
}
*/

/* Adaptado a elementor
details:nth-of-type(odd)> summary{
	background: 										var(--color-sat-10);
	color: 													var(--text-white);
}

details:nth-of-type(even) > summary{
	background: 										var(--brand-color);
	color: 													var(--text-white);
}
*/
details + details > summary{
	margin-block-start: 						0;
}

/* Adaptado a elementor
details > summary::before{
	content: 												"×";
	color: 													currentColor;
	font-size: 											1.5em;
	position: 											absolute;
	transform: 											rotate(-45deg);
	top: 														20%;
	right: 													6%;
	transition: 										0.2s transform ease-in;
	font-weight: 										var(--font-weight-bold);
}

details[open] > summary:before {
	transform: 											rotate(90deg);
	transition: 										transform ease-in-out 1s;
}

*/

/*
details > summary > h3,
details > summary > h4{
	margin: 												0;
	padding: 												0;
}
*/
/*
details[open] > *:not(summary) { 
	color: 													var(--text-dark); 
}

details > *:not(summary) {
	z-index: 												1;
	color: 													transparent;
	overflow: 											hidden;
	animation: 											details-animation 1s ease-in;
	max-width: 											100%;
}*/

/* Adaptado a elementor
@-webkit-keyframes details-animation {
	0% {
		opacity: 										0;
		-webkit-transform: 					translateY(-100%);
		transform: 									translateY(-100%);
	}
	100%{
		opacity: 										1;
		-webkit-transform: 					translateY(0%);
		transform: 									translateY(0%);
	}
}

@keyframes details-animations {
	0% {
		opacity: 										0;
		-webkit-transform: 					translateY(-100%);
		transform: 									translateY(-100%);
	}
	100%{
		opacity: 										1;
		-webkit-transform: 					translateY(0%);
		transform: 									translateY(0%);
}
}

@media only screen and (max-width: 801px){
	details > summary {
		max-width: 									90%;
	}	
	details > summary::before{
		top: 												20%;
		right: 											10%;
	}
}
*/

/* oto model de Details con ul list*/
/*details ul > li::before{
	content: 											"\2023";
	color: 												var(--brand-color);
	vertical-align: 							sub;
	font-weight: 									var(--font-weight-bold);
	font-size: 										2em;
	padding-right: 								.3em;
}*/

/* Address
------------------------------------------------------------------------ */
address {
  text-align: right;
  margin-block-end: max(5%, 20px);
  font-size: var(--font-size-sub);
  overflow-wrap: break-word;
  word-break: break-word;
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-condensed);
}

address a::after {
  content: ""; /* prevent default decorations (tel/mailto) */
}

address > p {
  margin-block-end: .3em;
}

address a[href^="tel"]::after{
	content: 											"";
}

/* Specials font types
------------------------------------------------------------------------ */
dfn,
cite,
em,
i {
	font-style: 										italic;
}

code,
kbd,
samp {
	font-family: 										var(--font-family); 
	font-size: 											var(--font-size-sub);
}

b,
strong {
	font-weight: 										var(--font-weight-bold);
}

pre {
	font-family: 										var(--font-family);
	font-size: 											var(--font-size-sub);
	white-space: 										pre;
	overflow-x: 										auto;
}

abbr[title] {
border-bottom: 										none;
text-decoration: 									underline; 
text-decoration-style: 						dotted; 
letter-spacing: 									0.1em;
}

small {
	font-size: 											.8em;
}

sub,
sup {
	font-size: 											.6em;
	line-height:										0;
	position: 											relative;
	vertical-align:									baseline;
}


sub {
	bottom: 												-0.25em;
}

sup {
	top: 														-0.5em;
}

/* Block for name branding
------------------------------------------------------------------------ */ 
/*Layout - p
				- span (.branding)
*/
.branding {
	color: 										var(--brand-color);
	font-size: 								1.05em;
	letter-spacing: 					var(--letter-spacing-wide);
	padding-inline: 					0.08em;
	font-weight: 							var(--font-weight-bold);
} 


/* END ELEMENTS
------------------------------------------------------------------------
------------------------------------------------------------------------ */
/* LAYOUT
------------------------------------------------------------------------ 
------------------------------------------------------------------------ */
/* Bloque para SITE CONTENT revisar*** esto es antiguo
Layout 	- .site-main --> div
					- .content-area	--> div
						- .site-main --> main
							- article
								- .entry-content --> div
*/
.site-main,
main {
	margin: 0 auto;
  padding-inline: 10vw;
  /*padding-block-end: max(3%, 30px);*/
  /* padding-block-start: max(1%, 10px); */ /* optional */
  /* position: relative; */ /* enable if sidebar is added */
  /* clear: both; */ /* only needed if legacy floats exist */
  /* z-index: 999; */ /* remove unless stacking context is required */
}

@media only screen and (max-width: 1024px){
	.site-main,
	main{
		padding-inline: 													8vw;
	}
}


@media only screen and (max-width: 600px){
	.site-main,
	main{
		padding-inline: 													min(1.6rem, 5vw);
	}
}



/* Breadcrumbs
------------------------------------------------------------------------ */
.breadcrumb {
  font-size: var(--font-size-sub);
  margin-bottom: max(1%, 15px);
  text-align: left;
}

.breadcrumb a {
  border: none;
}

.breadcrumb a::before,
.breadcrumb a::after {
  content: none; /* safer reset */
}

/* END LAYOUT
------------------------------------------------------------------------
------------------------------------------------------------------------ */




/* for animations to apply in future */
/* @media (prefers-reduced-motion: reduce) {
	.btn {
		transition: none;
	}
} https://www.joshwcomeau.com/animation/css-transitions/ */



/* CTA AND FORMS BUTTONS
------------------------------------------------------------------------ 
------------------------------------------------------------------------ */
/**
	* This is for saffari and ios bug (input type = file)
	* 1. Correct the inability to style clickable types in iOS and Safari.
	* 2. Change font properties to `inherit` in Safari.
	*/
	::-webkit-file-upload-button {
		-webkit-appearance: 												button; /* 1 */
		font: 																			inherit; /* 2 */
	}

	button {
		-webkit-appearance: button;
		appearance: none;
	}

/* Button keyboard key color brand
-------------------------------------- 
Layout:   a.cta
          a.cta::after
*/
a.cta {
  position: relative;
  display: block;
  color: var(--text-light);
  text-shadow: var(--text-shadow-dark);
  font-stretch: var(--font-stretch-normal);
  letter-spacing: var(--letter-spacing-wide);
  font-family: var(--font-family-headings);
  font-size: var(--font-size-h6);
  font-variant-caps: var(--font-variant-caps-small);
  padding: 1.2em 1em;
  border: 1px solid transparent;
  cursor: pointer;

	-webkit-transform: translateZ(0);
	transform: translateZ(0);
 
  touch-action: manipulation;
  user-select: none;

  margin: 2em auto;
  width: min(300px, 60vw);
  text-align: center;
  z-index: 99;
}

a.cta::after {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -5px;
  bottom: -2px;
  z-index: -1;

  background-color: var(--brand-color);
  border: 4px solid var(--color-light-3);
  border-radius: .5em;

  /* Raised keyboard key effect */
  box-shadow: 
    -4px -4px 6px rgba(255, 255, 255, 0.6),   /* highlight top-left */
     4px  4px 6px rgba(0, 0, 0, 0.25);        /* shadow bottom-right */

  transform: translateY(6px);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Hover and focus: key "presses down" */
a.cta:hover,
a.cta:focus {
  transform: none;
  -webkit-transform: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  padding: 1.2em; /* keep as you defined */
}	

a.cta:hover::after,
a.cta:focus::after {
  transform: translateY(2px); /* closer to surface */
  box-shadow: 
    inset 1px 1px 3px rgba(0, 0, 0, 0.3); /* pressed inset */
}

a.cta:focus {
  outline: 1px solid var(--color-sat-3); /* kept at 1px */
  color: var(--text-light);
  background-color: inherit;
}	

a.cta:active {
  outline: none;
}

a.cta:active::after {
  transform: translateY(1px); /* fully pressed */
  box-shadow: 
    inset 2px 2px 4px rgba(0, 0, 0, 0.4); /* deeper pressed shadow */
  outline: 4px solid hsl(
    var(--brand-hue), 
    var(--brand-saturation), 
    calc(var(--brand-lightness) - 32%)
  );
}

/* End cta button */
/* Button keyboard key color light 
---------------------------------------------- 
Layout:   a.cta.light
          a.cta.light::after 
*/
a.cta.light {
  color: var(--color-light-1);
}

a.cta.light::after {
  background-color: var(--color-sat-5);   /* neutral grey fallback */
  border: 4px solid var(--color-light-1); /* subtle highlight border */
  border-radius: .5em;

  /* Raised keyboard key effect for light variant */
  box-shadow: 
    -4px -4px 6px rgba(255, 255, 255, 0.7),   /* highlight top-left */
     4px  4px 6px rgba(0, 0, 0, 0.2);        /* shadow bottom-right */

  transform: translateY(6px);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

a.cta.light:hover::after,
a.cta.light:focus::after {
  transform: translateY(2px); /* key presses down */
  box-shadow: 
    inset 1px 1px 3px rgba(0, 0, 0, 0.25); /* subtle pressed inset */
}

a.cta.light:active::after {
  transform: translateY(1px); /* fully pressed */
  box-shadow: 
    inset 2px 2px 4px rgba(0, 0, 0, 0.35); /* deeper pressed shadow */
  outline: 4px solid hsl(
    var(--brand-hue), 
    var(--brand-saturation), 
    calc(var(--brand-lightness) - 32%)
  );
}

/* End cta light button */

/* Regular button and button html tag
------------------------------------- 
Layout   a --- .button
or       button ---
*/
a.button,
button,
.button {
  display: block;
  color: var(--text-light);
  padding: 1em;
  font-size: var(--font-size-h6);
  font-stretch: var(--font-stretch-normal);
  font-variant-caps: var(--font-variant-caps-small);
  letter-spacing: var(--letter-spacing-wide);
  border: 1px solid transparent;
  width: min(300px, 60vw);
  text-align: center; 
  background: linear-gradient(135deg, var(--brand-color), var(--color-light-3));
  border-radius: 0.18em;
  transition: transform .3s ease-in;
  margin-bottom: max(5%, 30px);
}

/* Hover feedback — mouse & trackpad only */
@media (hover: hover) and (pointer: fine) {
a.button:hover,
.button:hover,
button:hover {
	transform: scale(1.06);
	-webkit-transition: transform .2s ease-in-out;
	transition: transform .2s ease-in-out;
}
}

/* Press feedback — touch & no-hover environments */
@media (hover: none) and (pointer: coarse) {
  a.button:active,
	.button:active,
	button:active {
    transform: scale(1.06);
    -webkit-transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
  }
}

/* Keyboard accessibility — always */
a.button:focus-visible,
.button:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brand-color);
  outline-offset: 2px;
}

/* End regular button */
/* Regular button light variant
-------------------------------------
Layout   a --- .button.light
or       button.button.light
*/
a.button.light,
button.button.light,
.button.light {
  display: block;
  color: var(--text-dark); /* darker text for contrast on light bg */
  text-shadow: var(--text-shadow-light);
  padding: 1em;
  font-size: var(--font-size-h6);
  font-stretch: var(--font-stretch-normal);
  font-variant-caps: var(--font-variant-caps-small);
  letter-spacing: var(--letter-spacing-wide);
  border: 1px solid var(--color-light-3);
  width: min(300px, 60vw);
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--color-light-1),
    var(--color-light-2)
  );
  border-radius: 0.18em;
  transition: transform .3s ease-in;
  margin-bottom: max(5%, 30px);
  margin-inline: auto;
  touch-action: manipulation; /* REvisar ***/
}

/* Hover feedback — mouse & trackpad only */
@media (hover: hover) and (pointer: fine) {
  a.button.light:hover,
  .button.light:hover,
  button.button.light:hover {
    transform: scale(1.05);
    transition: transform .3s ease-in-out;
  }
}

/* Touch feedback — touch-only environments (simulate hover or tap response) */
@media (hover: none) and (pointer: coarse) {
  a.button.light:active,
  .button.light:active,
  button.button.light:active {
    transform: scale(0.98); /* pressed effect */
  }
}

/* Keyboard accessibility — always */
a.button.light:focus-visible,
.button.light:focus-visible,
button.button.light:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-sat-4); /* subtle focus ring */
}

/* Optional cleanup: mouse focus shouldn't keep the ring */
a.button.light:focus:not(:focus-visible),
.button.light:focus:not(:focus-visible),
button.button.light:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

/* End regular button light */
/* Another type of button (falta por revisar)*****
------------------------------------- 
Layout a ---- .button.thin
*/
.button.thin,
a.button.thin {
  display: block;
  color: var(--text-light);
  padding: .5em;
  font-size: var(--font-size-p);
  font-stretch: var(--font-stretch-normal);
  font-variant-caps: var(--font-variant-caps-small);
  letter-spacing: var(--letter-spacing-wide);
  border: 1px solid transparent;
  width: min(400px, 80vw);
  text-align: center; 
  background: linear-gradient(135deg, var(--brand-color), var(--color-light-4));
  border-radius: 0.18em;
  transition: transform .3s ease-in;
  margin-bottom: max(5%, 30px);
	margin-inline: auto;
}

a.button.thin:hover,
.button.thin:hover {
  transform: scale(1.05); /* smoother effect */
  transition: transform .3s ease-in-out;
}

a.button.thin:focus,
.button.thin:focus {
  outline: 1px solid var(--color-sat-4);
  color: var(--text-light);
  background-color: inherit;
}	

a.button.thin:active,
.button.thin:active {
  outline: none;
  transform: scale(0.98); /* pressed effect */
}

@media only screen and (max-width: 801px) {
  a.button.thin,
  .button.thin {
    transition: none;
  }

  a.button.thin:hover,
  a.button.thin:focus,
  a.button.thin:active,
  .button.thin:hover,
  .button.thin:focus,
  .button.thin:active {
    transition: none;
  }
}

/* Reseat standard form (revisar)
-------------------------------------  */

input,
optgroup,
select,
textarea {
	font-family: 											inherit; 
	font-size: 												1rem; 
	line-height: 											var(--line-height-normal); 
	margin: 													0; 
}

textarea {
	overflow: 												auto;
	resize: 													vertical;
}

label {
	display: 													inline-block;
	line-height: 											1;
	vertical-align: 									middle;
}


legend {
	box-sizing: 											border-box; 
	color: 														inherit; 
	display: 													table; 
	max-width: 												100%; 
	padding: 													0; 
	white-space: 											normal; 
}

progress {
	vertical-align: 									baseline;
}


select {
	display: block;
}

input[type=button],
input[type=submit],
input [type=reset]{
	display: 													block;
	color: 														var(--text-light);
	padding: 													1em;
	font-size: 												1.92rem;
	font-size: 												var(--font-size-h6);
	font-stretch: 										var(--font-stretch-normal);
	font-variant-caps: 								var(--font-variant-caps-small);
	letter-spacing: 									var(--letter-spacing-wide);
	border: 													1px solid transparent;
	width: 														min(300px, 60vw);
	text-align: 											center; 
	background: 											linear-gradient(135deg, var(--brand-color), var(--color-light-4));
	border-radius: 										0.18em;
	transition: 											transform .3s ease-in;
	margin-bottom: 										max(5%, 30px);
	margin-inline: 										auto;
}
/*
[type=button],
[type=reset],
[type=submit] {
	width: 														auto;
	-webkit-appearance: 							button;
}*/

input[type=text],
input[type=date],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=url],
select,
textarea {
	width: 														100%;
	border: 													dotted 1px var(--brand-color);
	border-radius: 										.3em;
	padding: 													0.5rem 1rem;
	transition: 											all 0.2s;
	-webkit-transition: 							all .2s;
}

input[type=text]:focus,
input[type=date]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=url]:focus,
select:focus,
textarea:focus {
	border-color: 										var(--color-sat-4);
	box-shadow: 											0 0 0 2px var(--color-sat-3);
}

[type=submit]:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled) {
	cursor:													 	pointer;
}


[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: 													auto;
}	

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
	border-style: 										none;
	padding: 													0;
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
	outline: 													1px dotted ButtonText;
}


fieldset {
	padding: 0.35em 0.75em 0.625em;
}

[type=search] {
	-webkit-appearance: 							textfield; 
	outline-offset: 									-2px; 
}

[type=search]::-webkit-search-decoration {
	-webkit-appearance: 							none;
}

::-webkit-file-upload-button {
	-webkit-appearance: 							button; 
	font: 														inherit; 
}


/* Disable transitions for form buttons on touch-only devices */
@media (hover: none) and (pointer: coarse) {
  input[type=button],
  input[type=submit],
  input[type=reset] {
    transition: none;
  }
}

/* END normalize + reset forms 
------------------------------------------------------------------------
------------------------------------------------------------------------ */

/* Hoja de estilos importado de theme.css 
------------------------------------------------------------------------
------------------------------------------------------------------------ */
/* Clases de wordpress 
-------------------------------------------  */

.alignright {
	float: 																				right;
	margin-left: 																	1rem;
}

.alignleft {
	float: 																				left;
	margin-right: 																1rem;
}

.aligncenter {
	clear: 																				both;
	display: 																			block;
	margin-left: 																	auto;
	margin-right: 																auto;
}

.alignwide {
	margin-left: 																	-80px;
	margin-right: 																-80px;
}

/* este código para copiar en el editor de elementor para full width
------------------------------------------------------------------------ */
.alignfull {
	width: 																				100vw;
	max-width: 																		100vw;
	margin-inline-start: 													calc(50% - 50vw);
	margin-inline-end: 														calc(50% - 50vw);
	margin-block-end: 														max(10%, 80px);
	overflow: 																		hidden;
	overflow-x: 																	hidden;
	overflow-y: 																	hidden;
	padding-block-end: 														max(7%, 50px);
	padding-inline: 															10vw;
	padding-top: 																	max(7%, 50px);
}

@media only screen and (max-width: 1024px){
	.alignfull{
		padding-inline: 													8vw;
	}
}


@media only screen and (max-width: 600px){
	.alignfull{
		padding-inline: 													min(1.6rem, 5vw);
	}
}


.alignfull img {
	width: 																				100vw;
}

.wp-caption {
	margin-block-end: 														1.25rem;
	max-width: 																		100%;
}

.wp-caption.alignleft {
	margin: 																			5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 																			5px 0 20px 20px;
}

.wp-caption img {
	display: 																			block;
	margin-inline-start: 													auto;
	margin-inline-end: 														auto;
}

.wp-caption-text {
	margin: 																			0;
}

.gallery-caption {
	display: 																			block;
	font-size: 																		0.8125rem;
	line-height: 																	1.5;
	margin: 																			0;
	padding: 																			0.75rem;
}

.pagination {
	margin: 																			20px auto;
}

.sticky {
	position: 																		relative;
	display: 																			block;
}

.bypostauthor {
	font-size: 																		inherit;
}

.hide {
	display: 																			none !important;
}

.post-password-form p {
	width: 																				100%;
	display: 																			flex;
	align-items: 																	flex-end;
}

.post-password-form [type=submit] {
	margin-inline-start: 													3px;
}

/**
	* Post item in archive pages
	*/
.post .entry-title a {
	text-decoration: 															none;
}

.post .wp-post-image {
	width: 																				100%;
	max-height: 																	500px;
	object-fit: 																	cover;
}

@media (max-width: 991px) {
	.post .wp-post-image {
		max-height: 																400px;
	}
}

@media (max-width: 575px) {
	.post .wp-post-image {
		max-height: 																300px;
	}
}

/* More link
---------------------------------------------- */
.more-link {
	display: 																			inline-block;
	margin-top: 																	10px;
}

/* END reset wordpress classes 
------------------------------------------------ */

/* TABLES (revisar)
Reset and normalize
-------------------------------------------------- */
/* Tables – content only (Gutenberg friendly) */
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin-block-end: 1rem;
  font-size: 0.9em;
  overflow-x: auto;
  display: block;
}

.entry-content th,
.entry-content td {
  padding: 0.75rem;
  line-height: 1.5;
  vertical-align: top;
  border: 1px solid rgba(128,128,128,.5);
}

.entry-content thead th {
  font-weight: 600;
  border-bottom: 2px solid rgba(128,128,128,.6);
}

.entry-content tbody tr:nth-child(odd) {
  background-color: rgba(128,128,128,.07);
}

.entry-content tbody tr:hover {
  background-color: rgba(128,128,128,.1);
}
/* End Tables
------------------------------------------- */
/* UTILITY STYLES (revisar)
------------------------------------------- */
/* Accessibility: hide visually, keep for screen readers */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  white-space: nowrap;
  word-wrap: normal !important;
}

/* Make it visible when focused (keyboard users) */
.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #333;
  display: block;
  font-size: 1rem;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
/* END Utilities
--------------------------------------- */
/* PRINT (revisar ****)
------------------------------------------ */
@media print {
	*,
	*:before,
	*:after {
		background: transparent !important;
		color: #000 !important; /* Black prints faster */
		-webkit-box-shadow: none !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]:after {
		content: " (" attr(href) ")";
	}
	
	abbr[title]:after {
		content: " (" attr(title) ")";
	}

	a[href^="#"]:after,
	a[href^="javascript:"]:after {
		content: "";
	}

	pre {
		white-space: pre-wrap !important;
	}
	
	pre,
	blockquote {
		break-inside: avoid;
		border: 1px solid #cccccc;
	}

	thead {
		display: table-header-group;
	}

	tr,
	img {
		break-inside: avoid;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	h2,
	h3 {
		break-after: avoid;
	}
}

/* End print
---------------------------------- */
/* End Import from parent theme
------------------------------------------------------------------------
------------------------------------------------------------------------ */
