@import url(fonts.min.css); @import url(variable.min.css); * { box-sizing: border-box; margin: 0; padding: 0; font-family: var(--font-primary); } html { width: 100%; min-height: 100vh; padding-top: env(safe-area-inset-top); padding-bottom: env(safe-area-inset-bottom); } body { margin: 0; background: linear-gradient(to bottom, rgba(var(--app-color-blue-rgb), 1) 0%, rgba(var(--app-color-white-rgb), 1) 5%, rgba(var(--app-color-white-rgb), 1) 98%, rgba(var(--app-color-black-rgb), 1) 100%); width: 100%; min-height: 100vh; color: var(--app-color-black); overflow-x: hidden; font-family: var(--font-primary); font-weight: var(--font-weight-regular); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; } h1, h2, h3, h4, h5, h6 { font-family: var(--font-primary); font-weight: var(--font-weight-bold); letter-spacing: -0.01em; line-height: 1.2; } h1 { font-size: clamp(36px, 5vw, 64px); font-weight: var(--font-weight-heavy); font-family: var(--font-display); font-weight: normal; } h2 { font-size: clamp(28px, 4vw, 40px); font-weight: var(--font-weight-medium); } h3 { font-size: clamp(24px, 3vw, 24px); font-weight: var(--font-weight-bold); } p, li, span { font-family: var(--font-primary); font-weight: var(--font-weight-regular); letter-spacing: 0.01em; } .description { font-family: var(--font-primary); font-weight: var(--font-weight-regular); line-height: 1.6; font-size: clamp(16px, 2vw, 20px); letter-spacing: 0.01em; } .bg-blue { background-color: var(--app-color-blue); } .bg-pink { background-color: var(--app-color-pink); } .bg-yellow { background-color: var(--app-color-yellow); } .highlight-p { color: var(--app-color-pink); } .highlight-b { color: var(--app-color-blue); } .highlight-y { color: var(--app-color-yellow); } .highlight { font-weight: var(--font-weight-bold); } .btn { display: inline-block; font-family: var(--font-primary); font-weight: var(--font-weight-heavy); text-transform: uppercase; letter-spacing: 0.1em; text-decoration: none; text-align: center; padding: 16px 32px; border-radius: 48px; border: none; cursor: pointer; transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.25s ease, color 0.25s ease; will-change: transform; font-size: clamp(13px, 2vw, 16px); width: fit-content; margin: 0 auto; } .btn:hover { box-shadow: 4px 2px 12px rgba(19, 19, 19, 0.15); transform: scale(1.10); } .btn:active { transform: scale(0.98); } .btn-primary-b { background-color: var(--app-color-blue); color: var(--app-color-blue-contrast); } .btn-primary-b:hover { background-color: var(--app-color-yellow); color: var(--app-color-yellow-contrast); } .btn-primary-b-p { background-color: var(--app-color-blue); color: var(--app-color-blue-contrast); } .btn-primary-b-p:hover { background-color: var(--app-color-pink); color: var(--app-color-pink-contrast); } .btn-primary-p-y { background-color: var(--app-color-pink); color: var(--app-color-pink-contrast); } .btn-primary-p-y:hover { background-color: var(--app-color-yellow); color: var(--app-color-yellow-contrast); } .btn-primary-y-p { background-color: var(--app-color-yellow); color: var(--app-color-yellow-contrast); } .btn-primary-y-p:hover { background-color: var(--app-color-pink); color: var(--app-color-pink-contrast); } .btn-primary-y { background-color: var(--app-color-yellow); color: var(--app-color-yellow-contrast); } .btn-primary-y:hover { background-color: var(--app-color-blue); color: var(--app-color-blue-contrast); } .pulse:hover { animation: pulse 1.25s ease-in-out infinite; } header { position: absolute; top: 0; left: 0; right: 0; height: 80px; background-color: transparent; z-index: 3; width: 100%; overflow-x: hidden; } .header-container { display: flex; justify-content: space-between; align-items: center; height: 100%; padding: 0 24px; max-width: 1200px; margin: 0 auto; } header img { width: 58px; height: auto; } main { display: flex; flex-direction: column; background-color: var(--app-color-white); width: 100%; overflow-x: hidden; } .intro { position: relative; z-index: 1; min-height: 100vh; width: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; gap: 32px; padding: 100px 24px 24px; background-color: var(--app-color-blue); background: linear-gradient(150deg, rgba(var(--app-color-blue-rgb), 1) 0%, rgba(var(--app-color-pink-rgb), 1) 55%, rgba(var(--app-color-white-rgb), 1) 100%); } .intro-text { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; gap: 24px; max-width: 1024px; margin: 0 auto; } .intro-text h1 { font-size: clamp(32px, 5.5vw, 64px); text-transform: uppercase; font-weight: var(--font-weight-heavy); } .intro-text h1 span.highlight { font-family: var(--font-display); position: relative; } .intro-text h1 span.highlight::before { content: ''; position: absolute; bottom: 12%; left: -4px; width: 100%; height: 10px; padding: 0 4px; background-color: rgba(var(--app-color-yellow-rgb), 0.7); border-radius: 40%; z-index: -1; pointer-events: none; } .intro-text .description { font-family: var(--font-primary); font-weight: var(--font-weight-medium); } .separador-intro { position: absolute; bottom: 0; left: 0; right: 0; height: 128px; width: 100%; background: linear-gradient(180deg, rgba(var(--app-color-pink-rgb), 0) 0%, rgba(var(--app-color-white-rgb), 1) 100%); pointer-events: none; z-index: -1; } .welcome { display: flex; flex-direction: column; gap: 48px; margin: 16px auto 64px; text-align: center; position: relative; width: 100%; padding: 0 24px; } .welcome-text { display: flex; flex-direction: column; gap: 16px; margin: 0 auto; max-width: 900px; } .welcome-text h1 { font-weight: normal; } .welcome-cards { display: flex; flex-flow: column wrap; gap: 16px; margin: 0 auto; max-width: 800px; } .welcome-card { display: flex; flex-direction: column; flex: auto; gap: 16px; padding: 24px; background-color: rgba(var(--app-color-yellow-rgb), 0.15); border: 1px solid transparent; border-radius: 16px; text-align: left; transition: all 0.45s ease; max-width: 380px; } .welcome-card img { width: 40px; height: 40px; transition: transform 0.75s cubic-bezier(0.34, 1.56, 0.64, 1); margin: 8px 0; } .welcome-card p:last-child { color: var(--app-black-70); line-height: 1.4; } .welcome-card:hover { border-color: var(--app-color-blue); box-shadow: 4px 8px 12px var(--app-black-10); } .welcome-card:hover img { transform: scale(1.4) translate(6px, -2px); } .impact { display: flex; align-items: center; justify-content: center; background: #131313; min-height: calc(100vh - 80px); width: 100%; overflow: hidden; position: relative; padding: 24px; } .impact-bg { position: absolute; inset: 0; transform: scale(2); filter: blur(9px); background: linear-gradient(135deg, rgba(var(--app-color-pink-rgb), 0.5) 0%, rgba(var(--app-color-pink-rgb), 0) 40%, rgba(var(--app-color-pink-rgb), 0) 60%, rgba(var(--app-color-yellow-rgb), 0.5) 100%); pointer-events: none; } .impact-line { position: relative; padding: 48px; max-width: 1000px; margin: 0 auto; } .impact-line h1 { font-family: var(--font-serif); font-weight: 500; font-style: italic; text-align: center; font-size: clamp(34px, 6vw, 68px); color: var(--app-color-white); line-height: 1.3; letter-spacing: 0.02em; font-weight: 600; } .impact-line h1 .highlight-y, .impact-line h1 .highlight-p { font-family: var(--font-serif); font-style: italic; letter-spacing: 0.02em; font-weight: 500; } .impact-line::after, .impact-line::before { content: ''; position: absolute; width: 64px; height: 5px; background-color: var(--app-color-pink); border: 1px solid var(--app-color-white); z-index: 3; left: calc(50% - 32px); border-radius: 16px; } .impact-line::after { bottom: 0; } .impact-line::before { top: 0; } .change { display: flex; flex-direction: column; gap: 48px; margin: 64px auto 0; padding: 0 24px; max-width: 1024px; width: 100%; } .change-text { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; gap: 16px; max-width: 800px; margin: 0 auto; } .change-text h1 { font-family: var(--font-display); font-weight: normal; } .change-cards { display: flex; flex-direction: column; gap: 56px; } .change-card { display: flex; flex-direction: column; align-items: center; max-width: 500px; gap: 32px; margin: 0 auto; width: 100%; } .change-wrap { display: flex; justify-content: center; align-items: center; gap: 24px; padding: 24px; width: 100%; height: 280px; border-radius: 16px; box-shadow: 2px 2px 8px var(--app-black-20); overflow: hidden; } .change-wrap img { object-fit: contain; height: 100%; max-width: 100%; } .change-card-info { display: flex; flex-direction: column; gap: 24px; padding: 12px 8px 24px; flex: 2; border-bottom: 2px solid var(--app-color-blue); width: 100%; } .change-card-title { display: flex; align-items: center; gap: 16px; } .change-card-title .circle { display: none; min-width: 32px; width: 32px; height: 32px; background-color: var(--app-color-blue); border-radius: 50%; flex-shrink: 0; } .change-card-description { font-size: 18px; line-height: 1.4; color: var(--app-black-70); } .find { display: flex; flex-direction: column; gap: 48px; margin: 32px auto 0; background: linear-gradient(180deg, rgba(var(--app-color-pink-rgb), 0) 0%, rgba(var(--app-color-pink-rgb), 1) 100%); padding: 64px 24px; position: relative; width: 100%; } .find-text { margin: 0 auto; max-width: 1024px; text-align: center; } .find-text h1 { font-family: var(--font-display); font-weight: normal; } .find-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; margin: 0 auto; max-width: 400px; width: 100%; } .find-card { display: flex; flex-direction: column; gap: 16px; background-color: var(--app-color-white); padding: 24px; border-radius: 16px; box-shadow: 2px 2px 8px var(--app-black-10); width: 100%; transition: all 0.45s ease; } .find-card-icon { display: flex; align-items: center; justify-content: center; padding: 8px; width: fit-content; font-size: 28px; border-radius: 12px; transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); } .find-card-icon img { width: 36px; height: 36px; object-fit: contain; } .find-card:nth-child(1) .find-card-icon, .find-card:nth-child(4) .find-card-icon, .find-card:nth-child(8) .find-card-icon { background-color: var(--app-color-blue); } .find-card:nth-child(3) .find-card-icon, .find-card:nth-child(6) .find-card-icon { background-color: var(--app-color-pink); } .find-card:nth-child(2) .find-card-icon, .find-card:nth-child(5) .find-card-icon, .find-card:nth-child(7) .find-card-icon { background-color: var(--app-color-yellow); } .find-card-description { line-height: 1.4; color: var(--app-black-70); } .find-card:hover { transform: scale(1.04); box-shadow: 0 24px 50px -12px var(--app-black-10); } .find-card:hover .find-card-icon { transform: scale(1.05); border-radius: 50%; box-shadow: 2px 4px 16px var(--app-black-10); } .find-card:hover .find-card-icon img { width: 44px; height: 44px; } .not-alone { background: linear-gradient(180deg, rgba(var(--app-color-pink-rgb), 1) 0%, rgba(var(--app-color-yellow-rgb), 0.3) 100%); color: var(--app-color-white); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 64px 24px; margin: 0; } .not-alone-container { display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 1200px; text-align: center; padding: 48px 24px; line-height: 1.4; background-color: rgba(var(--app-color-white-rgb), 0.7); text-shadow: 1px 1px 20px var(--app-black-50); box-shadow: 0 0 50px -24px var(--app-black-70); border-radius: 16px; } .not-alone-icon { display: flex; align-items: center; justify-content: center; border-radius: 16px; width: 60px; height: 60px; background: linear-gradient(135deg, rgba(var(--app-color-yellow-rgb), 1) 0%, rgba(var(--app-color-pink-rgb), 1) 100%); box-shadow: 0 24px 25px -12px var(--app-black-20); transform: rotateZ(5deg); } .not-alone-icon img { width: 60px; height: 60px; transition: transform 0.75s ease; transform: scale(0.6); object-fit: contain; } .not-alone-container h2 { font-family: var(--font-serif); font-weight: 500; font-style: italic; color: var(--app-color-black); margin-top: 48px; letter-spacing: 0.02em; max-width: 900px; } .not-alone-container .highlight { text-shadow: 1px 1px 20px var(--app-black-10); font-family: var(--font-serif); font-weight: 700; font-style: italic; position: relative; z-index: 2; } .not-alone-container .highlight::before { content: ''; position: absolute; bottom: 25%; left: -4px; width: 100%; height: 8px; padding: 0 4px; background-color: var(--app-color-pink); z-index: -1; pointer-events: none; } .not-alone-container a { font-size: clamp(14px, 2vw, 16px); margin-top: 48px; } .active { min-height: 100vh; background: radial-gradient(circle, rgba(var(--app-color-yellow-rgb), 0.3) 0%, rgba(var(--app-color-blue-rgb), 0.3) 100%); position: relative; margin: 0; text-align: center; } .custom-shape-divider-top-1770305671, .custom-shape-divider-bottom-1770305896 { position: absolute; left: 0; width: 100%; overflow: hidden; line-height: 0; } .custom-shape-divider-top-1770305671 { top: -2px; } .custom-shape-divider-top-1770305671 svg { position: relative; display: block; width: calc(165% + 1.3px); height: 97px; } .custom-shape-divider-top-1770305671 .shape-fill { fill: #fefbc5; } .custom-shape-divider-bottom-1770305896 { bottom: 0; transform: rotate(180deg); } .custom-shape-divider-bottom-1770305896 svg { position: relative; display: block; width: calc(165% + 1.3px); height: 97px; } .custom-shape-divider-bottom-1770305896 .shape-fill { fill: #fffde2; } .active-content { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 24px; min-height: 100vh; padding: 128px 24px; } .active-content img.logo { max-width: 150px; padding: 16px 32px; border-radius: 40px; background-color: var(--app-color-yellow); margin-bottom: 8px; } .active-content h2 { max-width: 800px; margin: 0 auto; } .active-content p.description { max-width: 800px; margin: 0 auto; } .active-content p.description span { font-weight: bold; } .active-card { padding: 32px; background-color: var(--app-color-white); max-width: 900px; width: 100%; border-radius: 24px; margin: 16px auto; border: 1px solid rgba(var(--app-color-blue-rgb), 0.3); box-shadow: 0 24px 50px -12px var(--app-black-30); } .active-card p { line-height: 1.5; font-size: clamp(16px, 2.5vw, 20px); } .active-card p span { font-weight: bold; text-transform: uppercase; text-shadow: 1px 1px 0 var(--app-black-40); } .active-card p span.highlight-p { text-shadow: 1px 1px 0 var(--app-black-50); } .active-items { display: grid; grid-template-columns: repeat(2, 88px); font-weight: var(--font-weight-medium); gap: 16px; margin: 16px auto 0; max-width: fit-content; width: 100%; } .active-item { transition: transform 0.45s ease; } .active-icon { display: flex; align-items: center; justify-content: center; padding: 16px; width: fit-content; border-radius: 12px; transition: all 0.45s ease; margin: 0 auto 8px; } .active-icon img { width: 30px; height: 30px; object-fit: contain; } .active-title { width: fit-content; margin: 0 auto; font-weight: 500; font-size: clamp(12px, 2vw, 14px); } .active-item:hover { transform: translateY(-8px); } .active-item:hover .active-icon { box-shadow: 2px 4px 16px var(--app-black-20); } .price { display: flex; flex-direction: column; gap: 56px; justify-content: center; padding: 64px 24px; min-height: 100vh; text-align: center; background: rgba(var(--app-color-yellow-rgb), 0.1); color: var(--app-color-black); } .price-intro .description { margin: 16px 0 0; } .price-cards { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 48px; max-width: 1024px; margin: 0 auto; width: 100%; } .price-card { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 16px; border-radius: 16px; padding: 48px 32px; text-align: left; transition: all 0.45s ease; background-color: var(--app-color-white); width: 100%; max-width: 500px; position: relative; } .price-card:nth-child(1) { border: 2px solid var(--app-color-blue); } .price-card:nth-child(1):hover { box-shadow: 0 24px 50px -12px var(--app-black-20); border-color: var(--app-color-blue-shade); } .price-card:nth-child(2) { border: 4px solid var(--app-color-yellow); } .price-card:nth-child(2):hover { box-shadow: 0 24px 50px -12px var(--app-black-30); border-color: var(--app-color-yellow-shade); } .price-best-choice { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); border-radius: 40px; padding: 8px 24px; background-color: var(--app-color-yellow); white-space: nowrap; } .price-best-choice span { font-weight: bolder; font-size: 14px; } .price-card-title { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; } .price-card-title h2 { font-family: var(--font-accent); text-transform: uppercase; letter-spacing: 0.1125em; font-size: clamp(36px, 3vw, 40px); font-weight: var(--font-weight-bold); } .price-line { display: flex; gap: 8px; align-items: baseline; justify-content: center; } .price-line span { font-size: clamp(36px, 8vw, 48px); color: var(--app-color-blue); font-weight: bold; text-shadow: 2px 2px 1px var(--app-black-20); margin-top: 8px; } .price-line span.highlight-y { color: var(--app-color-yellow); text-shadow: 0 0 4px var(--app-black-50); } .price-line p { font-family: var(--font-display); font-size: clamp(30px, 5vw, 36px); color: var(--app-color-black); font-weight: var(--font-weight-bold); } .price-card ul { line-height: 1.2; width: 100%; padding: 16px 0; list-style: none; } .price-card ul li { display: flex; align-items: flex-start; gap: 4px; padding: 12px 0; color: var(--app-black-70); font-size: clamp(14px, 2.5vw, 18px); } .price-card ul li span::before { content: '✓'; display: inline-block; padding: 0 8px 4px; color: var(--app-color-yellow); text-shadow: 1px 1px 1px var(--app-black-20); font-weight: bold; } .price-card:nth-child(1) ul li span::before { color: var(--app-color-blue); } .price-card-button { width: 100%; text-align: center; margin-top: 8px; } .price-card-button a.btn { display: block; width: 100%; border: 2px solid transparent; font-size: clamp(14px, 2.5vw, 18px); } .price-card-button a.btn-primary-y:hover { background: var(--app-color-yellow); color: var(--app-color-yellow-contrast); filter: brightness(0.97); } .price-card-button a.btn-primary-b:hover { background: var(--app-color-blue-shade); color: var(--app-color-blue-contrast); } .mockup { min-height: 100vh; position: relative; background: linear-gradient(-45deg, rgba(var(--app-color-pink-rgb), 0.4) 0%, rgba(var(--app-color-pink-rgb), 0) 50%, rgba(var(--app-color-yellow-rgb), 0.4) 100%); overflow: hidden; } .mockup::before { content: ''; background: url(../images/bg/tiles.jpg) repeat; background-size: 150px; position: absolute; inset: 0; filter: opacity(0.2) grayscale(1) brightness(2); z-index: 0; pointer-events: none; } .mockup-container { display: flex; flex-direction: column; gap: 32px; justify-content: center; min-height: 100vh; padding: 64px 24px; text-align: center; position: relative; z-index: 1; } .mockup-container .mockup-text h1 { max-width: 1024px; text-transform: uppercase; margin: 0 auto; } .mockup-container .mockup-text h1 span.highlight { position: relative; font-family: var(--font-display); font-weight: var(--font-weight-bold); text-transform: uppercase; text-shadow: 1px 1px 1px var(--app-black-50); } .mockup-container .mockup-text h1 span.highlight::before { content: ''; position: absolute; bottom: 20%; left: -4px; width: 100%; height: 24px; padding: 0 4px; background-color: rgba(var(--app-color-yellow-rgb), 1); border-radius: 40%; z-index: -1; pointer-events: none; pointer-events: none; } .mockup-container .mockup-text p { max-width: 800px; margin: 8px auto; } .mockup-container .mockup-text p span { font-weight: var(--font-weight-medium); } .mockup-imgs { display: flex; flex-direction: column; align-items: center; width: 100%; gap: 32px; margin: 0 auto; padding: 32px 0; } .mockup-imgs div { position: relative; } .mockup-imgs div img { width: 100%; max-width: 300px; border-radius: 16px; box-shadow: 0 24px 50px -12px var(--app-black-70); transition: transform 0.5s ease; object-fit: cover; } .mockup-imgs div:nth-child(1) img { transform: rotateZ(-3deg) scale(1.02); } .mockup-imgs div:nth-child(1) img:hover { transform: rotateZ(0deg) scale(1.02); } .mockup-imgs div:nth-child(1)::before { content: ''; background: radial-gradient(circle, rgba(var(--app-color-yellow-rgb), 0.5) 0%, rgba(var(--app-color-yellow-rgb), 0) 60%); position: absolute; top: -55%; left: -45%; width: 300px; height: 200px; z-index: -1; pointer-events: none; } .mockup-imgs div:nth-child(2) { max-width: 350px; } .mockup-imgs div:nth-child(2) img { max-width: 350px; border: 4px solid var(--app-color-yellow); } .mockup-imgs div:nth-child(2) img:hover { transform: scale(1.07); } .mockup-imgs div:nth-child(3) img { transform: rotateZ(3deg) scale(1.02); } .mockup-imgs div:nth-child(3) img:hover { transform: rotateZ(0deg) scale(1.02); } .mockup-imgs div:nth-child(3)::before { content: ''; background: radial-gradient(circle, rgba(var(--app-color-blue-rgb), 0.4) 0%, rgba(var(--app-color-blue-rgb), 0) 50%); position: absolute; top: 55%; left: 45%; width: 300px; height: 200px; z-index: -1; pointer-events: none; } .mockup-imgs div:nth-child(3)::after { content: ''; background: radial-gradient(circle, rgba(var(--app-color-yellow-rgb), 0.5) 0%, rgba(var(--app-color-yellow-rgb), 0) 60%); position: absolute; top: 15%; right: -45%; width: 150px; height: 100px; z-index: -1; pointer-events: none; } .mockup-itens { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; text-align: left; margin: 16px auto 0; max-width: 400px; } .mockup-itens .mockup-item { display: flex; align-items: center; gap: 12px; background-color: var(--app-color-white); padding: 12px 24px; border-radius: 40px; box-shadow: 2px 4px 8px -2px var(--app-black-20); width: 100%; transition: transform 0.3s ease; } .mockup-itens .mockup-item:hover { transform: translateY(-2px); box-shadow: 2px 6px 12px -2px var(--app-black-20); } .mockup-itens .mockup-item div { display: flex; align-items: center; justify-content: center; padding: 10px; border-radius: 50%; flex-shrink: 0; } .mockup-itens .mockup-item div img { width: 20px; height: 20px; object-fit: contain; } .mockup-itens .mockup-item:nth-child(1) div { background-color: var(--app-color-blue); } .mockup-itens .mockup-item:nth-child(2) div { background-color: var(--app-color-pink); } .mockup-itens .mockup-item:nth-child(3) div { background-color: var(--app-color-yellow); } .mockup-itens .mockup-item p { font-weight: var(--font-weight-medium); } .about-nat { display: flex; flex-direction: column; align-items: center; gap: 32px; padding: 64px 24px; text-align: center; } .about-intro h1 { font-family: var(--font-display); font-weight: normal; text-transform: uppercase; margin-bottom: 8px; } .about-intro p { color: var(--app-black-70); } .about-cards-wrap { display: flex; flex-direction: column; align-items: center; text-align: left; gap: 32px; max-width: 1024px; width: 100%; } .about-img { display: flex; align-items: center; justify-content: center; width: 100%; max-width: 500px; position: relative; padding: 24px; pointer-events: none; } .about-img img { width: 100%; height: auto; max-height: 608px; object-fit: cover; border-radius: 16px; box-shadow: 4px 24px 24px -12px var(--app-black-30); border: 8px solid #fdfdfd; } .about-img::before { content: ''; position: absolute; top: 20px; left: 20px; width: calc(100% - 40px); height: calc(100% - 40px); border-radius: 16px; background: linear-gradient(-45deg, rgba(var(--app-color-yellow-rgb), 0.3) 0%, rgba(var(--app-color-blue-rgb), 0.3) 100%); transform: rotateZ(-2deg); z-index: -1; pointer-events: none; } .about-img::after { content: 'Fundadora da BENEDI'; position: absolute; bottom: 14px; left: -12px; width: 160px; text-align: center; font-weight: bold; padding: 16px; border-radius: 8px; font-size: 14px; background-color: var(--app-color-yellow); transform: rotateZ(-5deg); box-shadow: 0 24px 20px -10px var(--app-black-40); z-index: 3; pointer-events: none; } .about-info-items { display: flex; flex-direction: column; gap: 16px; width: 100%; max-width: 500px; } .about-info-item { padding: 24px 24px 24px 28px; border: 2px solid var(--app-color-blue); border-radius: 16px; position: relative; background-color: rgba(var(--app-color-blue-rgb), 0.07); box-shadow: 0 24px 24px -12px var(--app-black-20); transition: box-shadow 0.45s ease, transform 0.3s ease; } .about-info-item:hover { box-shadow: 0 24px 24px -12px var(--app-black-30); transform: translateY(-2px); } .about-info-item p { line-height: 1.5; color: var(--app-black-70); margin-bottom: 12px; text-align: justify; text-indent: 36px; } .about-info-item p:first-of-type { margin-top: 0; } .about-info-item p:last-of-type { margin-bottom: 0; } .about-info-item p span.highlight-b { font-weight: bolder; } .about-info-item p span.highlight { font-weight: 900; font-style: italic; background-color: rgba(var(--app-color-yellow-rgb), 0.5); } .about-info-item::before { content: ''; position: absolute; top: calc(50% - 16px); left: -16px; width: 32px; height: 32px; border-radius: 50%; background-color: var(--app-color-blue); z-index: 1; pointer-events: none; } .about-info-item::after { content: ''; position: absolute; top: calc(50% - 12px); left: -12px; width: 16px; height: 16px; z-index: 2; transform: translate(4px, 4px); background-image: url("../images/emojis/comment.png"); background-repeat: no-repeat; background-size: contain; pointer-events: none; } .certificate { display: flex; flex-direction: column; padding: 32px 16px; } .certificate-container { display: flex; flex-direction: column; gap: 32px; background-color: rgba(var(--app-color-blue-rgb), 0.1); padding: 32px 24px; border-radius: 16px; border: 8px solid #fdfdfd; max-width: 1024px; width: 100%; margin: 0 auto; } .certificate-intro { display: flex; align-items: center; gap: 16px; } .certificate-intro img { width: 44px; height: 44px; object-fit: contain; } .certificate-intro h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(28px, 4vw, 40px); } .certificate-container ul { display: flex; flex-direction: column; gap: 12px; list-style: none; } .certificate-container ul li { display: flex; align-items: center; gap: 16px; border: 1px solid var(--app-color-blue); padding: 16px; border-radius: 8px; width: 100%; min-height: 70px; transition: transform 0.3s ease, box-shadow 0.3s ease; } .certificate-container ul li:hover { transform: translateX(4px); box-shadow: 2px 4px 8px var(--app-black-10); } .certificate-container ul li img { width: 20px; height: 20px; background-color: var(--app-color-blue); padding: 4px; border-radius: 50%; flex-shrink: 0; } .certificate-container ul li p { line-height: 1.4; color: var(--app-black-70); font-size: clamp(14px, 2.5vw, 18px); } .dep { display: flex; flex-direction: column; justify-content: center; gap: 48px; margin: 0 auto; text-align: center; position: relative; width: 100%; padding: 96px 24px; background: linear-gradient(180deg, rgba(var(--app-color-white-rgb), 0.1) 0%, rgba(var(--app-color-blue-rgb), 0.3) 50%); } .dep-text { display: flex; flex-direction: column; gap: 16px; margin: 0 auto; max-width: 800px; } .dep-text h2 { font-family: var(--font-primary); font-weight: var(--font-weight-medium); text-shadow: 1px 1px 1px rgba(var(--app-color-blue-rgb), 0.3); font-size: clamp(24px, 4vw, 44px); } .dep-text h2 span { font-family: var(--font-primary); font-weight: var(--font-weight-heavy); z-index: 2; } .dep-text h2 span:nth-child(1) { position: relative; } .dep-text h2 span:nth-child(1)::before { content: ''; position: absolute; bottom: 22%; left: -4px; width: 100%; height: 20px; padding: 0 4px; background-color: rgba(var(--app-color-pink-rgb), 1); border-radius: 40%; z-index: -1; pointer-events: none; } .dep-text h2 span:nth-child(2) { position: relative; } .dep-text h2 span:nth-child(2)::before { content: ''; position: absolute; bottom: 22%; left: -4px; width: 100%; height: 20px; padding: 0 4px; background-color: rgba(var(--app-color-yellow-rgb), 1); border-radius: 40%; z-index: -1; pointer-events: none; } .dep-cards { display: flex; flex-flow: column wrap; gap: 24px; margin: 0 auto; max-width: 1200px; padding: 8px; width: 100%; } .dep-card { display: flex; flex-direction: column; flex: 1; gap: 16px; padding: 24px; background-color: rgba(var(--app-color-pink-rgb), 1); border: 1px solid transparent; border-radius: 16px; text-align: left; transition: all 0.65s cubic-bezier(0.34, 1.56, 0.64, 1); margin: 0 auto; width: 100%; } .dep-card:nth-child(2) { background-color: rgba(var(--app-color-yellow-rgb), 1); .dep-item .dep-person img { border: 4px solid var(--app-color-yellow); } } .dep-card:nth-child(3) { background-color: rgba(var(--app-color-blue-rgb), 1); .dep-item .dep-person img { border: 4px solid var(--app-color-blue); } } .dep-card:hover { box-shadow: 4px 50px -10px var(--app-black-50); .dep-item { transform: scale(1.2); box-shadow: 4px 8px 12px var(--app-black-30); } } .dep-card .dep-item { width: 100%; height: 100%; transition: transform 0.75s ease; padding: 16px; background-color: var(--app-color-white); border-radius: 16px; object-fit: contain; } .dep-item .dep-person { display: flex; align-items: center; gap: 16px; } .dep-item .dep-person img { width: 72px; height: 72px; border-radius: 100%; border: 4px solid var(--app-color-pink); } .dep-item .dep-person .dep-name p { margin-top: 4px; font-size: clamp(12px, 2vw, 14px); } .dep-item .dep-person-dep { line-height: 1.3; margin-top: 16px; font-size: clamp(16px, 2vw, 16px); } .separador-faq { height: 96px; width: 100%; background: linear-gradient(180deg, rgba(var(--app-color-blue-rgb), 0.3) 0%, rgba(var(--app-color-pink-rgb), 1) 100%); } .faq { background-color: var(--app-color-pink); padding: 64px 24px; color: var(--app-black-90); text-align: center; width: 100%; } .faq-text { text-align: center; margin-bottom: 24px; } .faq-text h1 { font-family: var(--font-display); font-weight: normal; text-transform: uppercase; } .faq-container { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; max-width: 900px; margin: 0 auto; } .accordions { display: flex; flex-direction: column; gap: 12px; width: 100%; list-style: none; } .accordion { width: 100%; } .accordion .trigger { position: relative; border: 4px solid var(--app-color-blue); background-color: var(--app-color-white); padding: 16px 64px 16px 24px; border-radius: 8px; box-shadow: 2px 2px 8px 2px var(--app-black-40); transition: all 0.3s ease; cursor: pointer; font-weight: 500; font-size: clamp(16px, 2.5vw, 20px); text-align: left; width: 100%; user-select: none; } .accordion .trigger:hover { border-color: var(--app-color-yellow); box-shadow: 2px 8px 24px -4px var(--app-black-40); } .accordion .trigger::after { content: '+'; position: absolute; top: 50%; right: 24px; transform: translateY(-50%); font-size: 28px; line-height: 1; font-weight: 300; transition: transform 0.3s ease; } .accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-in-out; border-radius: 0 0 8px 8px; } .accordion-content p { padding: 24px; margin: 0; line-height: 1.6; background-color: transparent; color: transparent; text-align: left; font-size: clamp(14px, 2.5vw, 16px); } .accordion-content p .highlight { font-weight: bold; padding: 0 2px; } .accordion-content p a { color: var(--app-color-yellow); text-decoration: none; padding: 0 4px; transition: border-bottom 0.3s ease; } .accordion-content p a:hover { border-bottom: 2px solid var(--app-color-yellow); } .accordion.open .trigger { background-color: var(--app-color-white); color: var(--app-color-black); border-color: var(--app-color-blue); border-radius: 8px 8px 0 0; border-bottom: 1px dashed var(--app-color-blue); } .accordion.open .trigger::after { content: '−'; font-size: 36px; font-weight: 200; transform: translateY(-50%) rotate(0deg); } .accordion.open .accordion-content { max-height: 800px; transition: max-height 0.6s ease-in-out; border: 4px solid var(--app-color-blue); border-top: none; background-color: var(--app-color-blue); border-radius: 0 0 8px 8px; } .accordion.open .accordion-content p { background-color: transparent; color: var(--app-color-white); } .accordion.open .accordion-content p .highlight { background-color: var(--app-black-20); } footer { background-color: var(--app-color-black); color: rgba(var(--app-color-white-rgb), 0.9); width: 100%; padding: 64px 24px 24px; } .footer-content { display: flex; flex-direction: column; align-items: center; gap: 32px; width: 100%; max-width: 1200px; margin: 0 auto; padding-bottom: 32px; border-bottom: 1px solid rgba(var(--app-color-white-rgb), 0.2); } .footer-intro { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; } .footer-intro .logo img { width: 64px; height: 64px; object-fit: contain; } .footer-intro h3 { font-size: clamp(16px, 2.5vw, 18px); font-weight: 500; margin-top: 8px; } .footer-intro p { font-size: 14px; color: rgba(var(--app-color-white-rgb), 0.7); } .footer-medias { display: flex; gap: 16px; } .footer-media { display: flex; align-items: center; justify-content: center; padding: 12px; border: 2px solid var(--app-color-yellow); border-radius: 50%; background-color: transparent; cursor: pointer; transition: all 0.3s ease; } .footer-media:hover { background-color: var(--app-color-yellow); transform: scale(1.1); } .footer-media .social { width: 24px; height: 24px; background-repeat: no-repeat; background-size: contain; background-position: center; transition: background-image 0.3s ease; } .footer-media .social.whats { background-image: url(../images/logo/whats-yellow.png); } .footer-media .social.insta { background-image: url(../images/logo/insta-yellow.png); } .footer-media:hover .social.whats { background-image: url(../images/logo/whats-black.png); } .footer-media:hover .social.insta { background-image: url(../images/logo/insta-black.png); } .footer-copy { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 100%; padding-top: 24px; color: rgba(var(--app-color-white-rgb), 0.6); text-align: center; } .footer-copy p { font-size: 14px; } .footer-copy p:nth-child(2) { color: rgba(var(--app-color-white-rgb), 0.6); padding-bottom: 24px; } .footer-copy p:nth-child(2) a { color: rgba(var(--app-color-white-rgb), 0.6); } @keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } } @media screen and (orientation: landscape) and (max-device-width: 932px) { main .intro, main .welcome, main .impact, main .change, main .find, main .not-alone, main .active, main .price, main .mockup, main .about-nat, main .certificate, main .dep, main .faq { padding-left: 48px; padding-right: 40px; } main .dep-card:nth-child(1):hover { transform: scale(1.3) translatex(20%); } main .dep-card:nth-child(2):hover { transform: scale(1.3) translate(0); } main .dep-card:nth-child(3):hover { transform: scale(1.3) translateX(-20%); } } @media screen and (min-width: 768px) { .intro { padding: 120px 24px 24px; } .impact { min-height: 512px; } .change { gap: 72px; } .change-text { max-width: 800px; } .change-cards { gap: 64px; } .change-card { flex-direction: row; max-width: 900px; gap: 48px; } .change-card.reverse { flex-direction: row-reverse; } .change-wrap { flex: 1; } .change-card-title .circle { display: block; } .find-cards { grid-template-columns: repeat(2, minmax(300px, 1fr)); max-width: 700px; } .find-card:nth-child(1) .find-card-icon, .find-card:nth-child(4) .find-card-icon, .find-card:nth-child(5) .find-card-icon, .find-card:nth-child(8) .find-card-icon { background-color: var(--app-color-blue); } .find-card:nth-child(2) .find-card-icon, .find-card:nth-child(3) .find-card-icon, .find-card:nth-child(6) .find-card-icon, .find-card:nth-child(7) .find-card-icon { background-color: var(--app-color-yellow); } .welcome-cards { flex-direction: row; flex-wrap: wrap; justify-content: center; } .welcome-card { max-width: 350px; } .not-alone-container { max-width: 800px; padding: 48px; } .active-card p span { margin: 0 4px; } .active-items { grid-template-columns: repeat(4, 88px); } .custom-shape-divider-top-1770305671 svg { height: 90px; } .custom-shape-divider-bottom-1770305896 svg { height: 100px; } .price { gap: 64px; } .price-cards { gap: 32px; flex-direction: row; } .price-card:nth-child(1) { transform: scale(0.95); } .mockup-imgs { flex-direction: row; flex-wrap: wrap; justify-content: center; max-width: 1024px; gap: 32px; } .mockup-itens { flex-direction: row; gap: 24px; max-width: 900px; } .mockup-itens .mockup-item { width: fit-content; } .dep a { margin-top: 32px; } .dep-cards { flex-direction: row; flex-wrap: wrap; justify-content: center; } .dep-card { min-width: 300px; max-width: 380px; } .dep-card:hover { z-index: 5; background-color: transparent; transform: scale(1.2) translate(0, 0); } .dep-cards::after { content: ''; position: fixed; inset: 0; background-color: transparent; transition: background-color 0.65s ease; z-index: -1; pointer-events: none; } .dep-cards:has(.dep-card:hover)::after { background-color: var(--app-black-80); z-index: 4; } .dep-card:nth-child(1):hover { transform: scale(1.3) translate(20%, 10%); } .dep-card:nth-child(2):hover { transform: scale(1.3) translate(-20%, 10%); } .dep-card:nth-child(3):hover { transform: scale(1.2) translate(-15%, 0); } .certificate-container { padding: 48px; } .certificate-container ul { display: grid; grid-template-columns: repeat(2, minmax(300px, 1fr)); gap: 16px; } .footer-content { flex-direction: row; justify-content: space-between; } .footer-intro { align-items: flex-start; text-align: left; } } @media screen and (min-width: 1024px) { .welcome-text { max-width: 900px; } .welcome-cards { flex-wrap: nowrap; max-width: 1200px; gap: 32px; } .welcome-card { flex: 1; } .impact { min-height: 568px; } .find-cards { max-width: 800px; } .find-card:hover { transform: scale(1.07); } .not-alone-container { max-width: 1200px; padding: 64px; } .active-content { padding: 120px 24px; } .about-cards-wrap { flex-direction: row; gap: 48px; align-items: flex-start; } .about-img { max-width: 450px; } .about-info-items { max-width: 500px; } .dep-cards { flex-wrap: nowrap; gap: 32px; } .dep-card { min-width: 315px; flex: 1; } .dep-card:nth-child(1):hover { transform: scale(1.2) translate(25%, 0); } .dep-card:nth-child(2):hover { transform: scale(1.2) translate(0, 0); } .dep-card:nth-child(3):hover { transform: scale(1.2) translate(-25%, 0); } .accordion-content p { font-size: 18px; padding: 32px; } } @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } } *:focus-visible { outline: 2px solid var(--app-color-blue); outline-offset: 2px; border-radius: 40px; } *:focus:not(:focus-visible) { outline: none; } @media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }