xxxxxx/*!
Theme Name: DmPrime
Theme URI: https://digimodulo.com/
Author: DigiModulo
Author URI: https://digimodulo.com/
Description: This is a minamalist theme for wordpress website developement by DigiModulo.
Version: 1.0.3
Tested up to Wordpress: 5.9
Requires PHP: 7.2
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: dmprime
Tags: custom-background, custom-logo, custom-menu, featured-images, custom post type, social network links
File:  dmpagestruct.css
File description:  DmPrime wordpress theme css file for basic page structure
*/

html  {
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #191919;  /* Same color from footer  */
    scroll-behavior: smooth;
}

body  {
    margin: 0;
    padding: 0;
    width: 100%;
}


#dm-conteiner  {
	margin: 0;
	padding: 0;
	width: 100%;
	overflow: hidden;	
	background-color: #fdfdfd;
}

.dm-page-std-content  {
	/*max-width: 1140px;*/
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.dm-page-std-content h1  {
	text-align: center;
}

.site  {
	margin: 0;
	padding: 0;
	width: 100%;
	overflow: hidden;	
}

#dm-conteiner > header  {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 80px;
	font-family: 'Roboto', sans-serif;
}

.dm-logo {
	height: 80px;
	padding: 5px;
}

.site-branding  {
	float: left;
}

.dm-logo img  {
	height: 70px;
}
 

.dm-outter-area  {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	background-color: #f8f8f8;
}

.wpcf7-response-output  {
	margin: 0.5em !important;
	border: none !important;
	color: #c63a42 !important;
	font-weight: 700 !important;
}

/**
 * Conteudo do site Digimodulo
 */

/********* Conteudo *************/

/**
 * Quadro 1 - Inicial
 */



#dm-quadro-1 .hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

#dm-quadro-1 .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#dm-quadro-1 .hero-content {
  background-color: rgba(0,0,0,0.7);
  position: absolute;
  top: 25%;
  left: 7%;
  color: white;
  max-width: 40%;
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
  padding: 20px;
  border-radius: 20px;
}

#dm-quadro-1 .hero-content h2 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
  line-height: 1.2em;
  text-align: left;
}

#dm-quadro-1 .hero-content h3 {
  font-size: 1.4em;
  margin-bottom: 1em;
}

#dm-quadro-1 .hero-content h4 {
  font-size: 1.2em;
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.5em;
}

#dm-quadro-1 .cta-btn {
  margin-top: 1em;
  padding: 1.5em 3em;
  width: 100%;
  font-size: 1em;
  background-color: #ff6600;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5em;
  border-radius:10px;
  transition: background 0.3s;
}

#dm-quadro-1 .cta-btn:hover {
  background-color: #e65c00;
}


/**
 * Quadro 2 - Quem Somos
 */

#dm-quadro-2 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f4f4f4;
  box-sizing: border-box;
}

#dm-quadro-2 .product-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px;
}

#dm-quadro-2 .product {
  background-color: transparent;
  width: 23%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#dm-quadro-2 .product h2 {
  font-size: 1.6em;
  margin: 10px 0 20px; /* Aumentado o espaço abaixo do título */
  text-align: center;
  color: #333;
}

#dm-quadro-2 .slideshow {
  width: 100%;
  height: 480px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

#dm-quadro-2 .slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  border-radius: 20px;
}

#dm-quadro-2 .slide.active {
  display: block;
}

#dm-quadro-2 .price {
  margin: 15px 0 5px;
  font-size: 1.1em;
  color: #444; /* Cinza escuro */
  font-weight: 500;
}

#dm-quadro-2 .buy-button {
  margin: 5px 0;
  padding: 15px 30px;
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 6px; /* Aumentado */
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 80%;
  text-align: center;
  border-radius:10px;
  transition: background 0.3s;
}

#dm-quadro-2 .buy-button:hover {
  background-color: #e65c00;
}




#dm-quadro-2 .slogan {
  margin: 10px 0 15px;
  font-size: 0.95em;
  color: #666;
  font-style: italic;
  text-align: center;
}

#dm-quadro-2 .features {
  width: 80%;
  margin: 0 auto 20px;
  text-align: left;
  list-style: none;
  padding-left: 0;
}

#dm-quadro-2 .features li {
  margin-bottom: 6px;
}

@media screen and (max-width: 1000px) {
  #dm-quadro-2 .product {
    width: 48%;
  }
}

@media screen and (max-width: 600px) {
  #dm-quadro-2  .product {
    width: 100%;
  }
}

/**
 * Quadro 3
 */


#dm-quadro-3 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background-color: #fff; /* Fundo branco uniforme */
  color: #333;
  box-sizing: border-box;
  min-height: 500px !important;
}

#dm-quadro-3 .dm-quadro-test-header h2  {
  text-align: center;
  font-weight: 400;
  font-size: 2em;
  margin-bottom: 10px;
}


#dm-quadro-3 h2 {
  text-align: center;
  padding: 20px;
  font-size: 56px;
  font-weight: 400;
  background-color: #fff; /* Igual ao restante do fundo */
  margin: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#dm-quadro-3 .content {
  display: flex;
  padding: 20px; /* Margens simétricas esquerda e direita */
  gap: 30px; /* Espaço entre vídeo e grid de imagens */
  align-items: flex-start;
  box-sizing: border-box;
  background-color: #fff; /* Mesmo fundo do título */
}

/* Grid: altura = 2 × 200px + 15px gap = 415px */
#dm-quadro-3 .images-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 15px;
  height: 415px;
  flex: 1;
}

#dm-quadro-3 .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#dm-quadro-3 .video-container {
  flex: 0 0 30%;
  height: 415px;
}

#dm-quadro-3 .video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover */
#dm-quadro-3 .media-hover:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

/* Responsivo */
@media (max-width: 900px) {
  #dm-quadro-3 .content {
    flex-direction: column;
    padding: 20px;
  }

  #dm-quadro-3 .video-container,
  #dm-quadro-3 .images-grid {
    flex: 1 1 100%;
    height: auto;
  }

  #dm-quadro-3 .images-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 150px);
    gap: 10px;
  }
}

/**
 * Quadro 4
 */

#dm-quadro-4 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background-color: #f4f4f4;
  color: #333;
  box-sizing: border-box;
}

#dm-quadro-4 .como-funciona .dm-quadro-test-header h2  {
  text-align: center;
  font-weight: 400;
  font-size: 2em;
  margin-bottom: 10px;
}


#dm-quadro-4 .como-funciona {
  text-align: center;
  padding: 50px 20px;
}

#dm-quadro-4 .como-funciona h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

#dm-quadro-4 .como-funciona p {
  font-size: 1em;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid */
#dm-quadro-4 .steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 20px;
  box-sizing: border-box;
  align-items: stretch; /* garantir altura igual */
}

#dm-quadro-4 .step {
  position: relative;
  flex: 1 1 calc(25% - 15px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

#dm-quadro-4 .step img {
  width: 100%;
  height: 375px; /* aumentado em 50% */
  object-fit: cover;
  border-radius: 8px;
}

/* Área de texto */
#dm-quadro-4 .step-content {
  position: relative;
  /* Sem width fixa, pois vamos centralizar com margin */
  margin-top: -25px; /* sobreposição */
  
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 1;

  margin-left: 5%;
  margin-right: 5%;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  align-self: stretch;
}

#dm-quadro-4 .step-content h3 {
  font-weight: bold;
  font-size: 1em;
  margin-bottom: 10px;
}

