* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

a{
    color: white;
    text-decoration: none;
}

body {
    background: #f8f9fb;
    color: #333;
}

* {
    -webkit-tap-highlight-color: transparent;
}

header {
    background: linear-gradient(to right, #131414, #ff6600);
    color: white;
    padding: 0.4rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .logo {
    display: flex;
    align-items: center;
}

header nav a {
    margin: 0 1rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
}

header nav a:hover {
    text-decoration: underline;
}

.hero {
    background-size: cover;
    background-position: 50% 40%;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    min-height: 400px;
    background-image: url(./img/imagem_hero.png);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    background: #02b128;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    margin-top: 1rem;
}

ul{
    padding-left: 2.5rem;
}

.btn:hover {
    background: #02b128;
}

.section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: auto;
}

.section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card i {
    font-size: 2rem;
    color: #ff7c01;
    margin-bottom: 1rem;
}

footer {
    background: #131414;
    color: #d1d5db;
    padding: 2rem;
    text-align: center;
    padding-right: 5rem;
    box-sizing: border-box;
    padding-left: 5rem;
}

.break-section {
    background-color: white;
    text-align: center;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.break-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.break-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: auto;
    color: #555;
}

.break-section img {
    width: 100%;
    border-radius: 1rem;
}


.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 2rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.comparison-table thead th {
    background-color: #ff7c01;
    color: white;
    padding: 1.25rem;
    text-align: center;
    font-weight: 600;
}

th{
    min-width: 160px;
}

.comparison-table thead th:first-child {
    text-align: left;
    background-color: #ff6600;
}

.comparison-table tbody td {
    padding: 1.25rem;
    text-align: center;
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    background-color: #f8fafc;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.fa-check {
    color: #10b981;
    font-size: 1.25rem;
}

.fa-times {
    color: #ef4444;
    font-size: 1.25rem;
}

details.faq-item {
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    background-color: white;
    transition: all 0.3s ease;
}

details.faq-item[open] .faq-question i {
    transform: rotate(180deg);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    cursor: pointer;
    font-weight: 600;
    background-color: #576083;
    color: white;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: #445288;
}

.faq-question h3 {
    margin: 0;
    font-size: 1rem;
    text-align: start;
}

.faq-question i {
    transition: transform 0.3s;
}

.div_input_solicitar {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.highlight {
    padding: 3rem 2rem;
    text-align: center;
}

.faq-answer{
    padding: 1.25rem;
    padding-top: 0.6rem;
}

.faq-answer p{
    text-align: start;
}

#funcionalidades{
    scroll-margin-top: 50px;
}

#publico{
    scroll-margin-top: 50px;
}

#porque-usar{
    scroll-margin-top: 50px;
}

#faq{
    scroll-margin-top: 50px;
}

#hero{
    scroll-margin-top: 50px;
}

#contato{
    scroll-margin-top: 50px;
}

button.btn {
    background: #02b128;
    color: white;
}

.logo_header{
    height: 50px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

a, button, input, select, textarea {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

nav.mobile {
    display: flex;
    flex-direction: column;
    background-color: #1a1a1a;
    position: fixed;
    top: 62.78px;
    right: 0px;
    border-radius: 8px;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 99;

    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

nav.mobile.show {
    max-height: 500px; 
    opacity: 1;
}


nav.mobile a {
    padding: 1rem;
    border-bottom: 1px solid #333;
    text-align: right;
    color: white;
}

nav.mobile a:last-child {
    border-bottom: none;
}

.publico-alvo{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.icone_whatsapp{
    position: fixed;
    cursor: pointer;
    bottom: 16px;
    right: 16px;
    width: 56px;
}

.blog-container {
    margin: 0 auto;
}

.blog-post {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.blog-post h3 {
    color: #ff7c01;
    margin-bottom: 0.5rem;
}

.blog-post .date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-post img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1rem 0;
}

#blog {
    scroll-margin-top: 50px;
}

.imagem-com-pelicula {
    position: relative;
}

.imagem-com-pelicula img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

.imagem-com-pelicula .pelicula {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    pointer-events: none;
}

#modalConfirmacao{
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.post-container {
    max-width: 1136px;
    margin: 0 auto;
    padding: 2rem;
}

.post-content {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.post-title {
    color: #ff8a00;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.post-meta {
    color: #666;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
}

.post-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1rem 0;
}

.post-body {
    line-height: 1.6;
    margin-top: 0.5rem;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: #ff8a00;
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}

@media (max-width: 990px) {
    header nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    nav.mobile.show {
        display: flex;
    }
}





/* Estilos para a página institucional */
.institutional-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.institutional-text {
  flex: 1;
}

.institutional-text p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.institutional-image {
  flex: 1;
}

.institutional-image img {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.highlight-text {
  font-weight: 600;
  color: #ff6600;
  font-style: italic;
  margin-top: 2rem;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.delivery-item {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.delivery-item:hover {
  transform: translateY(-5px);
}

.delivery-item i {
  font-size: 1.5rem;
  color: #ff6600;
  margin-bottom: 1rem;
}

.delivery-item h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #ff6600;
  color: white;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.social-icon:hover {
  background-color: #e05a00;
}

.slogan {
  font-style: italic;
  font-weight: 600;
  margin-top: 1rem;
  color: #ff7c01;
  font-size: 1.2rem;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-content p:first-child {
  font-style: italic;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .institutional-content {
    flex-direction: column;
  }
  
  .dna-cards {
    grid-template-columns: 1fr;
  }
}

.p_institucional{
    max-width: none !important;
}

@keyframes shake-whatsapp {
  0%   { transform: rotate(0deg); }
  5%   { transform: rotate(-8deg); }
  10%  { transform: rotate(8deg); }
  15%  { transform: rotate(-7deg); }
  20%  { transform: rotate(7deg); }
  25%  { transform: rotate(-5deg); }
  30%  { transform: rotate(5deg); }
  35%  { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}


.icone_whatsapp {
  position: fixed;
  cursor: pointer;
  bottom: 16px;
  right: 16px;
  width: 56px;
  z-index: 999;
  animation: shake-whatsapp 3s ease-in-out infinite;
  animation-delay: 2s;
  animation-fill-mode: both;
  transition: transform 0.3s;
}

.titulo_blog{
    margin-top: 0.8rem;
}

.div_conteudo{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
