@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset/Global */

:root {
    --cor-fundo: #e9e9e9;
    --cor-header: #fffeec;
    --cor-card: #b696bf;
    --cor-texto: #222;
    --textoDourado: #F4C300;
    --cor-branca: #fff;
    --cor-Btn-cadastro: #fefefe;
    --cor-botao: #d1a2e7;
    --cor-login: #a143d0;
    --textoApresentacao: #36114e;
    --cor-botao-hover: #d386f6;
    --cor-Texto-BTN: #67059E;
    --cor-purple-dark: #36114e;
    --cor-purple-footer: #3b185f;
    --RosaTitle: #ff69b4;
    --PinkButton: f946fo;
    --gradient-purple: linear-gradient(180deg, #f946f0 0%, #b868df 76.93%);
    --gradient-title: linear-gradient(to right, #8a2be2, #ff69b4);
}

* body {
    margin: 0;
    box-sizing: border-box;
    background: var(--cor-fundo);
    color: var(--cor-texto);
    font-family: "Poppins", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* NAVBAR */
.navbar {
    background: var(--cor-header) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar-item,
.navbar-link {
    color: var(--cor-texto) !important;
    font-weight: 500;
}

.navbar-item:hover,
.navbar-link:hover {
    background: transparent !important;
    color: var(--cor-purple-dark) !important;
}

/* BUTTONS */
.button.is-light {
    background: var(--cor-Btn-cadastro);
    color: var(--cor-Texto-BTN);
    border: none;
}

.button.is-light:hover {
    background: var(--cor-botao-hover) !important;
    color: var(--cor-branca);
}

.button.is-primary {
    background: var(--cor-login) !important;
    border: none;
    color: var(--cor-branca);
}

.button.is-primary:hover {
    background: var(--cor-botao-hover) !important;
}

/* ========================================
   CONTACT SECTION - NOVO LAYOUT
   ======================================== */

.contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    min-height: calc(100vh - 200px);
}

/* Lado Esquerdo */
.contact-left {
    flex: 1;
    text-align: center;
    max-width: 450px;
}

.contact-left #titulo {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-illustration {
    background: linear-gradient(135deg, #d4c4e0 0%, #c9b8d9 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(155, 107, 179, 0.2);
}

.illustration-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.illustration-top {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.person-card {
    background: #a888bf;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #6b4d7a, #4a3259);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-icon {
    color: #d4b8e0;
    font-size: 26px;
}

.chat-bubbles {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bubble {
    background: #e8dff0;
    border-radius: 8px;
    height: 10px;
}

.bubble.w1 { width: 80px; }
.bubble.w2 { width: 60px; }
.bubble.w3 { width: 100px; }

.side-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-icon {
    width: 38px;
    height: 38px;
    background: var(--cor-purple-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.side-icon:hover {
    transform: scale(1.1);
}

.illustration-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 10px;
}

.desk-scene {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.laptop {
    width: 90px;
    height: 55px;
    background: #8b6b9e;
    border-radius: 6px 6px 0 0;
    position: relative;
}

.laptop::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: -6px;
    right: -6px;
    height: 6px;
    background: #6b4d7a;
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    width: 65px;
    height: 38px;
    background: #c4a8d4;
    margin: 8px auto;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 22px;
    height: 22px;
    background: var(--cor-purple-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 9px;
}

.person-sitting {
    width: 70px;
    height: 90px;
    position: relative;
}

.person-body {
    width: 32px;
    height: 42px;
    background: #f4a460;
    border-radius: 16px 16px 6px 6px;
    position: absolute;
    bottom: 22px;
    left: 19px;
}

.person-head {
    width: 28px;
    height: 28px;
    background: #f4c8a0;
    border-radius: 50%;
    position: absolute;
    bottom: 60px;
    left: 21px;
}

.person-hair {
    width: 32px;
    height: 18px;
    background: #4a3259;
    border-radius: 16px 16px 0 0;
    position: absolute;
    bottom: 75px;
    left: 19px;
}

.person-legs {
    width: 32px;
    height: 22px;
    background: #5a3d6e;
    position: absolute;
    bottom: 0;
    left: 19px;
    border-radius: 6px;
}

.chair {
    width: 45px;
    height: 55px;
    background: var(--cor-login);
    border-radius: 12px 12px 0 0;
    position: absolute;
    bottom: 0;
    left: 12px;
    z-index: -1;
}

/* Form */

#formHeader {
  margin-top: 50px;
}

.contact-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
}

.contact-card {
  background: var(--cor-card);
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 550px;
  color: var(--cor-texto);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.label {
  color: var(--cor-texto) !important;
  font-weight: 500;
}

.input,
.textarea {
  background: var(--cor-branca);
  border-radius: 12px;
  border: none;
  color: var(--cor-texto);
}

.input::placeholder,
.textarea::placeholder {
  color: var(--minha-cor);
}

#submitBtn {
  background: var(--cor-botao);
  display: flex;
  border: none;
  width: 50%;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  transition: .2s;
  color: var(--cor-Texto-BTN);
  margin: 0 auto;
}

#submitBtn:hover {
  background: var(--cor-botao-hover);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(77, 44, 98, .3);
}

.divider {
  height: 1px;
  background: rgba(255,255,255,.4);
  margin: 20px 0;
  border-radius: 2px;
}

#titulo {
  background: linear-gradient(to right,#8a2be2,#ff69b4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.title {
  color: var(--cor-botao);
}

/* ========================================
   RESPONSIVO - CONTACT
   ======================================== */

@media (max-width: 900px) {
    .contact-section {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

    .contact-left,
    .contact-wrapper {
        width: 100%;
        max-width: 450px;
    }

    .contact-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 25px;
    }

    .contact-left #titulo {
        font-size: 1.8rem;
    }

    .contact-illustration {
        padding: 20px;
    }

    #submitBtn {
        width: 70%;
    }
}

/* ========================================
   PARCEIROS
   ======================================== */

.parceiros {
    padding: 40px 20px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    height: 200px;
    width: 100%;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    animation: slide 20s linear infinite;
}

.carousel-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50%;
    height: 100%;
    padding: 0 2rem;
}

.image {
    max-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: .3s ease;
}

.image img:hover {
    transform: scale(1.05);
}

.controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.button {
    border-radius: 50px;
    padding: .75rem 1.5rem;
    font-weight: 600;
    transition: .3s ease;
}

.button.is-primary {
    background-color: #4d2c62;
    border-color: #4d2c62;
}

.button.is-primary:hover {
    background-color: #3a2150;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(77, 44, 98, .3);
}

.button.is-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
}

.notification {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #4d2c62;
    color: white;
    border-radius: 50px;
    padding: .5rem 1rem;
    font-size: .8rem;
    z-index: 10;
}

.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%234d2c62" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,197.3C672,192,768,160,864,154.7C960,149,1056,171,1152,176C1248,181,1344,171,1392,165.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    z-index: 1;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.paused {
    animation-play-state: paused;
}

.parallax-waves {
    margin-top: 20%;
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #4d2c62;
}

.wave {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat-x;
    background-size: contain;
}

.layer-back {
    background-image: url("../assets/OndaRoxa.png");
    animation: moveBack 20s linear infinite;
    opacity: .9;
}

@keyframes moveBack {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes moveFront {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-60%);
    }
}

.finup-footer {
    background-color: #3b185f;
    padding: 2.5rem 1rem;
}

.finup-footer .icons img {
    transition: .2s ease;
}

.finup-footer .icons img:hover {
    transform: scale(1.1);
}

.footer-line {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .3);
    width: 70%;
    margin: 0 auto;
}