#dm-quadro-4 .step-content p {
  font-size: 0.9em;
  color: #555;
  line-height: 1.5;
  flex-grow: 1;
}

/* Responsivo */
@media (max-width: 992px) {
  #dm-quadro-4 .step {
    flex: 1 1 calc(50% - 15px);
  }
}

@media (max-width: 600px) {
  #dm-quadro-4 .steps {
    padding: 0 10px;
    gap: 10px;
  }

  #dm-quadro-4 .step {
    flex: 1 1 100%;
  }

  #dm-quadro-4 .step-content {
    margin-top: -20px;
  }
}


/**
 * Quadro 5
 */

#dm-quadro-5 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20px;
  margin: 0;
  background-color: #fff; /* Fundo branco uniforme */
  color: #333;
  box-sizing: border-box;
  min-height: 600px !important;
}

#dm-quadro-5 .dm-quadro-test-header h2  {
  text-align: center;
  font-weight: 400;
  font-size: 2em;
  margin-bottom: 10px;
}


/* Formatação Strong Testimonials */

/* Remove aspas automáticas */
#dm-quadro-5 .test-slider .wpmtst-testimonial blockquote::before,
#dm-quadro-5 .test-slider .wpmtst-testimonial blockquote::after {
    content: none !important;
}

/* Layout do card */
#dm-quadro-5 .test-slider .wpmtst-testimonial {
    background-color: #ffffff !important;
    border: 1px solid #eee !important;
    border-radius: 16px !important;
    padding: 30px 25px 20px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
    text-align: center !important;
}

/* Texto do depoimento */
#dm-quadro-5 .test-slider .wpmtst-testimonial blockquote {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #333 !important;
    font-style: normal !important;
    margin: 0 0 20px 0 !important;
}

/* Nome e ocupação */
#dm-quadro-5 .test-slider .wpmtst-author-name {
    font-weight: 600 !important;
    margin-top: 8px !important;
}
#dm-quadro-5 .test-slider .wpmtst-author-title {
    color: #777 !important;
    font-size: 14px !important;
}

#dm-quadro-5 .test-slider .wpmtst-testimonial-content {
    color: #777 !important;
    font-size: 16px !important;
}

/* Imagem do autor */
#dm-quadro-5 .test-slider .wpmtst-photo {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    margin: 0 auto 8px auto !important;
}

/* Centralizar conteúdo */
#dm-quadro-5 .test-slider .wpmtst-testimonial .testimonial-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

/* Carousel - paginador */
#dm-quadro-5 .test-slider .wpmtst-pager span {
    background: #ccc !important;
}
#dm-quadro-5 .test-slider .wpmtst-pager span.active {
    background: #333 !important;
}


/**
 * Form contato
 */

:root {
  --primary-color: #2b4c7e;
  --accent-color: #f2a65a;
  --form-bg: rgba(255, 255, 255, 0.95);
  --text-color: #333;
  --shadow-color: rgba(43, 76, 126, 0.2);
}
#dm-form-contato  {  
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url('../img/site/form-contato.jpeg') no-repeat center center/cover;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 100vh;
}
#dm-form-contato .form-container {
  background: var(--form-bg);
  margin: 5% 5% 0 0;
  padding: 2rem 3rem;
  max-width: 450px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px var(--shadow-color);
  border: 2px solid var(--accent-color);
}
#dm-form-contato h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.9rem;
  text-align: center;
}
#dm-form-contato .form-group {
  margin-bottom: 1.3rem;
}
#dm-form-contato label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.95rem;
}
#dm-form-contato input, #dm-form-contato select, #dm-form-contato textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background-color: #fff;
  transition: border-color 0.3s ease;
}
#dm-form-contato input:focus, #dm-form-contato select:focus, #dm-form-contato textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}
#dm-form-contato textarea {
  resize: vertical;
  min-height: 110px;
}
#dm-form-contato button {
  width: 100%;
  padding: 0.9rem 0;
  background: var(--accent-color);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}
#dm-form-contato button:hover {
  background: #d98b44;
}
#dm-form-contato .hidden {
  display: none;
}
/* Responsive */
@media (max-width: 720px) {
  #dm-form-contato {
    justify-content: center;
    align-items: center;
    background-position: center top;
    padding: 20px;
  }
  #dm-form-contato .form-container {
    margin: 0;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  }
}


/**
 * Quadro Servicos
 */


#dm-quadro-servicos  {
    /*background-color: white;*/
    /* width: 1140px; */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5%;
    padding-right: 5%;
    background-color: #f2f2f2;
}

#dm-quadro-servicos-left  {
	width: 27%;
	/*background-color: #fefefe;*/
	margin-left: 3%;
	margin-right: 3%;
	margin-top: 20px;
	margin-botton: 20px;
}

#dm-quadro-servicos-center  {
	width: 28%;
	/*background-color: #fefefe;*/
	margin-left: 3%;
	margin-right: 3%;
	margin-top: 20px;
	margin-botton: 20px;
}

#dm-quadro-servicos-right  {
	width: 27%;
	/*background-color: #fefefe;*/
	margin-left: 3%;
	margin-right: 3%;
	margin-top: 20px;
	margin-botton: 20px;
}


#dm-quadro-servicos-header  {
	width: 100%;
	min-height: 80px;
	margin-left: auto;
	margin-right: auto;
}

#dm-quadro-servicos-header h2  {

    margin-top: 0;
	font-family: 'Calibri', sans-serif;  
	line-height: 1.1em;
	/*
	font-size: 39px;
	font-weight: 700;
	*/
	color: #00263e;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 10px;
	padding-top: 20px;
	padding-bottom: 10px;
	margin-top: 0;
	text-align: center;
}


#dm-quadro-servicos a  {
	text-decoration: none;
	color: inherit;
}



#dm-quadro-servicos img  {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 300px;
}

#dm-quadro-servicos  {
	font-family: 'Calibri', sans-serif;
}

/* Formatacao do Slider de Blog */

#dm-quadro-servicos .sp-pcp-post  {
  background-color: #fdfdfd;
  height: 580px;  
  overflow-y: hidden;
  background: #fff;
  box-shadow: 0px 0px 20px #c3c3c3;
  margin: 10px 0;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  padding: 0;
}

#dm-quadro-servicos .pcp-post-thumb-wrapper  {
	min-height: 300px;
	margin: 0;
	padding: 10px;
}

#dm-quadro-servicos .sp-pcp-thumb img  {

}

#dm-quadro-servicos .sp-pcp-post-meta {
    background: #c63a42;
    width: 70px;
    position: absolute;
    top: 240px;
    left: 15px;
    color: #fff;
    text-align: center;
    padding: 10px 0px;
    height: 70px;
    border: 1px solid #c63a42;
}

#dm-quadro-servicos .sp-pcp-post-meta ul li i {
	display: none;
} 

#dm-quadro-servicos .sp-pcp-post-meta ul li time  {
	color: #fff;
} 

#dm-quadro-servicos .sp-pcp-post-meta:after {
    width: 0;
    height: 0;
    content: "";
    border-left: 0 solid transparent;
    border-right: 70px solid transparent;
    border-bottom: 12px solid #c63a42;
    top: -11px;
    position: absolute;
    left: 0;
}

#dm-quadro-servicos .sp-pcp-post h3 a  {
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 20px;
	padding-bottom: 5px;
	font-weight: 700!important;
}



#dm-quadro-servicos .sp-pcp-post-content   {
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
}

#dm-quadro-servicos .sp-pcp-post-meta   {
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
}

