File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -379,6 +379,81 @@ body::after {
379379
380380}
381381
382+ .screens-section {
383+
384+ padding : 100px 8% ;
385+ }
386+
387+ .section-title {
388+
389+ text-align : center;
390+
391+ margin-bottom : 60px ;
392+ }
393+
394+ .section-title h2 {
395+
396+ font-size : 42px ;
397+
398+ color : var (--verde-escuro );
399+
400+ margin-bottom : 12px ;
401+ }
402+
403+ .section-title p {
404+
405+ color : var (--texto-mutado );
406+ }
407+
408+ .screens-grid {
409+
410+ display : grid;
411+
412+ grid-template-columns :
413+ repeat (auto-fit, minmax (320px , 1fr ));
414+
415+ gap : 30px ;
416+ }
417+
418+ .screen-card {
419+
420+ background : white;
421+
422+ border-radius : 20px ;
423+
424+ overflow : hidden;
425+
426+ border : 1px solid rgba (15 , 23 , 42 , 0.08 );
427+
428+ box-shadow :
429+ 0 8px 24px rgba (15 , 23 , 42 , 0.06 );
430+
431+ transition : var (--transition );
432+ }
433+
434+ .screen-card : hover {
435+
436+ transform : translateY (-8px );
437+
438+ box-shadow :
439+ 0 20px 40px rgba (15 , 23 , 42 , 0.12 );
440+ }
441+
442+ .screen-card img {
443+
444+ width : 100% ;
445+
446+ display : block;
447+ }
448+
449+ .screen-card h3 {
450+
451+ padding : 20px ;
452+
453+ text-align : center;
454+
455+ color : var (--verde-escuro );
456+ }
382457
383458/* CARDS BENEFÍCIOS*/
384459
You can’t perform that action at this time.
0 commit comments