:root {
  --azul: #204595;       /* cor principal */
  --azul-claro: #54bfdf; /* para detalhes / scrollbar */
  --branco: #ffffff;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden; /* evita rolagem lateral */
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--azul);
  color: var(--branco);
}

/* Scrollbar moderna (Chrome, Edge, Opera, etc.) */
body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: var(--azul);
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--azul-claro), #2a67ac);
  border-radius: 999px;
}

body::-webkit-scrollbar-thumb:hover {
  background: var(--azul-claro);
}

/* Scrollbar em Firefox */
body {
  scrollbar-width: thin;
  scrollbar-color: var(--azul-claro) var(--azul);
}

/* Imagens nunca estouram */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Geral */
.page-wrapper {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

/* ----- ANIMAÇÕES ----- */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ----- ESQUERDA ----- */
.left-panel {
  flex: 1;
  background: var(--azul);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 40px;

  /* animação de entrada */
  animation: fadeUp 0.8s ease-out both;
}

.logo {
  max-width: 280px;
  margin-bottom: 32px;
}

.left-panel h1 {
  font-family: "Exo 2", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--branco);
}

.strong {
  color: var(--branco);
  font-weight: 800;
}

.subtitle {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--branco);
  opacity: 0.85;
}

/* ----- DIREITA ----- */
.right-panel {
  flex: 1;
  background: var(--azul);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 40px;

  /* animação diferente pra dar dinâmica */
  animation: slideInRight 0.9s ease-out 0.15s both;
}

.calendar-wrapper {
  width: 100%;
  max-width: 650px;
  background: var(--branco);
  border-radius: 16px;
  padding: 16px;
  height: 80vh;
  max-height: 820px;

  /* transição suave pra hover */
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* efeito “card flutuando” */
.calendar-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.calendar-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

/* ----- RESPONSIVO ----- */
@media (max-width: 900px) {
  .page-wrapper {
    flex-direction: column;
    min-height: 100vh;
  }

  .left-panel,
  .right-panel {
    padding: 24px 16px;
  }

  .left-panel h1 {
    font-size: 1.6rem;
  }

  .calendar-wrapper {
    max-width: 100%;
    width: 100%;
    height: auto;        /* deixa crescer conforme o Calendly */
    min-height: 420px;
  }

  .calendar-wrapper iframe {
    height: 650px;
  }
}

@media (max-width: 480px) {
  .left-panel h1 {
    font-size: 1.4rem;
  }

  .subtitle {
    font-size: 0.95rem;
  }
}


/* --- ANIMAÇÃO DA LOGO (fade + scale) --- */
@keyframes logoAppear {
  0% {
    opacity: 0;
    transform: scale(0.85);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    transform: scale(1.02);
    filter: blur(0px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* --- ANIMAÇÃO SHINE --- */
@keyframes shineEffect {
  0% {
    opacity: 0;
    transform: translateX(-150%) rotate(25deg);
  }
  50% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translateX(150%) rotate(25deg);
  }
}


.logo {
  max-width: 280px;
  margin-bottom: 32px;

  /* aplicação da animação */
  animation: logoAppear 0.9s ease-out 0.15s both;
}
