
/* Reset */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  outline: none;
  border: none;
  transition:all .2s linear ease-in-out;
}

::-webkit-scrollbar-track{
    background: transparent;
}

::-webkit-scrollbar-thumb{
    background: #00f2fe;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
}

::-webkit-scrollbar-thumb:hover{
    background: #798EC8;
}

:root {
  --bg-light: #f0f0f0;
  --bg-dark: #0a0a0a;
  --text-light: #111;
  --text-dark: #eee;
  --accent: #00f2fe;

   --cor-principal: #f7f7f7;
    --cor-secundaria: #00f2fe;
     --borda: 4px solid #00f2fe;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  transition: background 0.5s, color 0.5s;
}

body.light-mode {
  background: var(--bg-light);
  color: var(--text-light);
}

body.dark-mode {
  background: var(--bg-dark);
  color: var(--text-dark);
}


.floating-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
}

.main-btn {
  background: linear-gradient(135deg, #0ff, #00f, #8000ff);
  color: #fff;
  padding: 20px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulse 2s infinite;
}

.action-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  transform: scale(0);
  transition: 0.3s ease;
}

#toggle:checked ~ .action-btns {
  transform: scale(1);
}

.action {
  background: var(--cor-secundaria);
  padding: 15px;
  border-radius: 50%;
  color: #333;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 0 10px #0ff;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 10px #0ff; }
  50% { box-shadow: 0 0 20px #8000ff; }
}


.toggle-theme {
  position: fixed;
  top: 10px;
  right: 10px;
}

.toggle-theme #themeToggle{
  background: transparent;
  font-size: 1.3rem;
}

section {
  padding: 2rem;
  text-align: center;
}

.profile {
  width: 150px;
  border-radius: 50%;
  border: 4px solid var(--accent);
  animation: glow 2s infinite alternate;
}

.social-links a {
  margin: 0 10px;
  font-size: 1.7rem;
  color: var(--accent);
}

.btn-whatsapp {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  background: var(--accent);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.galeria-grid img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.galeria-grid img:hover {
  transform: scale(1.05);
}

@keyframes glow {
  0% { box-shadow: 0 0 5px var(--accent); }
  100% { box-shadow: 0 0 20px var(--accent); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}




/* Footer */

.footer .grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, 30rem);
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}



.footer .credito{
    text-align: center;
    padding: 3rem 2rem;
    border-top: var(--borda);
    color: var(--text-color-dark);
    background: transparent;
    font-size: 1.2rem;
    line-height: 1.5;
}

.footer .credito a{
    color: #59B2F4;
    text-transform: capitalize;
    font-weight: 600;
}
