Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

site.css 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789
  1. /*General Style*/
  2. @font-face {
  3. font-family: 'Space Grotesk';
  4. src: url('../assets/fonts/SpaceGrotesk-VariableFont_wght.ttf') format('truetype');
  5. font-style: normal;
  6. }
  7. @font-face {
  8. font-family: 'Nasalization Rg';
  9. src: url('../assets/fonts/Nasalization_Rg.otf') format('truetype');
  10. font-style: normal;
  11. }
  12. * {
  13. margin: 0;
  14. font-family: 'Space Grotesk', sans-serif;
  15. color: #001F3F;
  16. }
  17. h1 {
  18. font-size: clamp(2em, 5vw, 6.25em);
  19. font-weight: 400;
  20. }
  21. h2 {
  22. font-size: clamp(1.5em, 3.906vw, 4.688em);
  23. font-weight: 400;
  24. }
  25. h4 {
  26. font-size: clamp(1em, 2.6vw, 3.063em);
  27. font-weight: 400;
  28. }
  29. h5 {
  30. font-size: clamp(1.83em, 1.563vw, 1.875em);
  31. font-weight: 400;
  32. }
  33. .hero-section{
  34. width: 100%;
  35. min-height: 120vh;
  36. }
  37. .hero-section video{
  38. height: 120vh;
  39. object-fit: cover;
  40. filter: brightness(50%);
  41. }
  42. .hero-section .text-highlight{
  43. z-index: 10;
  44. top:30%;
  45. left: 50%;
  46. transform: translate(-50%,-50%);
  47. width:85%;
  48. position: absolute;
  49. text-align: center;
  50. }
  51. .hero-section .cta{
  52. z-index: 10;
  53. bottom:25%;
  54. left: 50%;
  55. transform: translate(-50%,-50%);
  56. width: 100%;
  57. }
  58. .hero-section .text-highlight .title{
  59. color: #FFF;
  60. font-size: clamp(3.3em, 5vw, 5.5em);
  61. font-weight: 600;
  62. line-height: 60px;
  63. margin-bottom: 30px
  64. }
  65. .hero-section .text-highlight .description{
  66. font-size: 1.6em;
  67. width: 90%;
  68. }
  69. .p-small {
  70. font-size: clamp(0.85em, 1.042vw, 1.25em);
  71. }
  72. p {
  73. font-size: clamp(1em, 1.2vw, 1.6em);
  74. }
  75. .px-6 {
  76. padding-right: 1rem;
  77. padding-left: 1rem;
  78. }
  79. .btn-amics {
  80. font-size: clamp(0.8em, 1vw, 1.2em);
  81. background-color: rgba(255, 255, 255, 0);
  82. color: #000;
  83. border: 3px solid rgb(212, 175, 55);
  84. transition: all 0.2s ease-in-out;
  85. padding: 16px 60px;
  86. border-radius: 50px;
  87. }
  88. .btn-amics:hover {
  89. background-color: rgb(212, 175, 55);
  90. color: #FFF;
  91. }
  92. .btn-amics-small {
  93. font-size: clamp(0.8em, 1vw, 1.2em);
  94. background-color: rgba(255, 255, 255, 0);
  95. color: #FFF;
  96. border: 2px solid rgb(212, 175, 55);
  97. transition: all 0.2s ease-in-out;
  98. padding: 16px 30px;
  99. border-radius: 50px;
  100. }
  101. .btn-amics-small:hover {
  102. background-color: rgb(212, 175, 55);
  103. color: #FFF;
  104. }
  105. .text-primary2 {
  106. color: #D4AF37
  107. }
  108. .text-secondary2 {
  109. color: #909090
  110. }
  111. .navbar-custom {
  112. background: rgba(0, 0, 0, 0.4) !important;
  113. box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  114. }
  115. .navbar-custom .navbar-brand,
  116. .navbar-custom .nav-link {
  117. font-size: clamp(0.85em, 1.042vw, 1.25em);
  118. color: white !important;
  119. /* White text */
  120. }
  121. .navbar-custom .nav-link:hover {
  122. color: #f8d210 !important;
  123. /* Highlight color */
  124. }
  125. .navbar-custom .navbar-toggler {
  126. background: transparent !important;
  127. /* Transparent background */
  128. border: none;
  129. /* Remove border */
  130. }
  131. .navbar-custom .navbar-toggler-icon {
  132. filter: brightness(0) invert(1);
  133. /* Makes the icon white */
  134. }
  135. .card {
  136. border: none;
  137. border-radius: 25px;
  138. overflow: hidden;
  139. }
  140. .card-img-top {
  141. border-radius: 50px;
  142. }
  143. .round-btn {
  144. width: 60px;
  145. height: 60px;
  146. border-radius: 50%;
  147. display: flex;
  148. align-items: center;
  149. justify-content: center;
  150. overflow: hidden;
  151. padding: 0;
  152. }
  153. .round-btn img {
  154. width: 60%;
  155. height: auto;
  156. }
  157. /* HOME */
  158. .section {
  159. padding-top: 40px;
  160. border-radius: 50px 50px 0 0;
  161. transform: translateY(-7%);
  162. }
  163. .section .text-highlight{
  164. font-size: clamp(3em, 5vw, 6.25em);
  165. font-weight: 500;
  166. width: 90%;
  167. margin: 0 auto;
  168. margin-bottom: 100px;
  169. }
  170. .section .text-highlight2{
  171. margin-bottom: 50px;
  172. }
  173. .section .text-highlight2 img{
  174. vertical-align:middle;
  175. margin-bottom: 45px;
  176. width: 70%;
  177. vertical-align:middle;
  178. }
  179. .section .text-highlight3{
  180. font-size: clamp(3em, 5vw, 6.25em);
  181. font-weight: 500;
  182. margin-bottom: 50px;
  183. }
  184. .amics-logo{
  185. width: 110px
  186. }
  187. .section2 {
  188. border-radius: 50px 50px 0 0;
  189. background-image: #FFF;
  190. }
  191. .section2 .inner{
  192. padding-top: 40px;
  193. border-radius: 50px 50px 0 0;
  194. transform: translateY(2%);
  195. background: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(0,41,105,1) 70%, rgba(50,47,36,1) 100%);
  196. }
  197. .logo-text-highlight{
  198. margin-bottom: 50px;
  199. }
  200. .logo-text-highlight img{
  201. vertical-align:middle;
  202. margin-bottom: 45px;
  203. width: 70%;
  204. vertical-align:middle;
  205. }
  206. .section2 .text-highlight3{
  207. width: 80%;
  208. margin-bottom: 50px;
  209. color: #FFF;
  210. }
  211. .section2 .text-highlight4{
  212. width: 100%;
  213. color: #FFF;
  214. }
  215. .section3 {
  216. padding-top: 50px;
  217. border-radius: 50px 50px 0 0;
  218. }
  219. .section3 .text-highlight3{
  220. margin-bottom: 30px;
  221. padding-left:30px;
  222. border-left: 5px solid rgb(212, 175, 55);
  223. }
  224. .section3 .text-highlight4{
  225. margin-bottom: 50px;
  226. }
  227. .section4 {
  228. border-bottom: 2px solid #ddd;
  229. border-radius: 50px 50px 0 0;
  230. background-image: linear-gradient(to left, #D4AF37 , #001F3F);
  231. }
  232. .section4 .inner{
  233. border-radius: 50px 50px 0 0;
  234. transform: translateY(3%);
  235. background: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(0,41,105,1) 70%, rgba(50,47,36,1) 100%);
  236. padding-top:80px;
  237. }
  238. .section4 .text-highlight{
  239. margin-bottom: 25px;
  240. }
  241. .section4 .text-highlight2{
  242. margin-bottom: 50px;
  243. font-size: clamp(3em, 3.906vw, 4.688em);
  244. }
  245. .section5 {
  246. padding: 70px;
  247. border-radius: 50px 50px 0 0;
  248. transform: translateY(-10%);
  249. }
  250. .video-player {
  251. width: 100vw;
  252. height: 100vh;
  253. display: flex;
  254. justify-content: center;
  255. align-items: center;
  256. background: black;
  257. }
  258. .video-player video {
  259. width: 100%;
  260. height: 100%;
  261. object-fit: cover;
  262. }
  263. /*PRICING PAGE*/
  264. .pricing-hero-section {
  265. min-height: 120vh;
  266. background: url(../assets/images/wallpaper7.jpg) no-repeat center center;
  267. }
  268. .pricing-section1 {
  269. padding-top: 105px;
  270. border-radius: 150px 150px 0 0;
  271. transform: translateY(-7%);
  272. }
  273. .pricing-section2 {
  274. border-bottom: 2px solid #ddd;
  275. border-radius: 150px 150px 0 0;
  276. }
  277. .pricing-section3 {}
  278. .pricing-section4 {
  279. padding-top: 80px;
  280. }
  281. .trial-banner {}
  282. .trial-banner h3,
  283. .trial-banner i {
  284. color: #FFF;
  285. font-weight: 600;
  286. display: inline;
  287. margin-right: 10px;
  288. }
  289. .pricing-card {
  290. border-radius: 50px;
  291. overflow: hidden;
  292. background-color: rgba(247, 247, 247, 1);
  293. min-height: 100px;
  294. transition: all 0.3s ease-in-out;
  295. position: relative;
  296. }
  297. .pricing-card.middle {
  298. background: linear-gradient(195deg,
  299. rgba(0, 31, 63, 1) 45%,
  300. rgba(212, 175, 55, 1) 100%);
  301. transition: all 0.3s ease-in-out;
  302. }
  303. .pricing-card:hover.middle {
  304. background: linear-gradient(to right,
  305. rgba(247, 247, 247, 0),
  306. /* Start with 80% opacity */
  307. rgba(200, 200, 200, 0)
  308. /* End with 50% opacity */
  309. );
  310. }
  311. .pricing-card.middle span,
  312. .pricing-card.middle p,
  313. .pricing-card.middle h5,
  314. .pricing-card.middle li,
  315. .pricing-card.middle button {
  316. color: #FFF !important;
  317. }
  318. .pricing-card:hover {
  319. border-radius: 50px;
  320. background-color: rgba(247, 247, 247, 0);
  321. min-height: 100px;
  322. transition: all 0.3s ease-in-out;
  323. position: relative;
  324. }
  325. .pricing-card:hover span,
  326. .pricing-card:hover h5,
  327. .pricing-card:hover li,
  328. .pricing-card:hover button {
  329. color: #FFF !important;
  330. }
  331. .pricing-card ul {
  332. list-style-image: url(../assets/images/checklist-icon.png);
  333. }
  334. .pricing-card ul li {
  335. font-size: clamp(1.83em, 1.563vw, 1.875em);
  336. margin-bottom: 22px;
  337. }
  338. .pricing-card .pricepoint {
  339. font-size: clamp(1.23em, 1.302vw, 1.463em);
  340. }
  341. #pricng-email-input {
  342. font-size: clamp(0.8em, 1vw, 1.2em);
  343. color: #FFF;
  344. }
  345. #pricng-email-input::placeholder {
  346. color: #FFF;
  347. font-weight: bold;
  348. font-size: clamp(0.8em, 1vw, 1.2em);
  349. opacity: 1;
  350. /* Firefox */
  351. }
  352. #pricng-email-input2 {
  353. font-size: clamp(0.8em, 1vw, 1.2em);
  354. color: #000;
  355. background-color: rgba(255, 255, 255, 0.2);
  356. border: 1px solid gray;
  357. padding: 20px 50px;
  358. border-radius: 50px;
  359. }
  360. #pricng-email-input2::placeholder {
  361. color: #000;
  362. font-weight: bold;
  363. font-size: clamp(0.8em, 1vw, 1.2em);
  364. opacity: 1;
  365. /* Firefox */
  366. }
  367. .plan-feature-card {
  368. background-color: #FFF;
  369. box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  370. border-radius: 50px;
  371. padding: 30px;
  372. }
  373. /* CONTACT PAGE */
  374. .contact-section {
  375. padding-top: 80px;
  376. }
  377. .bg-contact {
  378. background: url(../assets/images/wallpaper8.jpg);
  379. padding-top: 50%;
  380. background-size: cover;
  381. }
  382. .contact-form {
  383. background-color: #F7F7F7;
  384. border: none;
  385. }
  386. .contact-form input {
  387. border: none;
  388. transition: all 0.3s ease-in-out;
  389. outline: none;
  390. padding: 10px 15px;
  391. border-radius: 50px;
  392. border: 1px solid #ADADAD;
  393. font-size: clamp(1em, 1.242vw, 1.45em);
  394. margin-bottom: 20px;
  395. }
  396. .contact-form input:focus-visible {
  397. border: none;
  398. outline: 1px solid #D4AF37;
  399. }
  400. .contact-form input::placeholder {
  401. color: #ADADAD;
  402. }
  403. .contact-form .btn-submit {
  404. font-size: clamp(0.8em, 1vw, 1.2em);
  405. color: #FFF;
  406. border: 3px solid rgb(212, 175, 55);
  407. background-color: rgb(212, 175, 55);
  408. transition: all 0.2s ease-in-out;
  409. padding: 16px 60px;
  410. border-radius: 50px;
  411. width: 100%;
  412. }
  413. .contact-form .btn-submit:hover {
  414. background-color: rgba(255, 255, 255, 0);
  415. color: #000;
  416. }
  417. /* NAVBAR */
  418. .navbar-innner-container {
  419. padding: 10px 20px;
  420. }
  421. /* FOOTER */
  422. .footer-text {
  423. font-family: 'Nasalization Rg', sans-serif !important;
  424. font-weight: 400;
  425. margin-bottom: 40px;
  426. font-size: clamp(2em, 4.7vw, 5.64em);
  427. }
  428. .footer-text span {
  429. font-family: 'Nasalization Rg', sans-serif !important;
  430. border-bottom: 1px solid;
  431. padding: 0;
  432. }
  433. .footer-section {
  434. border-bottom: 2px solid #ddd;
  435. border-radius: 150px 150px 0 0;
  436. background: linear-gradient(to left, #D4AF37, #001F3F);
  437. padding-top: 20px;
  438. padding-bottom: 0;
  439. }
  440. .footer-inner {
  441. padding-top: 105px;
  442. border-radius: 140px 140px 0 0;
  443. background: rgb(0, 31, 63);
  444. background: linear-gradient(195deg, rgba(0, 31, 63, 1) 36%, rgba(75, 64, 25, 1) 100%);
  445. }
  446. .footer-menu-container {
  447. padding: 0px;
  448. }
  449. .footer-column {
  450. margin-bottom: 40px;
  451. }
  452. .footer-column h5 {
  453. font-weight: 400;
  454. color: #FFF;
  455. letter-spacing: 1px;
  456. margin-bottom: 30px;
  457. }
  458. .footer-column ul {
  459. padding: 0;
  460. list-style: none;
  461. }
  462. .footer-column ul li {
  463. margin-bottom: 15px;
  464. }
  465. .footer-column ul li a {
  466. color: #FFF;
  467. text-decoration: none;
  468. transition: all 0.3s ease-in-out;
  469. }
  470. .footer-column ul li a:hover {
  471. color: #D4AF37;
  472. transform: translateX(5px);
  473. }
  474. .footer-bottom {
  475. text-align: center;
  476. padding-top: 15px;
  477. font-size: 14px;
  478. color: #ccc;
  479. }
  480. .footer-link-menu-icon {
  481. font-size: 25px;
  482. gap: 35px
  483. }
  484. .footer-link-menu2 {
  485. gap: 30px;
  486. list-style: none;
  487. }
  488. .footer-link-menu2 li a {
  489. color: #FFF;
  490. text-decoration: none;
  491. transition: color 0.3s ease-in-out;
  492. }
  493. .footer-link-menu2 li a:hover {
  494. color: #D4AF37;
  495. }
  496. /*BOOTSTRAP RESPONSIVE*/
  497. /* Small devices (≥576px) - sm */
  498. @media (min-width: 576px) {
  499. .footer-menu-container {
  500. padding: 0px 60px;
  501. }
  502. }
  503. /* Medium devices (≥768px) - md */
  504. @media (min-width: 768px) {
  505. .hero-section .cta{
  506. z-index: 10;
  507. bottom:15%;
  508. left: 50%;
  509. transform: translate(-50%,-50%);
  510. width: 100%;
  511. }
  512. .section {
  513. padding-top: 105px;
  514. border-radius: 150px 150px 0 0;
  515. transform: translateY(-7%);
  516. }
  517. .section .text-highlight{
  518. font-size: clamp(3em, 5vw, 6.25em);
  519. font-weight: 400;
  520. margin: 0 auto;
  521. width: 100%;
  522. margin-bottom: 100px;
  523. }
  524. .section .text-highlight2{
  525. margin-bottom: 50px;
  526. }
  527. .section .text-highlight2 img{
  528. vertical-align:middle;
  529. margin-right: 45px;
  530. width: 120px;
  531. vertical-align:middle;
  532. }
  533. .section .text-highlight3{
  534. font-size: clamp(3em, 5vw, 6.25em);
  535. font-weight: 400;
  536. margin-bottom: 50px;
  537. }
  538. .amics-logo{
  539. width: 250px
  540. }
  541. .section2 {
  542. border-bottom: 2px solid #ddd;
  543. border-radius: 150px 150px 0 0;
  544. background-image: linear-gradient(to right, #D4AF37 , #001F3F);
  545. transform: translateY(-5%);
  546. }
  547. .section2 .inner{
  548. padding-top: 105px;
  549. border-radius: 150px 150px 0 0;
  550. transform: translateY(2%);
  551. background: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(0,41,105,1) 70%, rgba(50,47,36,1) 100%);
  552. }
  553. .logo-text-highlight{
  554. margin-bottom: 50px;
  555. }
  556. .logo-text-highlight img{
  557. vertical-align:middle;
  558. margin-right: 45px;
  559. width: 120px;
  560. vertical-align:middle;
  561. }
  562. .section2 .text-highlight3{
  563. width: 80%;
  564. margin-bottom: 50px;
  565. color: #909090;
  566. }
  567. .section2 .text-highlight4{
  568. width: 100%;
  569. margin-bottom: 50px;
  570. color: #909090;
  571. }
  572. .section3 {
  573. padding-top: 105px;
  574. border-radius: 150px 150px 0 0;
  575. transform: translateY(-16%);
  576. }
  577. .section4 {
  578. border-radius: 150px 150px 0 0;
  579. }
  580. .section4 .inner{
  581. border-radius: 150px 150px 0 0;
  582. transform: translateY(3%);
  583. padding-top:80px;
  584. }
  585. .section5 {
  586. padding: 70px;
  587. border-radius: 150px 150px 0 0;
  588. transform: translateY(-10%);
  589. }
  590. .footer-menu-container {
  591. padding: 0px 15px;
  592. }
  593. .hero-section{
  594. width: 100%;
  595. min-height: 140vh;
  596. }
  597. .hero-section video{
  598. height: 140vh;
  599. object-fit: cover;
  600. filter: brightness(50%);
  601. }
  602. .hero-section .text-highlight{
  603. z-index: 10;
  604. top:43%;
  605. left: 50%;
  606. transform: translate(-50%,-50%);
  607. width:80%;
  608. position: absolute;
  609. text-align: center;
  610. }
  611. .contact-form input {
  612. border: none;
  613. transition: all 0.3s ease-in-out;
  614. outline: none;
  615. padding: 25px 40px;
  616. border-radius: 50px;
  617. border: 1px solid #ADADAD;
  618. margin-bottom: 20px;
  619. }
  620. .hero-section .text-highlight .title{
  621. color: #FFF;
  622. font-size: clamp(3em, 5vw, 5.5em);
  623. font-weight: 600;
  624. line-height: 70px;
  625. margin-bottom: 30px
  626. }
  627. }
  628. /* Large devices (≥992px) - lg */
  629. @media (min-width: 992px) {
  630. .footer-menu-container {
  631. padding: 0px 5px;
  632. }
  633. .px-6 {
  634. padding-right: 7rem;
  635. padding-left: 7rem;
  636. }
  637. }
  638. /* Extra large devices (≥1200px) - xl */
  639. @media (min-width: 1200px) {
  640. .footer-menu-container {
  641. padding: 0px 120px;
  642. }
  643. }
  644. /* XXL devices (≥1400px) - xxl */
  645. @media (min-width: 1400px) {
  646. .footer-menu-container {
  647. padding: 0px 190px;
  648. }
  649. }