/* Importa a fonte Roboto Mono do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
  box-sizing: border-box;
}

/* Basic Reset & Body Styles */
body {
    margin: 0;
	font-family: 'Roboto Mono', monospace;
	/*font-family: 'Universal Sans Display', sans-serif;*/
	/*font-family: 'Inter', sans-serif;*/
    background-color: white;
    color: #333;
    /*background-color: #f5f5f5;*/
}

/* Prevents scrolling on the body when menu is open */
body.no-scroll {
    overflow: hidden;
}

.desktop { display: block; }
.mobile { display: none; }

@media (max-width: 768px) {
.desktop { display: none; }
.mobile { display: block; }
}

.container {
    padding: 0 15px;
    box-sizing: border-box;
	width: 100%;
}

/* Header Styles */
.header {
    background-color: black;
    padding: 15px 20px; /* Increased padding to give more space */
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between; /* Aligns items to ends */
    align-items: center;
    position: relative; /* For z-index of toggle button */
    z-index: 1002; /* Ensure header is above menu */

    position: fixed;         /* fixa na tela */
    top: 0px;                  /* gruda no topo */
    left: 0;                 /* gruda à esquerda */
	width: 100%;
}

.header .logo a {
    font-size: 24px;
    font-weight: bold;
    color: #f2f2f2;
    text-decoration: none;
    line-height: 1; /* Helps vertical alignment */
}

/* Menu Toggle Button */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001; /* Ensure it's above the menu when open */
    position: relative; /* For transform origin */
}

.menu-toggle .icon-bar {
    width: 100%;
    height: 3px;
    background-color: #f2f2f2;
    transition: all 0.3s ease;
    transform-origin: center center; /* Ensures rotation from the center */
}

/* Animation for toggle button (X icon) */
.menu-toggle.active .icon-bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.menu-toggle.active .icon-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .icon-bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Main Navigation Styles */
.main-nav {
    position: fixed;
    top: 80px; /* Adjust based on your header height */
    left: 0;
    width: 100%;
    height: calc(100% - 60px); /* Adjust based on your header height */
    background-color: #f5f5f5; /* Background of the menu when open */
    overflow-y: auto; /* Allows scrolling within the menu */
    transform: translateX(100%); /* Start off-screen */
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    box-sizing: border-box;
    display: flex; /* Use flexbox for vertical alignment */
    flex-direction: column;
}

.main-nav.active {
    transform: translateX(0); /* Slide into view */
}

.main-nav .nav-container {
    padding-top: 20px; /* Padding inside the open menu */
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Allow container to grow */
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1; /* Allow ul to take available space */
}

.main-nav ul li {
    margin-bottom: 0; /* No margin between main list items by default */
    border-bottom: 1px solid #ddd; /* Separator for main items */
}

.main-nav ul li:last-child {
    border-bottom: none; /* No border for the last main item */
}

.main-nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    display: block;
    padding: 15px 0; /* More padding for click area */
    position: relative; /* For arrow positioning */
}

.main-nav ul li a.external-link {
    font-size: 18px;
    color: #333;
    padding-left: 0; /* Ensure alignment */
}

/* Submenu Styles */
.main-nav .has-submenu .toggle-submenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav .submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #e8e8e8; /* Slightly different background for submenu */
    max-height: 0; /* Initially hidden */
    overflow: hidden; /* Hide overflow content */
    transition: max-height 0.3s ease-out; /* Smooth transition for expand/collapse */
}

.main-nav .submenu li a {
    font-size: 16px;
    padding: 10px 15px; /* Indent submenu items */
    color: #555;
}

.main-nav .has-submenu.open .submenu {
    /* max-height will be set by JS */
}