#dm-quadro-servicos .sp-pcp-post-content p   {
	height: 220px;
	overflow-y: hidden;
}

#dm-quadro-servicos .sp-pcp-readmore  {
	position: relative;
	width: 100%;
}

#dm-quadro-servicos .sp-pcp-readmore a  {
	background-color: darkorange;
  	border: 2px solid darkorange;
  	color: white;
	border-radius: 10px;
	display: block;
	position: absolute;
	bottom: 40px;
	left: 20%;
	width: 60%;
	text-align: center;
	z-index: 10;
	text-shadow:none;
  	font-family: 'Calibri', sans-serif;
  	font-style: normal;
  	font-size: 20px;
	text-shadow:none;
    transition: all 0.4s ease 0s;
}


#dm-quadro-servicos .sp-pcp-readmore a:hover  {
	color: white;
	background-color: rgb(105, 5, 51);	
	transition: all 0.4s ease 0s;
}

/**
 * Quadro Parceiros
 */

#dm-quadro-parceiros  {
	width: 100%;
	min-height: 80px;
	margin-left: auto;
	margin-right: auto;
}

#dm-quadro-parceiros-header  {
	width: 100%;
	min-height: 80px;
	margin-left: 0;
	margin-right: 0;
	padding-left: 50px;
	padding-right: 50px;
	padding-top: 40px;
	padding-bottom: 40px;
}

#dm-quadro-parceiros-header h2  {
	width: 100%;
	margin: 0;
	font-family: 'Calibri', sans-serif;  
	font-size: 46px;
	text-align: center;
}

/*
 * Grid de Tecnologias Utilizadas
 */

/**
 * Quadro Tecnologias
 */


#dm-quadro-tecnologias  {
    /*background-color: white;*/
    /* width: 1140px; */
    /* background-color: #45464a; */
    background-color: #a2a2a2;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5%;
    padding-right: 5%;
}

#dm-quadro-tecnologias-left  {
	width: 27%;
	/*background-color: #fefefe;*/
	margin-left: 3%;
	margin-right: 3%;
	margin-top: 20px;
	margin-botton: 20px;
}

#dm-quadro-tecnologias-center  {
	width: 28%;
	/*background-color: #fefefe;*/
	margin-left: 3%;
	margin-right: 3%;
	margin-top: 20px;
	margin-botton: 20px;
}

#dm-quadro-tecnologias-right  {
	width: 27%;
	/*background-color: #fefefe;*/
	margin-left: 3%;
	margin-right: 3%;
	margin-top: 20px;
	margin-botton: 20px;
}


#dm-quadro-tecnologias-header  {
	width: 100%;
	min-height: 80px;
	margin-left: auto;
	margin-right: auto;
}

#dm-quadro-tecnologias-header h2  {
    margin-top: 0;
	font-family: 'Calibri', sans-serif;  
	line-height: 1.1em;
	/*
	font-size: 39px;
	font-weight: 700;
	*/
	width: 100$;
	color: #fdfdfd;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 10px;
	padding-top: 10px;
	padding-bottom: 20px;
	margin-top: 0;
	text-align: center;
}


#dm-quadro-tecnologias a  {
	text-decoration: none;
	color: inherit;
}



#dm-quadro-tecnologias img  {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 200px;
}

#dm-quadro-tecnologias  {
	font-family: 'Calibri', sans-serif;
}


/* Formatacao do Slider de Blog */

#dm-quadro-tecnologias .sp-pcp-post  {
  background-color: #fdfdfd;
  height: 300px;  
  overflow-y: hidden;
  background: #fdfdfd;
  box-shadow: 0px 0px 20px #c3c3c3;
  margin: 10px 0;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  padding: 0;
}

#dm-quadro-tecnologias .pcp-post-thumb-wrapper  {
	min-height: 250px;
	margin: 0;
	padding: 10px;
}

#dm-quadro-tecnologias .sp-pcp-thumb img  {
	object-fit: contain !important;

}

#dm-quadro-tecnologias .sp-pcp-post-meta {
    background: #c63a42;
    width: 70px;
    position: absolute;
    top: 240px;
    left: 15px;
    color: #fff;
    text-align: center;
    padding: 10px 0px;
    height: 70px;
    border: 1px solid #c63a42;
}

#dm-quadro-tecnologias .sp-pcp-post-meta ul li i {
	display: none;
} 

#dm-quadro-tecnologias .sp-pcp-post-meta ul li time  {
	color: #fff;
} 

#dm-quadro-tecnologias .sp-pcp-post-meta:after {
    width: 0;
    height: 0;
    content: "";
    border-left: 0 solid transparent;
    border-right: 70px solid transparent;
    border-bottom: 12px solid #c63a42;
    top: -11px;
    position: absolute;
    left: 0;
}

#dm-quadro-tecnologias .sp-pcp-post h3 a  {
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 20px;
	padding-bottom: 5px;
	font-weight: 700!important;
}

#dm-quadro-tecnologias .sp-pcp-post-content   {
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
}

#dm-quadro-tecnologias .sp-pcp-post-meta   {
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
}

#dm-quadro-tecnologias .sp-pcp-post-content p   {
	height: 140px;
	overflow-y: hidden;
}

#dm-quadro-tecnologias .sp-pcp-readmore  {
	position: relative;
	width: 100%;
}

#dm-quadro-tecnologias .sp-pcp-readmore a  {
	background-color: darkorange;
  	border: 2px solid darkorange;
  	color: white;
	border-radius: 10px;
	display: block;
	position: absolute;
	bottom: 40px;
	left: 20%;
	width: 60%;
	text-align: center;
	z-indprojetos10;
	text-shadow:none;
  	font-family: 'Calibri', sans-serif;
  	font-style: normal;
  	font-size: 20px;
	text-shadow:none;
    transition: all 0.4s ease 0s;
}


#dm-quadro-tecnologias .sp-pcp-readmore a:hover  {
	color: white;
	background-color: rgb(105, 5, 51);	
	transition: all 0.4s ease 0s;
}

/**
 * Quadro Projetos */


#dm-quadro-projetos  {
    /*background-color: white;*/
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}


#dm-quadro-projetos-header  {
	width: 700px;
	min-height: 80px;
	margin-left: auto;
	margin-right: auto;
}

#dm-quadro-projetos-header h2  {
    margin-top: 0;
	font-family: 'Calibri', sans-serif;  
	line-height: 1.1em;
	/*
	font-size: 39px;
	font-weight: 700;
	*/
	color: #00263e;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 10px;
	padding-top: 20px;
	padding-bottom: 10px;
	margin-top: 0;
	text-align: center;
}

#dm-quadro-projetos-header h3  {
	width: 100%;
    margin-top: 0;
	font-family: 'Roboto', sans-serif;
	font-size: 28px;
	line-height: 1.1em;
	font-weight: 400;
	color: #00263e;
	margin-left: 20px;
	margin-right: 20px;
	margin-boprojetos: 5px;
	text-align: center;
}


#dm-quadro-projetos a  {
	text-decoration: none;
	color: inherit;
}



#dm-quadro-projetos img  {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 300px;
}

#dm-quadro-projetos  {
	font-family: 'Calibri', sans-serif;
}

/* Formatacao do Slider de projetos */

#dm-quadro-projetos .sp-pcp-post  {
  height: 700px;  
  overflow-y: hidden;
  background: #fff;
  box-shadow: 0px 0px 20px #c3c3c3;
  margin: 10px 0;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  padding: 0;
}

#dm-quadro-projetos .pcp-post-thumb-wrapper  {
	min-height: 300px;
	margin: 0;
	padding: 0;
}

