@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('header.css');
@import url('home.css');
@import url('menu.css');
@import url('testimonials.css');
@import url('footer.css');
@import url('sobre.css');



:root {
    --color-primary-1: #2E3192;
    --color-primary-2: #FEFEC5;
    --color-primary-3: #FFFF71;
    --color-primary-4: #F8DA45;
    --color-primary-5: #EEB600;
    --color-primary-6: #F1DC4F;

    --color-neutral-0: #fff;
    --color-neutral-1: #1d1d1d;
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Fundo com vídeo ===== */
.caixa-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; /* Fica atrás de todo o conteúdo */
}

.caixa-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.3); /* mantém apenas o brilho */
  transform: scale(1.1);
}


/* ===== Camada esfumaçada nas laterais ===== */
.caixa-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.3) 70%,
    rgba(255, 255, 255, 0.6) 100%
  );
  pointer-events: none; /* Permite clicar no conteúdo */
}

/* ===== Máscara levemente translúcida no fundo todo ===== */
.mascara {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(46, 49, 146, 0.4); /* Azul #2E3192 com 40% de opacidade */
  top: 0;
  left: 0;
}




html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-primary-1);
}

section {
    padding: 28px 8%;
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary-5);
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .3s ease;
}

.btn-default:hover {
    background-color: var(--color-primary-3);
}

.social-media-buttons {
    display: flex;
    gap: 18px;
}

.social-media-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    background-color: transparent;
    font-size: 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-neutral-1);;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow .3s ease;
}

.social-media-buttons a:hover {
    box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: var(--color-primary-6);
    font-size: 1.563rem;
}

.section-subtitle {
    font-size: 2.1875rem;
} 

/* Estilos específicos para sobre.html */

.sobre-header {
    background-color: var(--color-primary-2);
    padding: 20px;
    text-align: center;
}

.sobre-main h1 {
    color: var(--color-primary-6);
    font-size: 2.5rem;
}

.sobre-main p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-neutral-1);
}

/* ===== ÍCONE FLUTUANTE WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float i {
  margin-top: 14px;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 26px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float i {
    margin-top: 12px;
  }
}

.whatsapp-float {
  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); }
}