.main-nav .has-submenu .arrow {
    font-size: 12px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* Newsletter Signup */
.main-nav .newsletter-signup {
    margin-top: 20px; /* Space above button */
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.main-nav .newsletter-signup button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    text-align: center;
	font-family: 'Roboto Mono', monospace;	
}

/* Desktop styles - hide mobile menu elements */
@media (min-width: 768px) {
    .menu-toggle {
        display: none; /* Hide hamburger on desktop */
    }

    .header {
        justify-content: flex-start; /* Align logo to left on desktop */
    }

    .header-left, .header-right {
        display: flex; /* Ensure flex behavior */
        align-items: center;
    }

    .main-nav {
        position: static; /* No fixed positioning */
        transform: translateX(0); /* Always visible */
        height: auto;
        width: auto;
        background-color: transparent; /* No background */
        overflow-y: visible; /* No scrollbar */
        padding: 0;
        flex-direction: row; /* Horizontal on desktop */
        margin-left: auto; /* Push menu to the right */
        height: 100%; /* Match header height */
    }

    .main-nav .nav-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-grow: 0;
        padding: 0;
    }

    .main-nav ul {
        display: flex; /* Horizontal menu */
        align-items: center;
        flex-grow: 0;
    }

    .main-nav ul li {
        margin-right: 20px;
        margin-bottom: 0;
        border-bottom: none; /* No border on desktop */
        position: relative; /* For submenu positioning */
    }

    .main-nav ul li:last-child {
        margin-right: 0;
    }

    .main-nav ul li a {
        font-size: 16px;
        padding: 0;
    }

    .main-nav ul li a.external-link {
        font-size: 14px;
        padding: 0;
    }

    /* Desktop submenu styles */
    .main-nav .has-submenu .toggle-submenu .arrow {
        display: none; /* Hide arrow on desktop */
    }

    .main-nav .submenu {
        position: absolute;
        top: 100%; /* Position below parent link */
        left: 0;
        min-width: 180px; /* Example width */
        background-color: #fff;
        border: 1px solid #eee;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 10;
        max-height: none; /* Remove max-height constraint */
        overflow: visible; /* Show content */
        display: none; /* Hidden by default on desktop */
        padding: 10px 0;
    }

    .main-nav .has-submenu:hover .submenu {
        display: block; /* Show submenu on hover for desktop */
    }

    .main-nav .submenu li {
        border-bottom: none; /* No borders in desktop submenu */
    }

    .main-nav .submenu li a {
        padding: 8px 15px; /* Adjust padding for desktop submenu items */
        font-size: 15px;
        white-space: nowrap; /* Prevent text wrapping */
    }

    .main-nav .newsletter-signup {
        margin-left: 20px;
        margin-top: 0;
        border-top: none; /* No border for newsletter on desktop */
        padding-top: 0;
    }

    .main-nav .newsletter-signup button {
        width: auto;
    }
}

.container-desktop-main {
margin: 0px;
display: flex;
gap: 3px;

position: fixed;
top: 30px;
left: 20px;
right: 20px;
height: 60px; /* ajuste conforme necessário */

}

.container-desktop-esquerda {
  flex: 1; /* não cresce, não encolhe, base de 10% */
  justify-content: center;
  text-align: center;
  background-color: black;
  color: #f2f2f2;
  border-radius: 5px;
  display: flex;    
}

.container-desktop-meio {
  flex: 8; /* não cresce, não encolhe, base de 10% */
  justify-content: center;
  text-align: center;  
  background-color: black;
  color: #f2f2f2;
  border-radius: 5px;  
  display: flex;  
  gap: 44px;
  
}

.container-desktop-direita {
  flex: 1; /* não cresce, não encolhe, base de 10% */
  justify-content: center;
  text-align: center;  
  background-color: black;
  color: #f2f2f2;
  border-radius: 5px;
  display: flex;  
}  
  
.container-seccao {
margin: 120px 20px 20px 20px;
display: flex;
gap: 3px;
background-color: white;
border-radius: 5px;  
padding: 20px;
}  

@media (max-width: 768px) {
  .container-seccao {
    margin-top: 100px;
  }
}
  
.container-hero {
  background-image: url('images/banner1.jpeg');
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url('images/banner1.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin: 0px;
}	

.container-hero-services {
  background-image: url('images/hero1.jpeg');
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('images/hero1.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin: 0px;
}

.container-hero-industries {
  background-image: url('images/hero2.jpeg');
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero2.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin: 0px;
}

.container-hero-markets {
  background-image: url('images/hero3.jpeg');
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero3.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin: 0px;
}

.container-hero-products {
  background-image: url('images/hero4.jpeg');
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero4.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin: 0px;
}

.container-hero-aboutlgs {
  background-image: url('images/escritorio1.jpeg');
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('images/escritorio1.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin: 0px;
}

.container-hero-contact {
  background-image: url('images/escritorio2.jpeg');
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('images/escritorio2.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin: 0px;
}

.conteudo {
padding: 10px;
width: 70%;
}


.conteudo p {
font-size: 36px;
}

.conteudo h1 {
font-size: 50px;	
}

/* Telas médias (tablets e telas menores que 1024px) */
@media (max-width: 1024px) {
  .conteudo {
    width: 90%;
  }

  .conteudo p {
    font-size: 28px;
  }

  .conteudo h1 {
    font-size: 40px;
  }
}

/* Telas pequenas (celulares em modo retrato e até 768px) */
@media (max-width: 768px) {
  .conteudo {
    width: 95%;
    padding: 8px;
  }

  .conteudo p {
    font-size: 22px;
  }

  .conteudo h1 {
    font-size: 38px;
  }
}

/* Telas muito pequenas (até 480px) */
@media (max-width: 480px) {
  .conteudo {
    width: 100%;
    padding: 5px;
  }

  .conteudo p {
    font-size: 18px;
  }

  .conteudo h1 {
    font-size: 26px;
  }
} 
 
 
.container-conteudo-main {
display:flex;
flex-direction: column;
margin: 10px;
padding: 20px;
border-radius: 5px;
} 

.container-conteudo-main.fundo-branco {
background-color: white;
} 

.container-conteudo-main-linha {
display:flex;
gap: 10px;
} 
.container-conteudo-main-linha-item1 {
  display: flex;
  flex: 7;
  flex-direction: column;       /* importante para empilhar os textos verticalmente */
  flex-wrap: wrap;              /* permite que o conteúdo se ajuste */
  overflow-wrap: break-word;    /* quebra palavras longas */
  word-wrap: break-word;        /* suporte mais amplo */
  word-break: break-word;       /* força a quebra de palavras grandes */
  overflow: hidden;             /* oculta qualquer conteúdo que vaze */
  box-sizing: border-box;       /* inclui padding/border no tamanho total */
  max-width: 100%;              /* evita que ultrapasse o container pai */
  background-color: #f2f2f2;  
  padding: 20px;
  border-radius: 5px;
}

.container-titulo-background {
display: flex;
background-color: white;
color: 	#444444;
border-radius: 5px;
width: fit-content;
/*padding: 10px;*/
}


.container-conteudo-main-linha-item2 {
  display: flex;
  flex: 3;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 5px;
}
.container-conteudo-main-linha-item2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.container-conteudo-main p,
.container-conteudo-main h2,
.container-conteudo-main h3 {
  margin: 10px 0;
  padding: 0;
}

/* Layout padrão (desktop) já definido acima */

/* Tablet (entre 768px e 1024px) */
@media (max-width: 1024px) {
  .container-conteudo-main-linha {
    flex-direction: column;
  }

  .container-conteudo-main-linha-item1,
  .container-conteudo-main-linha-item2 {
    flex: unset;
    width: 100%;
  }

  .container-conteudo-main-linha-item2 {
    margin-top: 10px;
  }

  .container-conteudo-main-linha-item2 img {
    height: auto;
    max-height: 400px;
  }
}

/* Mobile (até 767px) */
@media (max-width: 767px) {
  .container-conteudo-main {
    margin: 5px;
  }

.container-conteudo-main h2 {
    font-size: 1.25rem; /* ou 20px */
  }

  .container-conteudo-main h3 {
    font-size: 1.1rem;  /* ou 17.6px */
  }

  .container-conteudo-main p {
    font-size: 1rem;    /* ou 16px */
  }
  .container-conteudo-main-linha {
    flex-direction: column;
  }

  .container-conteudo-main-linha-item1,
  .container-conteudo-main-linha-item2 {
    width: 100%;
    flex: none;
  }

  .container-conteudo-main-linha-item2 img {
    max-height: 250px;
    object-fit: cover;
  }
}

.container-central-texto-botao {
display:flex;
flex-direction: column;
justify-content: center;
text-align: center;
/*margin: 20px 0 20px 0px;*/
padding: 10px;
margin: 20px;
border-radius: 5px;
}

.container-central-texto-botao p {
font-size: 24px;
}

.container-central-texto-botao.fundo-cinza {
background-color: #f2f2f2;
}

.container-central-texto-botao-item {
display:flex;
text-align: center;
justify-content: center;
gap: 30px;
}

.container-central-texto-botao-item button {
padding: 10px 20px;
background-color: #007BFF;
color: white;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
margin-bottom: 20px;
}

.container-central-texto-botao-item-esquerda {
display:flex;
text-align: center;
justify-content: left;
gap: 30px;
}

.container-central-texto-botao-item-esquerda button {
padding: 10px 20px;
background-color: #007BFF;
color: white;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
margin-bottom: 20px;
}



.stats-container {
  display: flex;
  background-color: #ffffff;
  padding: 30px 50px;
  border-radius: 10px; /* Optional: if you want a subtle rounded container */
  justify-content: center;
}

.stat-item {
  text-align: center;
  padding: 0 40px; /* Adjust spacing between items */
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80%; /* Adjust height of the separator line */
  background-color: #e0e0e0; /* Color of the separator line */
}

.stat-value {
  font-size: 3.5em; /* Adjust size to match the large numbers */
  font-weight: 600; /* Semi-bold */
  color: #1a1a1a;
  line-height: 1.2;
}

.stat-unit {
  font-size: 0.6em; /* Smaller for 'mi', 's', 'hp' */
  vertical-align: super; /* Slightly raises the unit */
  font-weight: 400; /* Lighter weight for the unit */
}

.stat-description {
  font-size: 1em; /* Adjust size for the description text */
  color: #666666;
  margin-top: 5px; /* Space between value and description */
  white-space: nowrap; /* Prevents description from wrapping */
}
/* Tablet (<= 1024px) */
@media (max-width: 1024px) {
  .stat-item {
    padding: 0 30px;
  }

  .stat-value {
    font-size: 3em;
  }
}

/* Mobile médio (<= 768px) */
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    align-items: center;
    padding: 20px 30px;
  }

  .stat-item {
    padding: 20px 0;
    text-align: center;
  }

  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background-color: #e0e0e0;
    top: auto;
    right: auto;
  }

  .stat-value {
    font-size: 2.5em;
  }

  .stat-description {
    white-space: normal; /* Permite quebra de linha em telas pequenas */
  }
}

/* Mobile pequeno (<= 480px) */
@media (max-width: 480px) {
  .stats-container {
    padding: 15px 20px;
  }

  .stat-value {
    font-size: 2em;
  }

  .stat-unit {
    font-size: 0.7em;
  }

  .stat-description {
    font-size: 0.9em;
  }
}


.search_trigger {
  color: #007bff;
  cursor: pointer;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1rem;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

#search_input {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 10px;
}

#results {
  max-height: 300px;
  overflow-y: auto;
}

.result-item {
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 6px;
  margin-top: 5px;
  transition: background 0.2s;
}

.result-item:hover {
  background-color: #e6f0ff;
}

.result-item a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.container-contact {
display: flex;
justify-content: center;
margin: 50px 200px 50px 200px;
}
.container-contact-item1 {
display: flex;
justify-content: left;
flex-direction: column;
flex: 7;
}
.container-contact-item2 {
display: flex;
justify-content: left;
flex-direction: column;
flex: 3;
}
/* Tablet (<= 1024px) */
@media (max-width: 1024px) {
  .container-contact {
    margin: 40px 100px;
  }
}

/* Dispositivos médios (<= 768px) */
@media (max-width: 768px) {
  .container-contact {
    flex-direction: column;
    margin: 30px 50px;
  }

  .container-contact-item1,
  .container-contact-item2 {
    flex: none;
    width: 100%;
    margin-bottom: 20px;
  }
}

/* Dispositivos pequenos / smartphones (<= 480px) */
@media (max-width: 480px) {
  .container-contact {
    margin: 20px 20px;
  }

  .container-contact-item1,
  .container-contact-item2 {
    margin-bottom: 15px;
  }
}

.container-footer {
  display: flex;
  justify-content: center;      /* Centraliza verticalmente */
  align-items: center;          /* Centraliza horizontalmente */
  margin: 0 auto;               /* Centraliza horizontalmente dentro do container pai (caso tenha largura definida) */
  text-align: center;
  gap: 20px;
}