#dm-quadro-projetos .sp-pcp-thumb img  {

}

#dm-quadro-projetos .sp-pcp-post-meta {
    background: #c63a42;
    width: 70px;
    position: absolute;
    top: 240px;
    left: 15px;
    color: #fff;
    text-align: center;
    padding: 10px 0px;
    height: 70px;
    border: 1px solid #c63a42;
}

#dm-quadro-projetos .sp-pcp-post-meta ul li i {
	display: none;
} 

#dm-quadro-projetos .sp-pcp-post-meta ul li time  {
	color: #fff;
} 

#dm-quadro-projetos .sp-pcp-post-meta:after {
    width: 0;
    height: 0;
    content: "";
    border-left: 0 solid transparent;
    border-right: 70px solid transparent;
    border-bottom: 12px solid #c63a42;
    top: -11px;
    position: absolute;
    left: 0;
}

#dm-quadro-projetos .sp-pcp-post h3 a  {
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 20px;
	padding-bottom: 5px;
	font-weight: 700!important;
}

#dm-quadro-projetos .sp-pcp-post-content   {
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
}

#dm-quadro-projetos .sp-pcp-post-meta   {
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
}

#dm-quadro-projetos .sp-pcp-post-content p   {
	height: 200px;
	overflow-y: hidden;
}


#dm-quadro-projetos .sp-pcp-readmore a  {
	background-color: darkorange;
  	border: 2px solid darkorange;
  	color: white;
	border-radius: 10px;
	display: block;
	position: absolute;
	bottom: 40px;
	left: 20%;
	width: 60%;
	text-align: center;
	z-index: 10;
	text-shadow:none;
  	font-family: 'Calibri', sans-serif;
  	font-style: normal;
  	font-size: 20px;
	text-shadow:none;
    transition: all 0.4s ease 0s;
}


#dm-quadro-projetos .sp-pcp-readmore a:hover  {
	color: white;
	background-color: rgb(105, 5, 51);	
	transition: all 0.4s ease 0s;
}


.dm-projetos-col  {
	width: 30%;
	margin-left: 1%;
	margin-right: 1%;
	margin-top: 20px;
	margin-bottom: 20px;
}

.dm-frame-projetos   {
	min-height: 480px;
	padding: 2%;
	float: left;
	text-align: justify;
	background-color: #f7f7f7;
	/*background-color: rgba(5,83,141, .1);*/
	border-radius: 20px;
}

.dm-frame-projetos:hover   {
	background-color: #bebebe;
}

.dm-frame-projetos img   {
	height: 200px;
	width: 100%;
	object-fit: cover;
	text-align: center;
	border-radius: 20px;
}

.dm-frame-projetos {
	font-family: 'Calibri', sans-serif;
}


/**
 * Quadro Blog
 */

/**
 * Quadro Blog
 */


#dm-quadro-blog  {
    /*background-color: white;*/
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}

#dm-quadro-blog-header  {
	display: block;
	width: 900px;
	margin-left: auto;
	margin-right: auto;
}

#dm-quadro-blog-header h2  {
    margin-top: 0;
	font-family: 'Calibri', sans-serif;  
	line-height: 1.1em;
	color: #00263e;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 10px;
	padding-top: 20px;
	padding-bottom: 10px;
	margin-top: 0;
	text-align: center;
}

#dm-quadro-blog-header h3  {
    margin-top: 0;
	font-family: 'Roboto', sans-serif;
	font-size: 28px;
	line-height: 1.1em;
	font-weight: 400;
	color: #00263e;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 5px;
	text-align: center;
}


#dm-quadro-blog a  {
	text-decoration: none;
	color: inherit;
}



#dm-quadro-blog img  {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 300px;
}

#dm-quadro-blog  {
	font-family: 'Calibri', sans-serif;
}

/* Formatacao do Slider de Blog */

#dm-quadro-blog .sp-pcp-post  {
  height: 700px;  
  overflow-y: hidden;
  background: #fff;
  box-shadow: 0px 0px 20px #c3c3c3;
  margin: 10px 0;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  padding: 0;
}

#dm-quadro-blog .pcp-post-thumb-wrapper  {
	min-height: 300px;
	margin: 0;
	padding: 0;
}

#dm-quadro-blog .sp-pcp-thumb img  {

}

#dm-quadro-blog .sp-pcp-post-meta {
    background: #c63a42;
    width: 70px;
    position: absolute;
    top: 240px;
    left: 15px;
    color: #fff;
    text-align: center;
    padding: 10px 0px;
    height: 70px;
    border: 1px solid #c63a42;
}

#dm-quadro-blog .sp-pcp-post-meta ul li i {
	display: none;
} 

#dm-quadro-blog .sp-pcp-post-meta ul li time  {
	color: #fff;
} 

#dm-quadro-blog .sp-pcp-post-meta:after {
    width: 0;
    height: 0;
    content: "";
    border-left: 0 solid transparent;
    border-right: 70px solid transparent;
    border-bottom: 12px solid #c63a42;
    top: -11px;
    position: absolute;
    left: 0;
}

/*
#dm-quadro-blog .sp-pcp-post h3  {
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 20px;
	padding-bottom: 5px;
	font-style: bold;
}
*/

#dm-quadro-blog .sp-pcp-post h3 a  {
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 20px;
	padding-bottom: 5px;
	font-weight: 700!important;
}

#dm-quadro-blog .sp-pcp-post-content   {
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
}

#dm-quadro-blog .sp-pcp-post-meta   {
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
}

#dm-quadro-blog .sp-pcp-post-content p   {
	height: 200px;
	overflow-y: hidden;
}


#dm-quadro-blog .sp-pcp-readmore a  {
	background-color: darkorange;
  	border: 2px solid darkorange;
  	color: white;
	border-radius: 10px;
	display: block;
	position: absolute;
	bottom: 40px;
	left: 20%;
	width: 60%;
	text-align: center;
	z-index: 10;
	text-shadow:none;
  	font-family: 'Calibri', sans-serif;
  	font-style: normal;
  	font-size: 20px;
	text-shadow:none;
    transition: all 0.4s ease 0s;
}


#dm-quadro-blog .sp-pcp-readmore a:hover  {
	color: white;
	background-color: rgb(105, 5, 51);	
	transition: all 0.4s ease 0s;
}


.dm-blog-col  {
	width: 30%;
	margin-left: 1%;
	margin-right: 1%;
	margin-top: 20px;
	margin-bottom: 20px;
}

.dm-frame-blog   {
	min-height: 480px;
	padding: 2%;
	float: left;
	text-align: justify;
	background-color: #f7f7f7;
	/*background-color: rgba(5,83,141, .1);*/
	border-radius: 20px;
}

.dm-frame-blog:hover   {
	background-color: #bebebe;
}

.dm-frame-blog img   {
	height: 200px;
	width: 100%;
	object-fit: cover;
	text-align: center;
	border-radius: 20px;
}

.dm-frame-blog {
	font-family: 'Calibri', sans-serif;
}

/**
 * Quadro Contato Novo
 */

#dm-quadro-contato-novo  {
	max-width: 100%;
}


/*
 * Quadro de Contato
 */

#dm-quadro-4  {
    /*background-color: darkred;*/
    /*background-image: url("../img/teclado.jpg");*/
}

#dm-quadro-5  {
    /*background-color: orange;*/
    /*background-image: url("../img/teclado.jpg");*/
}

