@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Ubuntu", sans-serif;
}

body {
  background: #faf9f6;
  color: #2a2a2a;
}

/* Configuração Geral de Layout */
.max-width {
  max-width: 1300px;
  padding: 0 40px;
  margin: auto;
}

section {
  padding: 80px 0;
}

/* --- Navbar --- */
/* --- Ajuste na Navbar para ficar sempre fixa e visível --- */
.navbar {
  position: fixed;
  width: 100%;
  top: 0; /* Garante que grude no topo */
  left: 0;
  z-index: 1000; /* Aumentado para sobrepor tudo */
  padding: 20px 0;
  transition: all 0.3s ease;
  background: #2d5a27; /* Fundo sólido para garantir visibilidade */
}

.navbar .menu {
  display: flex !important;
  list-style: none;
}

.navbar.sticky {
  background: #2d5a27 !important; /* Cor sólida ao rolar */
  padding: 10px 0;
}

.navbar .max-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .logo a {
  color: #faf9f6;
  font-size: 35px;
  font-weight: 500;
}

.navbar .logo a span {
  color: #801d1d;
  transition: color 0.3s ease;
  font-weight: 800;
}

.navbar.sticky .logo a span {
  color: #faf9f6;
}

.navbar .logo a img {
  height: 50px; /* Ajuste o tamanho da sua logo aqui */
  vertical-align: middle;
  margin-right: 10px;
}

.navbar .menu li {
  list-style: none;
  display: inline-block;
}

.navbar .menu li a {
  color: #faf9f6;
  font-size: 18px;
  font-weight: 500;
  margin-left: 25px;
  transition: color 0.3s ease;
}

.navbar .menu li a:hover {
  color: #a62626; /* Vermelho Rústico no hover */
}

/* Botão Menu Mobile */
.menu-btn {
  color: #faf9f6;
  font-size: 23px;
  cursor: pointer;
  display: none;
}

/* --- Home --- */
.home {
  display: flex;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("img/header.webp") no-repeat center;
  height: 100vh;
  color: #faf9f6;
  min-height: 500px;
  background-size: cover;
  background-attachment: fixed;
  align-items: center;
}

.home .home-content .text1 {
  font-size: 27px;
}

.home .home-content .text2 {
  font-size: 60px;
  font-weight: 600;
  margin-left: -3px;
}

.home .home-content .text3 {
  font-size: 40px;
  margin: 5px 0;
}

.home .home-content .text3 span {
  color: #25d366; /* Verde "WhatsApp" que brilha no escuro, ou use seu verde marca #2D5A27 */
  background: transparent; /* Remove o fundo branco */
  font-weight: 700;
  /* Adiciona uma sombra leve para garantir leitura se a foto for clara */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.home .home-content a {
  display: inline-block;
  background: #a62626;
  color: #faf9f6;
  font-size: 25px;
  padding: 12px 36px;
  margin-top: 20px;
  border-radius: 6px;
  border: 2px solid #a62626;
  transition: all 0.3s ease;
  text-align: center;
}

.home .home-content a:hover {
  color: #a62626;
  background: none;
}

/* --- Títulos das Seções --- */
section .title {
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 60px;
  padding-bottom: 25px;
  position: relative;
  color: #2a2a2a;
}

section .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 180px;
  height: 3px;
  background: #2a2a2a;
  transform: translateX(-50%);
}

section .title::after {
  position: absolute;
  bottom: -12px;
  left: 50%;
  font-size: 20px;
  color: #2d5a27;
  background: #faf9f6;
  padding: 0 10px;
  transform: translateX(-50%);
}

/* Textos dos Títulos ::after específicos */
.about .title::after {
  content: "Comer Bem";
}
.services .title::after {
  content: "Para Você";
}
.skills .title::after {
  content: "No Precinho";
}
.projects .title::after {
  content: "Deliciosos";
}
.how-it-works .title::after {
  content: "Praticidade";
}
.testimonials .title::after {
  content: "Confiança";
}
.contact .title::after {
  content: "Fale Conosco";
}

/* --- Sobre (About) --- */
.about .about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.about .about-content .column {
  width: 45%;
}

