@charset "UTF-8";

:root {
    --ink: #0A0A0A;
    --teal: #181818;
    --aqua: #FFD000;
    --suds: #FFB800;
    --foam: #F3F3F3;
    --charcoal: #111111;
    --line: #D0D0D0;
  }

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

body {
    font-family: "Inter", sans-serif;
    background: #0F0F0F;
    color: #F2F2F2;
    line-height: 1.5;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
}

.mono {
  font-family: "JetBrains Mono", monospace;
}

header {
    background: #050505;
    color: white;
    padding: 16px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--aqua);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(160deg, var(--aqua), var(--suds));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.logo img {
    width: 95px;
    height: 95px;
    object-fit: contain;
    display: block;
}

nav a {
    color: #E6E6E6;
    text-decoration: none;
    margin-left: 28px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

nav a:hover {
    color: var(--aqua);
}

.hero {
    background:
        linear-gradient(
            120deg,
            #050505 0%,
            #111111 55%,
            #1C1C1C 100%
        );

    color: white;
    padding: 80px 6% 110px;
    position: relative;
    overflow: hidden;
}

.hero-content {
  max-width: 620px;
}

.eyebrow {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--suds);
  border: 1px solid rgba(255, 201, 74, 0.4);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero p {
    font-size: 1.05rem;
    color: #C8C8C8;
    margin-bottom: 28px;
    max-width: 480px;
}

.btn {
    display: inline-block;
    background: #FFD000;
    color: #0A0A0A;
    font-weight: 800;
    font-family: "Space Grotesk", sans-serif;
    padding: 14px 28px;
    border-radius: 6px;
    border: 1px solid #FFD000;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    transition: 0.2s ease;
}

.btn:hover {
    background: #E6BB00;
    border-color: #E6BB00;
    transform: translateY(-2px);
}

.wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
}

main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 6%;
}

section {
    padding: 64px 0;
    border-bottom: 1px solid #2A2A2A;
}

section:last-of-type {
  border-bottom: none;
}

.section-head {
  margin-bottom: 36px;
  max-width: 560px;
}

.eyebrow-dark {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--aqua);
  margin-bottom: 10px;
  display: block;
}

.section-head h2 {
    font-size: 1.8rem;
    color: #F5F5F5;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
    background: #161616;
    border: 1px solid #2A2A2A;
    border-radius: 10px;
    padding: 24px;
    cursor: pointer;
    color: white;
    transition: 0.2s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: #FFD000;
}
.service-card.selected {
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(0, 184, 217, 0.15);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.service-card .price {
    font-size: 1.4rem;
    color: #FFD000;
    margin: 10px 0;
}

.service-items li {
    padding: 7px 0;
    font-size: 0.88rem;
    color: #F0F0F0;
    border-bottom: 1px solid #2A2A2A;
}

.booking-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #FFD000;
}

input[type="text"],
input[type="tel"],
input[type="date"] {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #444444;
    border-radius: 6px;
    background: #0D0D0D;
    color: #F5F5F5;
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    margin-bottom: 18px;
    transition: 0.2s ease;
}

input::placeholder {
    color: #999999;
}

input:focus {
    outline: none;
    border-color: #FFD000;
    box-shadow: 0 0 0 2px rgba(255, 208, 0, 0.15);
}

.slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.slot {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  padding: 10px 6px;
  color: #111111;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--foam);
  text-align: center;
  cursor: pointer;
}

.slot.taken {
  background: #EEF1F3;
  color: #9AA7AF;
  text-decoration: line-through;
  cursor: not-allowed;
}

.slot.selected {
  background: #FFD000;
  color: #0A0A0A;
  border-color: #FFD000;
  font-weight: 700;
}

.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 260px;
  overflow: auto;
}

.agenda-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.88rem;
  color: #E8E8E8;
}

.agenda-item .t {
  font-family: "JetBrains Mono", monospace;
  color: #F0F0F0;
  font-weight: 700;
}
.ticket {
  background: var(--ink);
  color: white;
  border-radius: 14px;
  padding: 26px;
  position: relative;
  margin-top: 20px;
  display: none;
}

.ticket.show {
  display: block;
}

.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--foam);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.ticket::before {
  left: -10px;
}

.ticket::after {
  right: -10px;
}