#dm-quadro-4-inner  {
	/*background-color: #fbe83d;*/
	background-color: #b6bcd6;
	width: 1040px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	margin-bottom: 20px;
}

#dm-quadro-4-left  {
	/*background-color: #fbe83d;*/
	background-color: inherit;
}

#dm-quadro-4-right  {
	/*background-color: #fbe83d;*/
	background-color: inherit;
	padding-top: 0;
}


/**
 * Quadros gerais
 */


.dm-quadro  {
	margin: 0;
	padding: 0;
	width: 100%;
	min-height: 800px;
    margin-left: auto;
    margin-right: auto;
    /*background-color: red;  */
    font-family: 'Calibri', sans-serif;
}



.dm-quadro h1  {
	text-align: center;
	font-size: 78px;
	font-weight: 600;
	font-family: 'Calibri', sans-serif;
}

.dm-quadro h2  {
	text-align: center;
	font-size: 56px;
	font-weight: 400;
}

.dm-quadro h3  {
	text-align: center;
	font-size: 40px;
	font-weight: 200;
}

.dm-quadro h4  {
	text-align: center;
	font-size: 28px;
	font-weight: 200;
}

.dm-quadro h5  {
	text-align: center;
	font-size: 20px;
}

.dm-quadro p  {
	text-align: justify;
	font-size: 20px;
}

.dm-frame-3   {
	height: 480px;
	float: left;
	text-align: center;
	background-color: #f7f7f7;
}

.dm-frame-3 img   {
	width: 100%;
	height: 50%;
}

.dm-frame-2   {
	width: 50%;
	height: 600px;
	float: left;
}


/**
 * Fim do conteudo do site Digimodulo
 */



.dm-quadro-footer-btn  {
	margin-top: 30px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	margin-bottom: 40px;
}

.dm-quadro-footer-btn-page  {
	margin-top: 30px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	margin-bottom: 40px;
}

.dm-quadro-footer-btn button, .dm-quadro-footer-btn-page button  {
	position: relative;
	width: 350px;
	background-color: darkorange;
  	border: 2px solid darkorange;
  	color: #fdfdfd;
  	border-radius: 10px;
  	text-shadow:none;
  	font-family: 'Roboto', sans-serif;
  	font-style: normal;
  	font-size: 24px;
  	height: 70px;
	padding: 20px 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	margin-top: 0;
	margin-bottom: 0.2rem;
	margin-left: auto;
	margin-right: auto;	
	transition: all 0.4s ease 0s;
}

.dm-quadro-footer-btn button:hover, .dm-quadro-footer-btn-page button:hover  {
	color: white;
	background-color: rgb(105, 5, 51);	
	transition: all 0.4s ease 0s;
}







/*
 * Form Contato
 */


#dm-quadro-contato  {
    max-width: 1140px;
    height: 750px;
    background-color: inherit;
    margin-left: auto;
    margin-right: auto;
}

#dm-quadro-contato .form-contato  {
	width: 750px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

#dm-quadro-contato .form-contato  {
	border-radius: 20px;
	margin-top: 20px;
	z-index: 10;
	box-shadow: 2px 2px 3px #999;
	background-color: #fddb4d;
	/*background-color: rgb(5, 83, 141);*/
	padding: 30px 30px 10px 30px;
}

#dm-quadro-contato .form-contato h2  {
	margin-top: 0.5rem;
	font-family: 'Roboto', sans-serif;
	font-size: 33px;
	line-height: 1.1em;
	color: #fff;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	text-align: left;
}

#dm-quadro-contato .form-contato h3  {
	margin-top: 0;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 1em;
	color: #fff;
	margin-left: 0px;
	margin-right: 0px;
	text-align: left;
	padding-top: 10px;
}

#dm-quadro-contato .form-contato form  {
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	display: block;
}

#dm-quadro-contato .form-contato form label  {
	text-align: center;
	color: #fff;
}

#dm-quadro-contato .form-contato .wpcf7-form-control-wrap input[type="text"],
#dm-quadro-contato .form-contato .wpcf7-form-control-wrap input[type="tel"],
#dm-quadro-contato .form-contato .wpcf7-form-control-wrap input[type="email"],
#dm-quadro-contato .form-contato .wpcf7-form-control-wrap select  {
	width: 100%;
	height: 50px;
	margin-bottom: 10px;
	background-color: white;
}

#dm-quadro-contato .form-contato .wpcf7-submit, #dm-quadro-contato .form-contato .wpcf7-submit  {
	width: 100%;
	margin-left: 0;
	margin-top: 20px;
}

#dm-quadro-contato .text-contato  {
	float: left;
	z-index: 10;
}





/******************************************************************************************/



.dm-frame-5   {
	height: 240px;
	float: left;
	text-align: center;
}

.dm-frame-5 img   {
	width: 100%;
	height: 50%;
}

.dm-frame-5-full   {
	height: 240px;
	float: left;
	text-align: center;
	/*background-color: #f7f7f7;*/
}

.dm-frame-4-full   {
	height: 300px;
	float: left;
	text-align: center;
}

.dm-frame-5-full img   {
	width: 100%;
	height: 100%;
}

.dm-frame-2   {
	width: 50%;
	min-height: 600px;
	float: left;
}

footer a  {
	text-decoration: none;
	color: inherit;
}

.dm-digimodulo-link a  {
	text-decoration: none;
	color: inherit;
	float: right;
}

.dm-digimodulo-link a  {
	font-family: inherit;
	font-size: 10px;
	text-align: center;
	padding: 0;
	margin: 0;
}

.dm-digimodulo-link a p  {
	padding-right: 30px;
	padding-top: 0;
	padding-left: 0;
	padding-bottom: 0;
	margin: 0;
}

#dm-footer-top  {
	padding-top: 10px;
	padding-left: 2rem;
	padding-right: 2rem;
	padding-bottom: 30px;
}


.dm-footer-top-col  {
	float: left;
	color: white;
}

.dm-footer-top-col-small  {
	width: 10%;
}

.dm-footer-top-col-regular  {
	width: 20%;
	padding-top: 50px;
}

.dm-footer-top-col-large  {
	width: 30%;
	padding-top: 50px;
}

.dm-footer-top-col h2  {
	font-size: 20px;
	font-weight: 400;
	color: white;
	margin-bottom: 30px;
}

.dm-footer-top-col h3  {
	font-size: 14px;
	font-weight: 400;
	color: white;
}

#dm-footer-logo  {
	display: inline;
	float: left;
}

#dm-footer-social  {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

#dm-footer-social h4  {
	text-align: center;
}

#dm-footer-social h4 i  {
	font-size: 32px;
	font-weight: 400;
	margin: 0.4rem;
}

#dm-footer-bottom  {
	padding-top: 5px;
	padding-left: 0;
	padding-right: 0;
	border-top: 1px solid #888;
	margin-left: 30px;
	margin-right: 30px;
	margin-top: 0px;
}

#dm-footer-politica a p  {
	margin-top: 0;
	font-size: 14px;
	font-weight: 400;
	color: white;
	margin-bottom: 5px;
}



.dm-esquerda  {
	margin: 0;
	padding: 0;
	width: 70%;
	float: left;
    overflow: auto;
}




.dm-direita  {
	margin: 0;
	padding: 0;
	width: 30%;
	float: left;
}


/* Formatacao especifica */



.dm-float-left  {
	float: left;
}

.dm-clear-right  {
	float: right;
}

.dm-clear-float  {
	clear: both;
	float: none;
}


/* Páginas Internas */


/**
 * Pagina Sobre Nos
 */