.about .about-content .left img {
  height: 400px;
  width: 400px;
  object-fit: cover;
  border-radius: 6px;
}

.about .about-content .right {
  width: 55%;
}

.about .about-content .right .text {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about .about-content .right .text span {
  color: #2d5a27;
}

.about .about-content .right p {
  text-align: justify;
  margin-bottom: 15px;
}

.about .about-content .right a {
  display: inline-block;
  background: #2d5a27;
  color: #faf9f6;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 30px;
  margin-top: 20px;
  border-radius: 6px;
  border: 2px solid #2d5a27;
  transition: all 0.3s ease;
}

.about .about-content .right a:hover {
  color: #2d5a27;
  background: none;
}

/* --- Linhas (Services) --- */
.services,
.projects {
  background: #faf9f6;
}

.services .services-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.services .services-content .card {
  width: calc(33.33% - 20px);
  background: #faf9f6;
  text-align: center;
  border: 2px solid #2d5a27;
  border-radius: 6px;
  padding: 20px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.services .services-content .card:hover {
  background: #2d5a27;
  color: #faf9f6;
  transform: scale(1.05);
}

.services .services-content .card .box {
  transition: all 0.3s ease;
}

.services .services-content .card i {
  font-size: 50px;
  color: #2d5a27;
  transition: color 0.3s ease;
}

.services .services-content .card:hover i {
  color: #faf9f6;
}

.services .services-content .card .text {
  font-size: 25px;
  font-weight: 500;
  margin: 10px 0 7px 0;
}

.services .services-content .card h3 {
  font-size: 20px;
  background-color: #2d5a27;
  color: #faf9f6;
  border-radius: 25px;
  padding: 5px 15px;
  display: inline-block;
  margin: 10px 0;
  border: 1px solid #faf9f6;
}

.services .services-content .card:hover h3 {
  background-color: #faf9f6;
  color: #2d5a27;
}

.services .services-content .card .cta {
  font-size: 14px;
  font-weight: bold;
}

/* --- Planos (Skills) --- */
.line-selector {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 20px;
  border: 2px solid #2d5a27;
  background: #faf9f6;
  color: #2d5a27;
  cursor: pointer;
  border-radius: 25px;
  font-weight: 500;
  transition: 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
  background: #2d5a27;
  color: #fff;
}

.skills-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px; /* Garante espaço entre os cards tanto lateral quanto vertical */
  align-items: stretch; /* Força todos os cards a terem a mesma altura */
}

.card-plan {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  background: #faf9f6;
  border: 2px solid #2d5a27;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}

/* Garante que o conteúdo interno ocupe espaço */
.card-plan .box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-plan.featured {
  border-color: #a62626;
  transform: scale(1.05);
  z-index: 2;
}

.card-plan h3 {
  font-size: 28px;
  color: #2d5a27;
  margin: 20px 0;
}

.price-container {
  margin: 20px 0;
  min-height: 80px;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  display: block;
}

.discount-badge {
  background: #2d5a27;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  display: inline-block;
  margin-top: 5px;
}

.card-plan.featured .discount-badge {
  background: #a62626;
}

.btn-plan {
  display: inline-block;
  background: #a62626;
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
  margin-top: 20px;
  transition: 0.3s;
}

.btn-plan:hover {
  background: #801d1d;
}

.delivery-info {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: #555;
}

/* --- ESTILIZAÇÃO DO SISTEMA DE PEDIDOS --- */
.menu-selection {
  padding: 80px 0;
  background: #fdfdfd;
}

.menu-selection .title {
    text-align: center;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 60px;
  padding-bottom: 25px;
  position: relative;
  color: #2a2a2a;
}

.menu-selection .title::after{
  content: "É bem fácil";
}
.menu-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 850px;
  margin: 0 auto;
}
.selection-header {
  border-bottom: 2px solid #2d5a27;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.menu-box select,
.menu-box input[type="number"] {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.checkbox-personalizado {
  background: #e9f5e8;
  padding: 10px;
  border-radius: 5px;
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  color: #2d5a27;
}
.acomp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 10px;
}
.acomp-item {
  background: #f9f9f9;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.acomp-check {
  display: flex;
  align-items: center;
  gap: 8px;
}
.g-acomp {
  width: 80px !important;
  height: 30px;
  font-size: 12px;
}

.btn-add {
  width: 100%;
  background: #2d5a27;
  color: #fff;
  padding: 15px;
  border: none;
  border-radius: 8px;
  margin-top: 20px;
  cursor: pointer;
  font-weight: bold;
}
#carrinho-itens {
  list-style: none;
  margin-top: 20px;
}
#carrinho-itens li {
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 5px solid #2d5a27;
}
#carrinho-itens button {
  background: #ff4d4d;
  color: #fff;
  border: none;
  padding: 5px 8px;
  border-radius: 4px;
  cursor: pointer;
}