.ticket h3 {
  color: var(--suds);
  margin-bottom: 10px;
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.ticket-row:last-child {
  border-bottom: none;
}

footer {
  background: #050505;
  color: #AFAFAF;
  text-align: center;
  padding: 32px 6%;
  font-size: 0.85rem;
  border-top: 1px solid #2A2A2A;
}

.msg {
  font-size: 0.85rem;
  margin-top: -8px;
  margin-bottom: 14px;
  min-height: 18px;
}

.msg.err {
  color: #C0392B;
}

.msg.ok {
  color: #1E8449;
}

.service-items {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.service-items li {
    padding: 7px 0;
    font-size: 0.88rem;
    color: #5B6B76;
    border-bottom: 1px solid #EEF2F4;
}

.service-items li:last-child {
    border-bottom: none;
}

.service-card.selected .service-items li {
    color: var(--ink);
}

.selected-service-msg {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #1A1A1A;
    color: #F5F5F5;
    font-size: 0.9rem;
    font-weight: 600;
    border-left: 4px solid #FFD000;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.service-card .service-items li,
.service-card.selected .service-items li {
    color: #F0F0F0;
}

  .booking-panel {
    background: #161616;
    border: 1px solid #2A2A2A;
    border-radius: 12px;
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    color: #F0F0F0;
}

.ticket-note {
    margin-top: 16px;
    font-size: 0.82rem;
    line-height: 1.5;
    color: #CFCFCF;
}

.ticket-whatsapp {
    width: 100%;
    margin-top: 18px;
    margin-bottom: 10px;

    text-align: center;

    background: #1F8F4E;
    border-color: #1F8F4E;
    color: #FFFFFF;
}

.ticket-whatsapp:hover {
    background: #187540;
    border-color: #187540;
}

textarea {
    width: 100%;
    min-height: 100px;

    padding: 12px 14px;

    border: 2px solid #444444;
    border-radius: 6px;

    background: #0D0D0D;
    color: #F5F5F5;

    font-family: "Inter", sans-serif;
    font-size: 0.95rem;

    margin-bottom: 18px;

    resize: vertical;

    transition: 0.2s ease;
}

textarea::placeholder {
    color: #999999;
}

textarea:focus {
    outline: none;
    border-color: #FFD000;

    box-shadow:
        0 0 0 2px
        rgba(255, 208, 0, 0.15);
}

@media (max-width: 760px) {
  header {
    align-items: flex-start;
    gap: 16px;
  }

  nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  nav a {
    margin-left: 0;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .booking-panel {
    grid-template-columns: 1fr;
}

}

/* =========================
   CALENDÁRIO VISUAL
========================= */

.calendar-trigger {
    width: 100%;
    min-height: 48px;
    margin-bottom: 18px;
    padding: 12px 14px;
    border: 2px solid #444444;
    border-radius: 6px;
    background: #0D0D0D;
    color: #F5F5F5;
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    transition: 0.2s ease;
}

.calendar-trigger:hover,
.calendar-trigger:focus {
    outline: none;
    border-color: #FFD000;
    box-shadow: 0 0 0 2px rgba(255, 208, 0, 0.15);
}

.calendar-trigger-icon {
    font-size: 1.1rem;
}

body.calendar-open {
    overflow: hidden;
}

.calendar-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.calendar-modal.show {
    display: flex;
}

.calendar-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(3px);
}

.calendar-card {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    max-height: 88vh;
    overflow-y: auto;
    background: #151515;
    color: #F5F5F5;
    border: 1px solid #2A2A2A;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.calendar-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.calendar-top h3 {
    font-size: 1.45rem;
    color: #F5F5F5;
}

.calendar-close {
    width: 40px;
    height: 40px;
    border: 1px solid #333333;
    border-radius: 8px;
    background: #202020;
    color: #F5F5F5;
    font-size: 1.5rem;
    cursor: pointer;
}

.calendar-close:hover {
    border-color: #FFD000;
    color: #FFD000;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 8px;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: #AFAFAF;
    letter-spacing: 0.04em;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-spacer {
    min-height: 76px;
}

.calendar-day {
    min-height: 76px;
    border: 1px solid #303030;
    border-radius: 8px;
    background: #1D1D1D;
    color: #F0F0F0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: 0.2s ease;
}

.calendar-day:hover {
    border-color: #FFD000;
    transform: translateY(-2px);
}

.calendar-day strong {
    font-size: 1.05rem;
}

.calendar-day-name {
    font-size: 0.72rem;
    text-transform: uppercase;
    color: #AFAFAF;
}

.calendar-day.selected {
    background: #FFD000;
    border-color: #FFD000;
    color: #0A0A0A;
    font-weight: 800;
}

.calendar-day.selected .calendar-day-name {
    color: #0A0A0A;
}

.calendar-day.disabled {
    background: #111111;
    color: #666666;
    border-color: #222222;
    cursor: not-allowed;
    opacity: 0.6;
}

.calendar-day.disabled .calendar-day-name {
    color: #5A5A5A;
}

.calendar-note {
    margin-top: 18px;
    color: #B8B8B8;
    font-size: 0.85rem;
}

.slot-placeholder {
    grid-column: 1 / -1;
    border: 1px dashed #3A3A3A;
    border-radius: 8px;
    padding: 14px;
    color: #AFAFAF;
    text-align: center;
    background: #151515;
}

@media (max-width: 760px) {
    .calendar-card {
        padding: 18px;
    }

    .calendar-weekdays,
    .calendar-days {
        gap: 5px;
    }

    .calendar-day,
    .calendar-spacer {
        min-height: 62px;
    }

    .calendar-day strong {
        font-size: 0.95rem;
    }

    .calendar-day-name {
        font-size: 0.62rem;
    }
}



/* =========================
   AJUSTES DO COMPROVANTE
========================= */

.ticket-row {
    gap: 18px;
    align-items: flex-start;
}

.ticket-row .mono {
    max-width: 62%;
    text-align: right;
    overflow-wrap: anywhere;
    white-space: pre-wrap;
}