#section-text-historia, #section-text-equipe, #section-text-trabalhe-conosco  {
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;	
}


#section-text-historia .page-title, #section-text-equipe .page-title, #section-text-trabalhe-conosco .page-title   {
	width: 700px;
	margin-left: auto;
	margin-right: auto;
}

#section-text-historia .page-title h3  {
	margin-top: 3rem;
	font-family: 'Roboto', sans-serif;
	font-size: 39px;
	line-height: 1.1em;
	font-weight: 400;
	color: #00263e;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom:45 px;
	text-align: center;
	padding-top: 30px;
}

#section-text-equipe .page-title h3, #section-text-trabalhe-conosco .page-title h3    {
	margin-top: 3rem;
	font-family: 'Roboto', sans-serif;
	font-size: 39px;
	line-height: 1.1em;
	font-weight: 400;
	color: #00263e;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom:45 px;
	text-align: center;
}

#section-text-historia .main-text  {
	background-color: inherit;
	padding-bottom: 30px;
}

#section-text-historia .main-text p  {
	margin-top: 5px;
	font-family: 'Inter', sans-serif;
	font-size: 20px;
	line-height: 1.1em;
	font-weight: 400;
	color: #00263e;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 15px;
	text-align: justify;
}

#section-text-historia .main-text div img  {
	float: right;
	width: 50%;
}

#section-text-historia .main-text-img img  {

}



/**
 * Section Equipe - Formatacao do slider
 */

#nossa-equipe .testimonial-image img  {
	border-radius: 50%;
	min-height: 150px;
	width: 150px;
	text-align: center;
	display: block;
	margin: auto;
}


/**
 * Pagina intermediaria de cursos 
 */

#dm-cursos-grid  {
	display: grid;
	grid-template-columns: 1fr;
}

.curso-item-grid  {
	display: grid;
	grid-template-columns: 1fr 4fr;
	border-top: 1px solid #ccc;
}


.dm-cursos-grid-col  {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	margin-bottom: 20px;
	animation-duration: .5s;
    animation-iteration-count: initial;
}

.dm-cursos-grid-col:hover  {
	margin-top: 10px;
	margin-bottom: 30px;
	animation-name: btnMoveUp;
	animation-timing-function: ease-in-out;
}

#dm-quadro-cursos-grid img.img-fade {
	animation-name: imgFadeOutEffect;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-duration: 5s;
	animation-direction: alternate;
}

#dm-quadro-cursos-grid img  {
	object-fit: cover;
	border-radius: 20px;
}

.curso-area-descricao  {
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	margin-right: 20px;
}

.curso-area-descricao p  {
	line-height: 30px;
	margin: 0 0 10px 0;
	font-size: 20px;
	font-weight: 400;
	color: #6f7074;
	text-align: left;
}

@keyframes btnMoveUp {
	0% {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	10% {
		margin-top: 19px;
		margin-bottom: 21px;
	}
	20% {
		margin-top: 18px;
		margin-bottom: 22px;
	}
	30% {
		margin-top: 17px;
		margin-bottom: 23px;
	}
	40% {
		margin-top: 16px;
		margin-bottom: 24px;
	}
	50% {
		margin-top: 15px;
		margin-bottom: 25px;
	}
	60% {
		margin-top: 14px;
		margin-bottom: 26px;
	}
	70% {
		margin-top: 13px;
		margin-bottom: 27px;
	}
	80% {
		margin-top: 12px;
		margin-bottom: 28px;
	}
	90% {
		margin-top: 11px;
		margin-bottom: 29px;
	}
	100% {
		margin-top: 10px;
		margin-bottom: 30px;
	}
}


.dm-page-sobre-nos-col  {
	width: 29%;
	margin-left: 2%;
	margin-right: 2%;
	margin-top: 20px;
	margin-bottom: 20px;
	animation-duration: .5s;
    animation-iteration-count: initial;
    height: 240px;
	float: left;
	text-align: center;
}

.dm-page-sobre-nos-col:hover  {
	margin-top: 10px;
	margin-bottom: 30px;
	animation-name: btnMoveUp;
	animation-timing-function: ease-in-out;
}

.page h1  {
	text-align: center;
}


/**
 * Customização de pop-up GDPR
 */

.stm_gdpr_popup-main .stm_gdpr_popup-links a.stm_gdpr_popup-accept  {
	background-color: transparent !important;
	color: white !important;
	border: 1px solid white !important;
}

.stm_gdpr_popup-main .stm_gdpr_popup-links a.stm_gdpr_popup-accept:hover  {
	color: #05538d !important;
	background-color: white !important;
}

.stm_gdpr_popup-main .stm_gdpr_popup-links a:hover {
    color: #05538d;
}




@media (max-width: 639px) { 
    
    #primary {
        font-size:1rem;
    } 
    
	.dm-page-std-content  {
		max-width: 100%;
	}

	#dm-quadro-1  {
	    /*background-color: white;*/
	    width: 100%;
	    margin-left: 0;
	    margin-right: 0;
	}

	#dm-quadro-2  {
	    /*background-color: white;*/
	    width: 100%;
	    margin-left: 0;
	    margin-right: 0;
	}

	#dm-quadro-servicos  {
	    /*background-color: white;*/
	    width: 100%;
	    margin-left: 0;
	    margin-right: 0;
	}

	#dm-quadro-parceiros  {
	    /*background-color: white;*/
	    width: 100%;
	    margin-left: 0;
	    margin-right: 0;
	}

	#dm-quadro-tecnologias  {
	    /*background-color: white;*/
	    width: 100%;
	    margin-left: 0;
	    margin-right: 0;
	}

	#dm-quadro-projetos  {
	    /*background-color: white;*/
	    width: 100%;
	    margin-left: 0;
	    margin-right: 0;
	}

	#dm-quadro-projetos-header  {
	    /*background-color: white;*/
	    width: 100%;
	    margin-left: 0;
	    margin-right: 0;
	}

	#dm-quadro-blog  {
	    /*background-color: white;*/
	    width: 90%;
	    margin-left: 5%;
	    margin-right: 5%;
	}

	#dm-quadro-blog-header  {
		width: 100%;
	}

	.dm-blog-col  {
		width: 98%;
		margin-left: 1%;
		margin-right: 1%;
	}

	.dm-destaque-col  {
		width: 98%;
		margin-left: 1%;
		margin-right: 1%;
	}

	#dm-quadro-contato-novo  {
	    max-width: 100%;
	}

	
	.dm-quadro  {
		max-width: 100%;
	}

	.dm-quadro h1  {
		font-size: 56px;
	}

	.dm-frame-5   {
		height: 100%;
	}

	.dm-frame-2   {
		width: 100%;
	}

	.dm-footer-top-col-small  {
		margin-left: auto;
		margin-right: auto;
		display: block;
		width: 100%;
	}

	#dm-footer-logo  {
		margin-left: auto;
		margin-right: auto;
		display: block;
		float: none;
	}

	#dm-footer-logo img  {
		margin-left: auto;
		margin-right: auto;
		display: block;
	}

	.dm-footer-top-col-regular  {
		width: 100%;
	}

	.dm-footer-top-col-large  {
		width: 100%;
	}

	.dm-esquerda  {
		width: 100%;
	}

	.dm-direita  {
		width: 100%;
	}

	#section-text-historia, #section-text-equipe, #section-text-trabalhe-conosco  {
		max-width: 100%;
	}


	#section-text-historia .page-title, #section-text-equipe .page-title, #section-text-trabalhe-conosco .page-title   {
		width: 100%;
	}

	.dm-cursos-grid-col  {
		width: 100%;
	}

	.dm-quadro-footer-btn button, .dm-quadro-footer-btn-page button  {
		width: 90%;
	}


}


