body {
    text-align: center;
    margin: auto;
    background: linear-gradient(to bottom, rgb(41, 41, 223), rgb(0, 0, 0));
    color: antiquewhite;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

nav {
    display: flex;              /* ativa o flexbox */
    justify-content: space-between; /* logo à esquerda, menu à direita */
    align-items: center;        /* alinha verticalmente */
    padding: 10px 20px;
}

.logo {
    width: 150px; /* tamanho da logo */
}

.menu {
    list-style: none;
    display: flex;       /* itens lado a lado */
    gap: 40px;           /* espaço entre os itens */
    margin: 0;
    padding: 0;
}

.menu li {
    display: flex;       /* garante alinhamento interno */
}

.menu a {
    display: flex;       /* ícone + texto lado a lado */
    align-items: center; /* centraliza verticalmente */
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 20px;
    padding: 20px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.menu a i {
    margin-right: 8px;   /* espaço entre ícone e texto */
    font-size: 22px;
}

.menu a:hover {
    color: rgb(235, 235, 235);
    background-color: rgb(0, 140, 255);
}



.logo { 
    width: 150px;
}

.imagemcarroselbase {
    width: 750px
}

h2 {
    text-decoration: underline;
}

.lista {
    list-style: none;       /* remove bolinhas */
    padding: 0;
    margin: 20px auto;
    width: 400px;           /* largura fixa */
    background-color: rgb(10, 161, 221);
    border-radius: 10px;
    padding: 20px;
}

.lista li {
    font-size: 18px;
    color: white;
    margin: 10px 0;
    display: flex;          /* ícone + texto lado a lado */
    align-items: center;
}

.lista li i {
    margin-right: 10px;     /* espaço entre ícone e texto */
    font-size: 20px;
}



footer {
    background-color: black;
    color: white;
    padding: 10px 20px;   /* afasta o conteúdo das bordas */
    text-align: left;     /* alinha o texto à esquerda */
    font-size: 14px;
}

.footer-content {
    margin-left: 20px;    /* dá um espaço extra da borda esquerda */
}

.footer-content ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.footer-content li {
    margin: 8px 0;
    display: flex;
    justify-content: left;
    align-items: left;
    font-size: 16px;
}

.footer-content i {
    margin-right: 8px; /* espaço entre ícone e texto */
    color: rgb(0, 140, 255); /* cor dos ícones */
}

.footer-bottom {
    margin-top: 15px;
    font-size: 14px;
    border-top: 1px solid #444;
    padding-top: 10px;
}


/* Pagina de serviços */

.listadeservicos {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px; /* largura máxima da seção */
    display: grid;
    grid-template-columns: 1fr 1fr; /* dois cards por linha */
    gap: 20px; /* espaço entre os cards */
}

.listadeservicos li {
    background: #0aa1dd; /* azul moderno */
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.listadeservicos li:hover {
    transform: translateY(-5px); /* efeito de levantar ao passar o mouse */
}

.listadeservicos i {
    font-size: 30px;
    margin-bottom: 10px;
    color: #fff;
}

.listadeservicos h2 {
    font-size: 20px;
    margin: 10px 0;
}

.listadeservicos p {
    font-size: 14px;
    line-height: 1.5;
}

/* Pagina Sobre*/

.sobre {
    max-width: 900px;       /* largura máxima para não ficar muito largo */
    margin: 50px auto;      /* centraliza na página */
    padding: 20px;
    text-align: center;     /* centraliza o texto */
    background: #0aa1dd;    /* fundo claro */
    border-radius: 10px;    /* cantos arredondados */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* leve sombra */
}

.sobre h3 {
    font-size: 26px;
    color: #fcfeff;         /* azul destaque */
    margin-bottom: 20px;
    font-weight: bold;
    text-decoration: underline;
}

.sobre p {
    font-size: 16px;
    line-height: 1.6;       /* espaçamento entre linhas */
    color: #ffffff;            /* texto mais escuro para leitura */
    margin-bottom: 15px;
}

/* Formulario */

/* Estilo do formulário */
.pedido {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
}

.pedido form {
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.pedido h2 {
  color: #0aa1dd;
  margin-bottom: 12px;
  text-align: left;
}

.label {
  display: block;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 6px;
  color: #333;
}

input[type="text"],
select,
textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #d0d7df;
  border-radius: 6px;
  font-size: 15px;
  color: #222;
}

.contato-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 12px;
  font-weight: 600;
  color: #333;
}

.doc-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.doc-row select {
  width: 140px;
  padding: 10px;
}

.doc-row input {
  flex: 1;
}

.form-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}

.btn {
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
}

.btn.primary {
  background: #0aa1dd;
  color: white;
  border-color: #0890c6;
}

.btn:hover {
  opacity: 0.95;
}

.form-message {
  margin-top: 12px;
  font-size: 14px;
  color: #0a7a9a;
}

/* Responsivo */
@media (max-width: 640px) {
  .doc-row {
    flex-direction: column;
    align-items: stretch;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/*Botões de contato*/

.btn-whatsapp, .btn-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    margin: 10px 5px;
    transition: background 0.3s ease;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
}

.btn-email {
    background: #0aa1dd;
    color: white;
}

.btn-email:hover {
    background: #087bb5;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
}