.btn-zap-ativo {
  width: 100%;
  background: #25d366;
  color: white;
  padding: 20px;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 20px;
  cursor: pointer;
}
.disabled {
  background: #ccc !important;
  cursor: not-allowed;
  width: 100%;
  padding: 20px;
  border: none;
  border-radius: 8px;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .acomp-grid {
    grid-template-columns: 1fr;
  }
}

/* MODAL */
/* --- MODAL DE DETALHES --- */
.modal-details {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow-y: auto;
}

.modal-content {
  background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* No desktop */
    max-width: 900px;
    border-radius: 10px;
    position: relative;
    display: flex !important;
    flex-direction: row; /* Lado a lado no desktop */
    flex-wrap: nowrap;
    gap: 20px;
    box-sizing: border-box;
}

@media (max-width: 600px) {
    .modal-content {
        flex-direction: column !important; /* FORÇA O CONTEÚDO A DESCER */
        width: 95% !important;
        padding: 10px !important;
        max-height: 90vh;
        overflow-y: auto !important; /* Permite rolar se o texto for grande */
    }

    .modal-img-container, .modal-body {
        width: 100% !important; /* Ocupa a largura toda da tela */
        min-width: 100% !important;
    }

    #modal-img {
        height: 200px !important; /* Reduz a foto para sobrar espaço para a tabela */
    }

    .nutri-table {
        display: table !important;
        width: 100% !important; /* Força a tabela a respeitar o card */
        table-layout: fixed; /* Impede que colunas empurrem a largura */
    }

    .nutri-table td, .nutri-table th {
        font-size: 12px !important;
        padding: 5px 2px !important;
    }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Estilo do botão de fechar */
.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 600px) {
    .close-modal {
        top: 10px;
        right: 10px;
        background: #2D5A27; /* Verde no mobile para ficar bem visível */
    }
}

#modal-titulo {
  color: #2d5a27;
  margin-bottom: 15px;
}

.portion-info {
  background: #f1f8f0;
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
}


.nutri-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: #fff;
    box-sizing: border-box; 
}

.nutri-table th, .nutri-table td {
    padding: 8px 4px; 
    font-size: 0.8rem; 
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.nutri-table th {
    background-color: #2D5A27;
    color: white;
}

.nutri-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.allergens {
    margin-top: 15px;
    font-weight: bold;
    color: #d9534f; /* Cor de alerta para alérgenos */
    font-size: 0.8rem;
}

.observation-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2d5a27;
}

#observacoes-gerais {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Ubuntu", sans-serif;
  font-size: 14px;
  resize: vertical; /* Permite aumentar apenas a altura */
  outline: none;
  transition: 0.3s;
}

#observacoes-gerais:focus {
  border-color: #2d5a27;
  box-shadow: 0 0 5px rgba(45, 90, 39, 0.2);
}

/* Notificação Flutuante */
.toast-success {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2d5a27;
  color: white;
  padding: 15px 25px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  display: none;
  animation: slideIn 0.5s ease;
}
@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* --- Pratos (Carousel) --- */
.projects .carousel .card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ddd;
    transition: 0.3s;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Novo container para controlar a imagem e a lupa separadamente */
.projects .carousel .card .img-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.projects .carousel .card .img-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease, filter 0.3s ease;
}

/* Efeito Lupa */
.projects .carousel .card .img-container::after {
    content: '\f00e  Ver Detalhes';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(45, 90, 39, 0.85);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    opacity: 0;
    transition: 0.3s;
    font-size: 13px;
    z-index: 2;
}