.container-footer-block {
  display: flex;
  flex-direction: column;
  justify-content: center;      /* Centraliza verticalmente */
  align-items: center;          /* Centraliza horizontalmente */
  margin: 0 auto;               /* Centraliza horizontalmente dentro do container pai (caso tenha largura definida) */
  text-align: center;
}

.margem-topo {
  display: flex;
  flex-direction: column;
  margin-top: 100px;            /* Centraliza horizontalmente dentro do container pai (caso tenha largura definida) */
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #222;
  color: white;
  padding: 15px;
  text-align: center;
  z-index: 1000;
}

.cookie-banner button {
  margin-left: 10px;
  padding: 8px 12px;
  background-color: #00c853;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.container-chat-naook {
  display: flex;
  justify-content: center;      /* Centraliza verticalmente */
  align-items: center;          /* Centraliza horizontalmente */
  margin: 0 auto;               /* Centraliza horizontalmente dentro do container pai (caso tenha largura definida) */
  text-align: center;
  width: 70%;
}

.container-chat-naook p {
font-size: 36px;
}

.margem-topo-chat-naook {
  display: flex;
  flex-direction: column;
  margin-top: 160px;            /* Centraliza horizontalmente dentro do container pai (caso tenha largura definida) */
}

.submenud_container {
  position: relative;
}

.submenud_dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  min-width: 160px;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
  padding: 10px;
  border-radius: 8px;
  z-index: 1000;
}

.submenud_dropdown a {
  display: block;
  color: #333;
  padding: 8px;
  text-decoration: none;
}

.submenud_dropdown a:hover {
  background-color: #f1f1f1;
}

.submenud_show {
  display: block;
}

.modal_newsletter {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal_newsletter_conteudo {
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  width: 90%;
  max-width: 700px;
  position: relative;
  text-align: center;
  font-family: 'Roboto Mono', monospace;  
}

.modal_newsletter_conteudo input {
border-radius: 5px;
padding: 10px;
width: 40%;
}

.modal_newsletter_conteudo button {
padding: 10px 20px;
background-color: #007BFF;
color: white;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
margin-bottom: 20px;
}

.modal_newsletter_fechar {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 22px;
  cursor: pointer;
}

.blog-container {
    max-width: 800px;
    margin: 10px auto;
    padding: 20px;
}

.blog-container article {
    margin: 30px;
    padding: 20px;
    border-bottom: 1px solid #ccc;
    background-color: #f9f9f9;	
	border-radius: 12px;
}