@media (min-width: 640px) {
    
    #primary {
        font-size:1rem;
    } 
    
	.dm-page-std-content  {
		max-width: 100%;
	}

	#dm-quadro-1  {
	    /*background-color: white;*/
	    width: 100%;
	    margin-left: 0;
	    margin-right: 0;
	}

	#dm-quadro-2  {
	    /*background-color: white;*/
	    width: 100%;
	    margin-left: 0;
	    margin-right: 0;
	}

	#dm-quadro-servicos  {
	    /*background-color: white;*/
	    width: 100%;
	    margin-left: 0;
	    margin-right: 0;
	}

	#dm-quadro-parceiros  {
	    /*background-color: white;*/
	    width: 100%;
	    margin-left: 0;
	    margin-right: 0;
	}

	#dm-quadro-tecnologias  {
	    /*background-color: white;*/
	    width: 100%;
	    margin-left: 0;
	    margin-right: 0;
	}

	#dm-quadro-projetos  {
	    /*background-color: white;*/
	    width: 100%;
	    margin-left: 0;
	    margin-right: 0;
	}

	#dm-quadro-projetos-header  {
	    /*background-color: white;*/
	    width: 100%;
	    margin-left: 0;
	    margin-right: 0;
	}

	#dm-quadro-blog  {
	    /*background-color: white;*/
	    width: 90%;
	    margin-left: 5%;
	    margin-right: 5%;
	}

	#dm-quadro-blog-header  {
		width: 100%;
	}

	.dm-blog-col  {
		width: 98%;
		margin-left: 1%;
		margin-right: 1%;
	}

	.dm-destaque-col  {
		width: 98%;
		margin-left: 1%;
		margin-right: 1%;
	}

	#dm-quadro-contato-novo  {
	    max-width: 100%;
	}

	

	.dm-quadro  {
		max-width: 100%;
	}

	.dm-quadro h1  {
		font-size: 56px;
	}

	.dm-frame-5   {
		height: 100%;
	}

	.dm-frame-2   {
		width: 100%;
	}

	.dm-footer-top-col-small  {
		margin-left: auto;
		margin-right: auto;
		display: block;
		width: 100%;
	}

	#dm-footer-logo  {
		margin-left: auto;
		margin-right: auto;
		display: block;
		float: none;
	}

	#dm-footer-logo img  {
		margin-left: auto;
		margin-right: auto;
		display: block;
	}

	.dm-footer-top-col-regular  {
		width: 100%;
	}

	.dm-footer-top-col-large  {
		width: 100%;
	}

	.dm-esquerda  {
		width: 100%;
	}

	.dm-direita  {
		width: 100%;
	}

	#section-text-historia, #section-text-equipe, #section-text-trabalhe-conosco  {
		max-width: 100%;
	}


	#section-text-historia .page-title, #section-text-equipe .page-title, #section-text-trabalhe-conosco .page-title   {
		width: 100%;
	}

	.dm-cursos-grid-col  {
		width: 100%;
	}

	.dm-quadro-footer-btn button, .dm-quadro-footer-btn-page button  {
		width: 90%;
	}

} 


@media (min-width:960px) {
    
    
	.dm-page-std-content  {
		/*max-width: 1140px;*/
		max-width: 100%;
	}

	#dm-quadro-abertura .dm-quadro-abertura-inner  {
		max-width: 1140px;
	}

	#dm-quadro-abertura .dm-abertura-img  {
		width: 33%;
		display: block;
		float: left;
	}

	#dm-quadro-abertura .dm-abertura-img img  {
		width: 100%;
	}

	#dm-quadro-abertura .dm-abertura-list  {
		width: 33%;
		float: left;
		margin-left: 0;
		margin-right: 0;
	}

	#dm-quadro-abertura .dm-abertura-list h2  {
		margin-left: 0;
		text-align: left;
		padding-left: 0;
		padding-right: 0;
	}

	#dm-quadro-abertura .dm-abertura-list ul  {
		margin-top: 0;
		margin-bottom: 0;
		margin-left: 0;
		margin-right: 0;
	}


	#dm-quadro-abertura .dm-abertura-list ul li  {
		/*font-size: 16px;*/
		font-size: 20px;
		margin:  0;
		padding:  0;
	}

	#dm-quadro-abertura .dm-abertura-form  {
		width: 33%;
		float: left;
		margin-right: 0;
		margin-left: 0;
	}

	#dm-quadro-abertura .dm-form-abertura .wpcf7-submit  {
		width: 80%;
	}

	#dm-quadro-frase-abertura  {
		max-width: 1140px;
	}

	#dm-quadro-cursos-header  {
		width: 700px;
	}

	.dm-cursos-col  {
		width: 18%;
		margin-left: 1%;
		margin-right: 1%;
	}

	#dm-quadro-destaque-header  {
		width: 700px;
		margin-bottom: 5px;
	}

	#dm-quadro-destaque .sp-pcp-post-thumb-area  {
		margin: 20px;
		height: 420px;
	}

	#dm-quadro-destaque .sp-pcp-thumb img  {
	  	margin-top: 10px;
	  	margin-bottom: 10px;
	  	margin-left: auto;
	  	margin-right: auto;
	  	width: auto;
		height: 400px;
	}

	#dm-quadro-destaque .sp-pcp-thumb img  {
		border: 3px solid #d6d6d6;
  		box-shadow: 1px 1px 10px -2px rgba(0, 0, 0, .25);
	}


	#dm-quadro-passos-body  {
		max-width: 1140px;
	}

	#dm-quadro-passo-1 .dm-quadro-passo-texto  {
		width: 300px;
	}

	#dm-quadro-passo-2 .dm-quadro-passo-texto  {
		width: 200px;
	}

	#dm-quadro-passo-3 .dm-quadro-passo-texto  {
		width: 250px;
	}

	#dm-quadro-passo-1  {
		margin-top: 150px;
	}

	#dm-quadro-passo-3  {
		margin-top: 30px;
	}

	#dm-quadro-passo-3  {
		margin-top: 150px;
	}


	#dm-quadro-passos-body .dm-quadro-passo  {
		width: 31%;
		margin-left: 1%;
		margin-right: 1%;
	}

	.dm-quadro-footer-btn button, .dm-quadro-footer-btn-page button  {
		width: 350px;
	}

	#dm-quadro-pilares-novo-inner  {
	 	background-image: url("../img/nossos-4-pilares.png");
	 	background-color: transparent;
	    /*background-size: contain;*/
	    background-size: cover;
	    background-position: top right;
	    background-repeat: no-repeat;
	    width: 1140px;
	}

	#dm-quadro-pilares-novo-left  {
		width: 60%;
		margin-left: 3%;
	}

	#dm-quadro-perguntas  {
		max-width: 1140px;
	}

	#dm-quadro-perguntas-inner  {
		width: 70%;
	}

	#dm-quadro-blog  {
	    /*background-color: white;*/
	    width: 1140px;
	    margin-left: auto;
	    margin-right: auto;
	}

	#dm-quadro-blog-header  {
		width: 700px;
	}

	.dm-blog-col  {
		width: 30%;
		margin-left: 1%;
		margin-right: 1%;
	}

	.dm-destaque-col  {
		width: 23%;
		margin-left: 1%;
		margin-right: 1%;
	}

	#dm-quadro-contato  {
	    max-width: 1140px;
	}

	#dm-quadro-contato .form-contato  {
		width: 750px;
	}

	#dm-quadro-contato .dm-form-contato .wpcf7-submit  {
	   width: 80%;
	}

	#dm-quadro-contato-novo  {
	    max-width: 100%;
	}


	.dm-quadro  {
		/* max-width: 1140px; */
		max-width: 100%;
	}

	.dm-quadro h1  {
		font-size: 78px;
	}

	.dm-frame-5   {
		height: 240px;
	}

	.dm-frame-2   {
		width: 50%;
	}

	.dm-footer-top-col-small  {
		margin-left: 0;
		margin-right: 0;
		width: 50%;
	}

	#dm-footer-logo  {
		margin-left: 0;
		margin-right: 0;
		display: block;
		float: left;
	}

	#dm-footer-logo img  {
		margin-left: 0;
		margin-right: 0;
		display: inline;
	}

	.dm-footer-top-col-regular  {
		width: 50%;
	}

	.dm-footer-top-col-large  {
		width: 80%;
		margin-left: auto;
		margin-right: auto;
	}

	.dm-esquerda  {
		width: 70%;
	}

	.dm-direita  {
		width: 30%;
	}

	#section-text-historia, #section-text-equipe, #section-text-trabalhe-conosco  {
		max-width: 1140px;
	}


	#section-text-historia .page-title, #section-text-equipe .page-title, #section-text-trabalhe-conosco .page-title   {
		width: 700px;
	}

	.dm-cursos-grid-col  {
		width: 80%;
	}

	.dm-quadro-footer-btn button, .dm-quadro-footer-btn-page button  {
		width: 350px;
	}

  
} 