.projects .carousel .card:hover .img-container img {
    filter: brightness(0.7);
    transform: scale(1.1);
}

.projects .carousel .card:hover .img-container::after {
    opacity: 1;
}

/* A caixa de texto volta a ter padding sem ser afetada pela lupa */
.projects .carousel .card .box {
    padding: 15px !important;
    text-align: center;
    background: #fff;
}

.projects .carousel .card .text {
    font-size: 18px;
    font-weight: 600;
    color: #2a2a2a;
    margin: 5px 0;
}

.plate-line {
    font-size: 13px;
    color: #2D5A27;
    font-weight: 500;
    margin: 0;
}

.projects .plate-line {
  font-size: 0.9rem;
  color: #2d5a27;
  font-weight: 600;
  text-transform: uppercase;
}

/* Container de informações do carrossel */
.carousel-info {
    margin-bottom: 15px;
    padding-left: 10px;
}

/* Texto de instrução "Clique para detalhes" */
.carousel-info span {
    font-size: 0.9rem;
    color: #2D5A27;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

/* Aviso de imagem ilustrativa */
.img-disclaimer {
    font-size: 0.75rem;
    color: #888;
    font-style: italic;
}

/* --- Como Funciona --- */
.how-it-works {
  background: #fff;
}

.how-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.how-content .card {
  flex: 1;
  min-width: 280px;
  background: #faf9f6;
  text-align: center;
  border-radius: 10px;
  padding: 30px 20px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.how-content .card:hover {
  background: #2d5a27;
  color: #fff;
  transform: translateY(-5px);
}

.how-content .card i {
  font-size: 50px;
  color: #2d5a27;
  margin-bottom: 20px;
}

.how-content .card:hover i {
  color: #fff;
}

.how-content .card .text {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* --- Seção de Prints de Depoimentos --- */
.testimonials {
    background: #fff;
}

.testimonial-card {
    background: transparent !important;
    border: none !important;
    padding: 10px;
}

.img-container-print {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 5px solid #f1f1f1; /* Moldura leve para parecer um celular */
    transition: transform 0.3s ease;
}

.img-container-print img {
    width: 100% !important;
    height: auto !important; /* Mantém a proporção do print do WhatsApp */
    display: block;
}

.testimonial-card:hover .img-container-print {
    transform: translateY(-5px);
    border-color: #2D5A27; /* Destaca com o verde da marca ao passar o mouse */
}

/* Ajuste específico para o carrossel de depoimentos no mobile */
@media (max-width: 600px) {
    .testimonial-card {
        padding: 5px;
    }
}

/* --- Contato --- */
.card-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.card-container .card .box a {
  font-size: 50px;
  color: #2d5a27;
  transition: 0.3s;
}

.card-container .card .box a:hover {
  color: #a62626;
  transform: scale(1.1);
  display: inline-block;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact .column {
  width: calc(50% - 30px);
}

.contact .left .text,
.contact .right .text {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .left .icons .row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact .left .icons .row i {
  font-size: 25px;
  color: #2d5a27;
  margin-right: 20px;
  width: 30px;
  text-align: center;
}

.contact .right form .field,
.contact .right form .fields .field {
  width: 100%;
  margin-bottom: 15px;
}

.contact .right form .field input,
.contact .right form .textarea textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  background: #fcfcfc;
}

.contact .right form .field input:focus,
.contact .right form .textarea textarea:focus {
  border-color: #2d5a27;
  background: #fff;
}

.contact .right form .textarea textarea {
  height: 100px;
  resize: none;
}

.contact .right .button-area button {
  padding: 10px 30px;
  background: #2d5a27;
  color: #fff;
  border: 2px solid #2d5a27;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.contact .right .button-area button:hover {
  background: none;
  color: #2d5a27;
}

/* Botão Flutuante */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* --- Seção FAQ --- */
.faq {
  background: #fff; /* Fundo branco para diferenciar */
}

.faq .title::after {
  content: "Tira-Dúvidas"; /* Subtítulo da seção */
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq .wrapper {
  background-color: #faf9f6;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.faq .toggle {
  width: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
  color: #2d5a27; /* Verde Marca */
  padding: 20px;
  cursor: pointer;
  font-family: "Ubuntu", sans-serif;
}

.faq .content {
  position: relative;
  font-size: 16px;
  text-align: justify;
  line-height: 1.6;
  height: 0; /* Começa fechado */
  overflow: hidden;
  transition: all 0.5s ease;
  background: #fff;
  color: #555;
}

.faq .content p {
  padding: 20px;
  border-top: 1px solid #eee;
}

/* Estado Ativo (Quando aberto) */
.faq .wrapper.active .content {
  height: auto;
}

.faq .wrapper.active .toggle .icon {
  transform: rotate(135deg); /* Gira o ícone de + para x */
  color: #a62626; /* Muda para vermelho */
}

.faq .toggle .icon {
  transition: transform 0.3s ease;
  font-size: 18px;
}

/* Botão Flutuante "Monte Seu Pedido" */
.float-btn-order {
  position: fixed;
  bottom: 20px;
  left: 50%;
  background: #a62626;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  z-index: 1001; /* Acima de tudo */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.float-btn-order:hover {
  background: #8e1f1f;
  transform: scale(1.05);
}

.float-btn-order.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Ajustes da Calculadora de Frete */
.btn-frete:hover {
  background: #333 !important;
  transform: scale(1.02);
}

/* Footer */
footer {
  background: #111;
  padding: 20px;
  color: #fff;
  text-align: center;
}

footer a {
  color: #2d5a27;
  font-weight: bold;
}

.price-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
  width: 100%;
}

.price-tag {
  background: #fff;
  border: 2px solid #2d5a27;
  padding: 10px 20px;
  border-radius: 15px;
  box-shadow: 4px 4px 0px #2d5a27;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.price-tag span {
  display: block;
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
}

.price-tag strong {
  font-size: 1.2rem;
  color: #a62626;
}

.line-selector .tab-btn.active {
  background-color: #2d5a27; /* Cor verde da sua marca */
  color: #fff;
  border-bottom: 3px solid #fecb00; /* Destaque inferior */
}
/* --- Media Queries (Responsividade) --- */
@media (max-width: 991px) {
  .max-width {
    padding: 0 50px;
  }
}

@media (max-width: 947px) {
  .menu-btn {
    display: block;
    z-index: 999;
  }

  .navbar .menu {
    position: fixed;
    height: 100vh;
    width: 100%;
    left: -100%;
    top: 0;
    background: #1e3d1a;
    text-align: center;
    padding-top: 80px;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    display: flex !important;
  }
  .navbar .menu.active {
    left: 0;
  }
  .navbar .menu li {
    display: block;
  }
  .navbar .menu li a {
    display: inline-block;
    margin: 20px 0;
    font-size: 25px;
  }

  .home .home-content .text2 {
    font-size: 70px;
  }
  .home .home-content .text3 {
    font-size: 35px;
  }

  .about .about-content .column {
    width: 100%;
    margin-bottom: 30px;
  }
  .about .about-content .left {
    display: flex;
    justify-content: center;
  }

  .services .services-content .card {
    width: calc(50% - 20px);
  }

  .skills-content {
    flex-direction: column;
    align-items: center;
  }

  .contact .column {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 690px) {
  .services .services-content .card {
    width: 100%;
  }
  .home .home-content .text2 {
    font-size: 50px;
  }
  .home .home-content .text3 {
    font-size: 27px;
  }
}

@media (max-width: 690px) {
  section .title {
    font-size: 30px; /* Reduz o título principal */
    padding-bottom: 20px;
  }
  section .title::after {
    font-size: 14px; /* Reduz o subtítulo para não brigar por espaço */
    bottom: -5px;
    width: auto; /* Deixa a largura automática */
    padding: 0 15px; /* Espaço nas laterais do subtítulo */
  }
}

@media (max-width: 947px) {
  .card-plan.featured {
    transform: none; /* Remove o zoom do card do meio no mobile */
    border-color: #2d5a27; /* Volta a cor normal se quiser */
  }
}

@media (max-width: 600px) {
  .faq .toggle {
    font-size: 16px;
    padding: 15px;
  }
}
