/* seja_beneficiario.css */
body {
    font-family: Arial, sans-serif;
    background-image: url('assets/capafundo.png');
    margin: 0;
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ced1ce;
    padding: 10px 20px;
}

.navbar .logo img {
    height: 50px;
}

.navbar .menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar .menu li {
    margin-left: 20px;
}

.navbar .menu li a {
    color: #146345;
    text-decoration: none;
    font-size: 16px;
}

.navbar .menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.beneficiario {
    padding: 20px;
    background-color: #c7c1c1;
    box-shadow: 0 0 10px rgba(60, 44, 109, 0.1);
    margin: 20px;
    border-radius: 40px;
    animation: fadeIn 5s ease-in-out;
    width: 40%;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #b6c6d4;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
    border-radius: 40px;
}




footer {
    background-color: #ced1ce;
    color: #270653;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    height: 40px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: #363535;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #0e0d0d;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .navbar .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #29be8d;
    }

    .navbar .menu.active {
        display: flex;
    }

    .navbar .menu li {
        margin: 10px 0;
    }

    .navbar .menu-toggle {
        display: block;
    }
}
/* seja_beneficiario.css */

        h2 {
            text-align: center;
            color: #007B77;
        }

        form {
            display: flex;
            flex-direction: column;
        }

        label {
            margin-top: 15px;
            margin-bottom: 5px;
            font-weight: bold;
            color: #333;
        }

        input, select, button {
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }

        input:focus, select:focus {
            border-color: #007B77;
            outline: none;
        }

        button {
            margin-top: 25px;
            background-color: #007B77;
            color: white;
            border: none;
            cursor: pointer;
            transition: background 0.3s;
        }

        button:hover {
            background-color: #005f5b;
        }
        /* ======== BOTÃO FIXO WHATSAPP ======== */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  z-index: 9999;
}

.whatsapp-btn i {
  font-size: 1.3rem;
}

/* Efeito hover */
.whatsapp-btn:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* Responsivo: diminui tamanho em celulares */
@media (max-width: 480px) {
  .whatsapp-btn {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .whatsapp-btn i {
    font-size: 1.1rem;
  }
}
/* ======== BOTÃO FLUTUANTE WHATSAPP ======== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  z-index: 9999;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* Responsivo */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }
}