@media (min-width:1100px) { 
    
    
	.dm-page-std-content  {
		/*max-width: 1140px;*/
		max-width: 100%;
	}

	#dm-quadro-abertura .dm-quadro-abertura-inner  {
		max-width: 1140px;
	}

	#dm-quadro-abertura .dm-abertura-img  {
		width: 33%;
		display: block;
		float: left;
	}

	#dm-quadro-abertura .dm-abertura-img img  {
		width: 100%;
	}

	#dm-quadro-abertura .dm-abertura-list  {
		width: 33%;
		margin-left: 0;
		margin-right: 0;
	}

	#dm-quadro-abertura .dm-abertura-list h2  {
		margin-left: 0;
		text-align: left;
		padding-left: 0;
		padding-right: 0;
	}

	#dm-quadro-abertura .dm-abertura-list ul  {
		margin-top: 0;
		margin-bottom: 0;
		margin-left: 0;
		margin-right: 0;
	}

	#dm-quadro-abertura .dm-abertura-list ul li  {
		/*font-size: 16px;*/
		font-size: 20px;
		margin:  0;
		padding:  0;
	}

	#dm-quadro-abertura .dm-abertura-form  {
		width: 33%;
		float: left;
		margin-right: 0;
		margin-left: 0;
	}

	#dm-quadro-abertura .dm-form-abertura .wpcf7-submit  {
		width: 80%;
	}

	#dm-quadro-frase-abertura  {
		max-width: 1140px;
	}

	#dm-quadro-cursos-header  {
		width: 700px;
	}

	.dm-cursos-col  {
		width: 18%;
		margin-left: 1%;
		margin-right: 1%;
	}

	#dm-quadro-destaque-header  {
		width: 700px;
		margin-bottom: 5px;
	}

	#dm-quadro-destaque .sp-pcp-post-thumb-area  {
		margin: 20px;
		height: 420px;
	}

	#dm-quadro-destaque .sp-pcp-thumb img  {
	  	margin-top: 10px;
	  	margin-bottom: 10px;
	  	margin-left: auto;
	  	margin-right: auto;
	  	width: auto;
		height: 400px;
	}


	#dm-quadro-destaque .sp-pcp-thumb img  {
		border: 3px solid #d6d6d6;
  		box-shadow: 1px 1px 10px -2px rgba(0, 0, 0, .25);
	}

	#dm-quadro-passos-body  {
		max-width: 1140px;
	}

	#dm-quadro-passo-1 .dm-quadro-passo-texto  {
		width: 300px;
	}

	#dm-quadro-passo-2 .dm-quadro-passo-texto  {
		width: 200px;
	}

	#dm-quadro-passo-3 .dm-quadro-passo-texto  {
		width: 250px;
	}

	#dm-quadro-passo-1  {
		margin-top: 150px;
	}

	#dm-quadro-passo-3  {
		margin-top: 30px;
	}

	#dm-quadro-passo-3  {
		margin-top: 150px;
	}

	#dm-quadro-passos-body .dm-quadro-passo  {
		width: 31%;
		margin-left: 1%;
		margin-right: 1%;
	}

	.dm-quadro-footer-btn button, .dm-quadro-footer-btn-page button  {
		width: 350px;
	}

	#dm-quadro-pilares-novo-inner  {
	 	background-image: url("../img/nossos-4-pilares.png");
	 	background-color: transparent;
	    /*background-size: contain;*/
	    background-size: cover;
	    background-position: top right;
	    background-repeat: no-repeat;
	    width: 1140px;
	}

	#dm-quadro-pilares-novo-left  {
		width: 60%;
		margin-left: 3%;
	}

	#dm-quadro-perguntas  {
		max-width: 1140px;
	}

	#dm-quadro-perguntas-inner  {
		width: 70%;
	}

	#dm-quadro-blog  {
	    /*background-color: white;*/
	    width: 1140px;
	    margin-left: auto;
	    margin-right: auto;
	}

	#dm-quadro-blog-header  {
		width: 700px;
	}

	.dm-blog-col  {
		width: 30%;
		margin-left: 1%;
		margin-right: 1%;
	}

	.dm-destaque-col  {
		width: 23%;
		margin-left: 1%;
		margin-right: 1%;
	}

	#dm-quadro-contato  {
	    max-width: 1140px;
	}

	#dm-quadro-contato .form-contato  {
		width: 750px;
	}

	#dm-quadro-contato .dm-form-contato .wpcf7-submit  {
	   width: 80%;
	}

	#dm-quadro-contato-novo  {
	    max-width: 100%;
	}

	.dm-quadro  {
		/* max-width: 1140px; */
		max-width: 100%;
	}

	.dm-quadro h1  {
		font-size: 78px;
	}

	.dm-frame-5   {
		height: 240px;
	}

	.dm-frame-2   {
		width: 50%;
	}

	.dm-footer-top-col-small  {
		margin-left: 0;
		margin-right: 0;
		width: 10%;
	}

	#dm-footer-logo  {
		margin-left: 0;
		margin-right: 0;
		display: block;
		float: left;
	}

	#dm-footer-logo img  {
		margin-left: 0;
		margin-right: 0;
		display: inline;
	}

	.dm-footer-top-col-regular  {
		width: 20%;
	}

	.dm-footer-top-col-large  {
		width: 30%;
	}

	.dm-esquerda  {
		width: 70%;
	}

	.dm-direita  {
		width: 30%;
	}

	#section-text-historia, #section-text-equipe, #section-text-trabalhe-conosco  {
		max-width: 1140px;
	}


	#section-text-historia .page-title, #section-text-equipe .page-title, #section-text-trabalhe-conosco .page-title   {
		width: 700px;
	}

	.dm-cursos-grid-col  {
		width: 80%;
	}

	.dm-quadro-footer-btn button, .dm-quadro-footer-btn-page button  {
		width: 350px;
	}
 
}


