-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhazte-socio.html
1065 lines (854 loc) · 78.2 KB
/
hazte-socio.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="es"class="no-js">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0" />
<title>Hazte socio/a. Únete a Greenpeace.</title>
<style>
.leftbox{position:relative;width:100%;padding-right:15px;padding-left:15px;flex:0 0 100%;max-width:100%}#ammountContainer_rg,#otherAmmountContainer{margin-bottom:20px}#ammountContainer_rg .btn{font-size:15px;padding:19px}#ammountContainer_rg .btn-secondary.active{background-color:#a0b4c2;color:#444}#ammountContainer_rg input[type=radio]{position:absolute;clip:rect(0,0,0,0)}#petition_text{margin-bottom:20px}body{margin:0;font-family:sans-serif;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}h1,h2,h3{margin-top:0;margin-bottom:.5rem}[type=button],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}h1,h2,h3{margin-bottom:.5rem;font-weight:500;line-height:1.2}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:center center no-repeat;background-size:100% 100%}@media (min-width:768px){.tips{flex:0 0 33.33333%;max-width:33.33333%}body{font:14px/20px "Work Sans",sans-serif}}.btn,h1,h2,h3{font-family:Rubik,sans-serif;font-weight:700}@media (min-width:360px){ #ammountContainer_rg .btn{font-size:16px;padding:23px}#timesPerYear>.btn-group>.btn{font-size:16px;padding:18px}}@media (min-width:414px){ #timesPerYear>.btn-group>.btn{padding:29px}#ammountContainer_one_off .btn,#ammountContainer_rg .btn{font-size:16px;padding:30px}}@media (min-width:460px){ #timesPerYear>.btn-group>.btn{font-size:20px;padding:28px}#ammountContainer_one_off .btn,#ammountContainer_rg .btn{font-size:20px;padding:31px}}@media (min-width:540px){ #timesPerYear>.btn-group>.btn{font-size:18px;padding:28px 42px}#ammountContainer_one_off .btn,#ammountContainer_rg .btn{font-size:18px;padding:32px 41px}}@media (min-width:576px){ #timesPerYear>.btn-group>.btn{font-size:15px;padding:13px 9px}#ammountContainer_one_off .btn,#ammountContainer_rg .btn{font-size:15px;padding:14px}}@media (min-width:768px){.tips div{padding:14px;margin-bottom:40px}.veryfySSL{padding:25px 0 0}.form-control{font-size:15px;height:34px}#timesPerYear>.btn-group>.btn{padding:13px}#ammountContainer_one_off .btn,#ammountContainer_rg .btn{font-size:15px;padding:17px}#form_container,#petition_text{margin-bottom:30px}#thankyouright .picture-container{box-shadow:1px 1px 5px rgba(0,0,0,.5)}}@media (min-width:992px){.greenlogo{width:150px}.veryfySSL{padding:0 0 0 20px}#timesPerYear>.btn-group>.btn{font-size:18px;padding:22px}#ammountContainer_one_off .btn,#ammountContainer_rg .btn{font-size:18px;padding:26px}}:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%}header,nav{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}ol,ul{margin-top:0;margin-bottom:1rem}strong{font-weight:bolder}small{font-size:80%}sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}img{vertical-align:middle;border-style:none}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button,input{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button{text-transform:none}[type=button],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}[hidden]{display:none!important}h1,h2,h3,h4{margin-bottom:.5rem;font-weight:500;line-height:1.2}h1{font-size:2.5rem}h2{font-size:2rem}h3{font-size:1.75rem}h4{font-size:1.5rem}.lead{font-size:1.25rem;font-weight:300}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}small{font-size:80%;font-weight:400}.img-fluid{max-width:100%;height:auto}.container,.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){ #timesPerYear>.btn-group>.btn{padding:25px 34px}#ammountContainer_one_off .btn,#ammountContainer_rg .btn{font-size:18px;padding:25px 35px}#form_container,#petition_text{margin-bottom:30px}.donation_and_rg .buttoncontainer{margin:17px 0 71px}.donation_and_rg .btn{font-size:21px}.donation_and_rg #rightMaincontainer{padding-left:20px}.donation_and_rg .buttoncontainer{margin:17px 0 30px}.container{max-width:1140px}}.row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.col{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{flex-basis:0;flex-grow:1;max-width:100%}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-group{margin-bottom:1rem}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.fade:not(.show){opacity:0}.btn-group{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group>.btn.active{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:.5rem 1rem}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50%/100% 100% no-repeat}@media (min-width:992px){.navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-toggler{display:none}}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem}.modal.fade .modal-dialog{transform:translate(0,-50px)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@media (prefers-reduced-motion:reduce){.spinner-border{animation-duration:1.5s}}.d-none{display:none!important}.text-center{text-align:center!important}.top_alert{position:relative;width:100%;padding-right:15px;padding-left:15px;flex:0 0 100%;max-width:100%}@media (min-width:576px){.top_alert{flex:0 0 83.33333%;max-width:83.33333%;margin-left:8.33333%}}@media (min-width:768px){.top_alert{flex:0 0 66.66667%;max-width:66.66667%;margin-left:16.66667%}}@media (min-width:992px){.top_alert{flex:0 0 66.66667%;max-width:66.66667%;margin-left:16.66667%}}.title_and_slogan{position:relative;width:100%;padding-right:15px;padding-left:15px;flex:0 0 100%;max-width:100%}#leftMaincontainer,.rightbox{position:relative;width:100%;padding-right:15px;padding-left:15px;flex:0 0 100%;max-width:100%}@media (min-width:576px){ #leftMaincontainer,.rightbox{flex:0 0 50%;max-width:50%}}@media (min-width:768px){ #leftMaincontainer,.rightbox{flex:0 0 58.33333%;max-width:58.33333%}}@media (min-width:992px){ #leftMaincontainer,.rightbox{flex:0 0 58.33333%;max-width:58.33333%}}#rightMaincontainer,.leftbox{position:relative;width:100%;padding-right:15px;padding-left:15px;flex:0 0 100%;max-width:100%}@media (min-width:576px){ #rightMaincontainer,.leftbox{flex:0 0 50%;max-width:50%}}@media (min-width:768px){ #rightMaincontainer,.leftbox{flex:0 0 41.66667%;max-width:41.66667%}}@media (min-width:992px){ #rightMaincontainer,.leftbox{flex:0 0 41.66667%;max-width:41.66667%}}.grid_step{position:relative;width:100%;padding-right:15px;padding-left:15px;flex:0 0 100%;max-width:100%}.form_col{position:relative;width:100%;padding-right:15px;padding-left:15px;flex:0 0 100%;max-width:100%}@media (min-width:768px){.form_col{flex:0 0 50%;max-width:50%}}.horizontal-separator{position:relative;width:100%;padding-right:15px;padding-left:15px;flex:0 0 100%;max-width:100%}.tips{position:relative;width:100%;padding-right:15px;padding-left:15px;flex:0 0 100%;max-width:100%}@media (min-width:576px){.tips{flex:0 0 33.33333%;max-width:33.33333%}}.navbar{margin-bottom:0}body{font:14px/20px "Work Sans",sans-serif;font-weight:400;color:#000002}@media (min-width:600px){body{font:15px/21px "Work Sans",sans-serif}}@media (min-width:768px){.tips{flex:0 0 33.33333%;max-width:33.33333%}body{font:14px/20px "Work Sans",sans-serif}}@media (min-width:992px){body{font:15px/21px "Work Sans",sans-serif}}.btn,h1,h2,h3,h4{font-family:Rubik,sans-serif;font-weight:700}h1{font-size:27px;line-height:31px;margin-top:10px}@media (min-width:600px){h1{font-size:30px;line-height:35px;margin-top:15px}}@media (min-width:768px){h1{font-size:28px;line-height:37px;margin-bottom:10px}}@media (min-width:992px){h1{font-size:30px;line-height:40px;margin-top:20px}}@media (min-width:1200px){h1{font-size:38px;line-height:48px}}h2{font-size:19px;line-height:23px}@media (min-width:600px){h2{font-size:21px;line-height:27px}}@media (min-width:768px){h2{font-size:18px;line-height:22px}}@media (min-width:992px){h2{font-size:19px;line-height:24px}}@media (min-width:1200px){h2{font-size:21px;line-height:28px}}h3{font-size:19px;line-height:27px}h4{font-size:1rem}a{text-decoration:underline;color:#334b78}small{font-size:75%}header a{text-decoration:none}.lead{line-height:1.3;font-size:17px}@media (min-width:600px){.lead{font-size:20px}}@media (min-width:768px){.lead{font-size:18px;line-height:1.4}}@media (min-width:1200px){.lead{font-size:20px;line-height:1.4}}label{font-weight:700}label sup{top:-.3em;color:#00f;font-size:85%}.btn{font-size:19px}.alert{font-size:11px;line-height:17px}@media (min-width:1200px){.alert{font-size:13px}}strong{font-weight:700}hr{border-width:1px}#logoHeadContainer{background-color:#0c4413}.greenlogo{width:140px;height:auto}.alert{margin-bottom:0;padding:10px}.alert-danger{background-color:rgba(243,123,125,.15);border-color:#f39b9d;color:#000;font-size:17px;line-height:24px}#no-js-msg{display:none}.no-js #no-js-msg{display:block}.title_and_slogan{margin-bottom:7px}.one-image{box-shadow:1px 1px 5px rgba(0,0,0,.3)}.modal-content{background-color:rgba(255,255,255,.92)}.tips div{margin-bottom:25px}.tips h3{margin-top:0}.veryfySSL{padding:35px 0 0}@media (min-width:768px){.tips div{padding:14px;margin-bottom:40px}.veryfySSL{padding:25px 0 0}}@media (min-width:992px){.greenlogo{width:150px}.veryfySSL{padding:0 0 0 20px}}.form-group{margin-bottom:20px}.form-control{border:1px solid #aaa;font-size:16px;height:36px}.radio{margin-bottom:15px}.lock{vertical-align:top;width:9px}.localizer{color:red;text-align:center;margin-bottom:22px}.buttoncontainer{margin:15px 0}.btn-info{background-color:#f99713;border-color:#e78f01;padding-left:25px;padding-right:25px;box-shadow:1px 1px 5px rgba(0,0,0,.3)}.btn-primary{box-shadow:1px 1px 5px rgba(0,0,0,.3);padding-left:25px;padding-right:25px}#ammountContainer_one_off,#ammountContainer_rg,#otherAmmountContainer{margin-bottom:20px}#timesPerYear{margin-bottom:20px}#timesPerYear>.btn-group>.btn{font-size:15px;padding:15px}#ammountContainer_one_off .btn,#ammountContainer_rg .btn{font-size:15px;padding:19px}@media (min-width:360px){ #timesPerYear>.btn-group>.btn{font-size:16px;padding:18px}#ammountContainer_one_off .btn,#ammountContainer_rg .btn{font-size:16px;padding:23px}}@media (min-width:414px){ #timesPerYear>.btn-group>.btn{padding:29px}#ammountContainer_one_off .btn,#ammountContainer_rg .btn{font-size:16px;padding:30px}}@media (min-width:460px){ #timesPerYear>.btn-group>.btn{font-size:20px;padding:28px}#ammountContainer_one_off .btn,#ammountContainer_rg .btn{font-size:20px;padding:31px}}@media (min-width:540px){ #timesPerYear>.btn-group>.btn{font-size:18px;padding:28px 42px}#ammountContainer_one_off .btn,#ammountContainer_rg .btn{font-size:18px;padding:32px 41px}}@media (min-width:576px){ #timesPerYear>.btn-group>.btn{font-size:15px;padding:13px 9px}#ammountContainer_one_off .btn,#ammountContainer_rg .btn{font-size:15px;padding:14px}}@media (min-width:768px){.form-control{font-size:15px;height:34px}#timesPerYear>.btn-group>.btn{padding:13px}#ammountContainer_one_off .btn,#ammountContainer_rg .btn{font-size:15px;padding:17px}}@media (min-width:992px){ #timesPerYear>.btn-group>.btn{font-size:18px;padding:22px}#ammountContainer_one_off .btn,#ammountContainer_rg .btn{font-size:18px;padding:26px}}#ammountContainer_one_off .btn-secondary.active,#ammountContainer_rg .btn-secondary.active,#timesPerYear .btn-secondary.active{background-color:#a0b4c2;color:#444}#ammountContainer_one_off input[type=radio],#ammountContainer_rg input[type=radio],#timesPerYear input[type=radio]{position:absolute;clip:rect(0,0,0,0)}#otherAmmountContainer{background-color:#baccd9;border:1px solid #ccc;border-radius:4px;padding:10px 20px 1px}#genderContainer{margin-bottom:20px}#selectAccountORcard{margin-bottom:20px}#form_container,#petition_text{margin-bottom:20px}@media (min-width:1200px){ #timesPerYear>.btn-group>.btn{padding:25px 34px}#ammountContainer_one_off .btn,#ammountContainer_rg .btn{font-size:18px;padding:25px 35px}#form_container,#petition_text{margin-bottom:30px}}#thankyouleft,#thankyouright{margin-bottom:20px}@media (min-width:768px){ #form_container,#petition_text{margin-bottom:30px}#thankyouright .picture-container{box-shadow:1px 1px 5px rgba(0,0,0,.5)}}.btn-secondary{color:#fff;background-color:#c9d1c7}.awesomplete{display:block;position:relative}#cookiePromptCenter h2{margin-top:0;font-size:21px!important;font-weight:700!important;margin-bottom:12px}#cookiePromptCenterDialog1{margin-top:70px}#cookiePromptCenterDialog1 .modal-content{padding:0;border-width:2px;border-color:#144005;border-style:solid}#cookiePromptCenter .modal-content{background-color:#fff}#cookiePromptCenter .modal-title{margin-bottom:10px}#cookiePromptCenterButtons{margin:20px 0}#cookiePromptCenter .btn-primary{box-shadow:1px 1px 3px rgba(0,0,0,.5)}#cookiePromptCenter .btn-secondary{border:none;background-color:#b9c3cc;box-shadow:1px 1px 3px rgba(100,100,100,.5)}#cookiePromptCenter [data-cookieResponse=accept]{background-color:#2ab20b;border-color:#2ab20b;margin-bottom:0;margin-right:5px}#cookiePromptCenter [data-cookieResponse=config]{font-weight:400;font-size:14px;line-height:30px;margin-left:5px}@media (max-width:460px){ #cookiePromptCenter [data-cookieResponse=accept]{margin-right:0;display:block;margin:auto;margin-bottom:18px}#cookiePromptCenter [data-cookieResponse=config]{margin-left:0;display:block;margin:auto}#cookiePromptCenter p{font-size:14px}}@media (min-width:600px){ #cookiePromptCenterDialog1{margin-top:145px}}@media (min-width:992px){ #cookiePromptCenterDialog1{margin-top:180px}}@media (max-height:500px){ #cookiePromptCenterDialog1{margin-top:0}}#cookiePromptSettings{margin-top:70px}#cookiePromptSettings .modal-content{padding:0;border-width:2px;border-color:#144005;border-style:solid}#cookiePromptSettings .modal-content{background-color:#fff}#cookiePromptSettings .modal-title{margin-bottom:10px}#cookiePromptSettings h2{margin-top:0;font-size:19px!important;font-weight:700!important;margin-bottom:12px}#cookiePromptSettings a{color:#2ab20b;text-decoration:none}#cookiePrivacySettings label{font-weight:700;font-size:16px}#cookiePrivacySettings .form-check-label{color:#000}#cookiePrivacySettings a{color:#2ab20b}#cookiePrivacySettings .btn-primary{border:none;background-color:#2ab20b;border-color:#2ab20b;box-shadow:1px 1px 3px rgba(0,0,0,.5);padding-left:25px;padding-right:25px}#cookiePrivacySettings .btn-secondary{border:none;background-color:#b9c3cc;box-shadow:1px 1px 3px rgba(100,100,100,.5);padding-left:25px;padding-right:25px}#cookiePrivacySettings [data-cookieResponse=OK]{padding-left:40px;padding-right:40px}#cookiePrivacySettings [data-cookieResponse=accept_all],#cookiePrivacySettings [data-cookieResponse=deny_all]{font-weight:400;font-size:14px;line-height:23px;margin-bottom:15px}@media (max-width:460px){ #cookiePrivacySettings p{font-size:13px}}@media (min-width:420px){ #cookiePrivacySettings [data-cookieResponse=accept_all]{margin-right:5px}}@media (min-width:600px){ #cookiePromptSettings{margin-top:100px}#cookiePrivacySettings [data-cookieResponse=accept_all]{margin-right:10px}}#taxreturns{margin-bottom:1.4em;line-height:1.7em}#taxreturnsValue{background-color:#6c0;padding:.2em .5em;color:#fff;border-radius:2px}#taxreturnsNotes{font-size:85%;margin-top:8px;margin-bottom:25px;display:none}.donation_and_rg .form-control{border:1px solid #a5a5a5;font-size:19px;height:39px}.donation_and_rg label{font-weight:600;font-size:15.5px}.donation_and_rg .form-group{margin-bottom:23px}.donation_and_rg .buttoncontainer{margin:15px 0 25px}.donation_and_rg .btn-info{border-color:#e08a00}@media (min-width:992px){.donation_and_rg .form-control{font-size:21px;height:41px}.donation_and_rg label{font-size:16px}}.donation_and_rg .btn-info{box-shadow:1px 1px 5px rgba(0,0,0,.5)}@media (min-width:1200px){.donation_and_rg .buttoncontainer{margin:17px 0 71px}.donation_and_rg .btn{font-size:21px}.donation_and_rg #rightMaincontainer{padding-left:20px}.donation_and_rg .buttoncontainer{margin:17px 0 30px}}.ddexitpop{visibility:hidden}@media screen and (max-height:765px){.ddexitpop{top:0}}#ammountContainer_rg .btn-group{width:100%}#card-errors{color:red;margin-bottom:1.5em}#card-element{border:1px solid #aaa;border-radius:.25em;padding:.525rem .75rem;margin-bottom:1.5em}.spinner-border{vertical-align:baseline}
</style>
<link rel="preload" href="https://es.greenpeace.org/es/wp-content/themes/gp/assets/css/styles.min.css?cache=0.2.17" as="style" onload="this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://es.greenpeace.org/es/wp-content/themes/gp/assets/css/styles.min.css?cache=0.2.17"></noscript>
<link rel="preload" href="https://es.greenpeace.org/es/wp-content/themes/gp/assets/css/fonts.css" as="style" onload="this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://es.greenpeace.org/es/wp-content/themes/gp/assets/css/fonts.css"></noscript>
<link rel="preload" href="https://es.greenpeace.org/es/wp-content/themes/gp/assets/css/plyr.min.css" as="style" onload="this.rel='stylesheet'">
<style>
.wp-block-lazyblock-youtube {
margin-bottom: 1rem;
}
</style>
<script>
document.addEventListener('DOMContentLoaded', () => {
const player = Plyr.setup('.plyr__video-embed',{noCookie:true,youtube:{noCookie:true}});
});
</script>
<style>
.modal-backdrop.show {
opacity: .9;
}
</style>
<script>
/*! loadCSS. [c]2017 Filament Group, Inc. MIT License */
!function(a){"use strict";var b=function(b,c,d){function e(a){return h.body?a():void setTimeout(function(){e(a)})}function f(){i.addEventListener&&i.removeEventListener("load",f),i.media=d||"all"}var g,h=a.document,i=h.createElement("link");if(c)g=c;else{var j=(h.body||h.getElementsByTagName("head")[0]).childNodes;g=j[j.length-1]}var k=h.styleSheets;i.rel="stylesheet",i.href=b,i.media="only x",e(function(){g.parentNode.insertBefore(i,c?g:g.nextSibling)});var l=function(a){for(var b=i.href,c=k.length;c--;)if(k[c].href===b)return a();setTimeout(function(){l(a)})};return i.addEventListener&&i.addEventListener("load",f),i.onloadcssdefined=l,l(f),i};"undefined"!=typeof exports?exports.loadCSS=b:a.loadCSS=b}("undefined"!=typeof global?global:this);
/*! loadCSS rel=preload polyfill. [c]2017 Filament Group, Inc. MIT License */
!function(a){if(a.loadCSS){var b=loadCSS.relpreload={};if(b.support=function(){try{return a.document.createElement("link").relList.supports("preload")}catch(b){return!1}},b.poly=function(){for(var b=a.document.getElementsByTagName("link"),c=0;c<b.length;c++){var d=b[c];"preload"===d.rel&&"style"===d.getAttribute("as")&&(a.loadCSS(d.href,d,d.getAttribute("media")),d.rel=null)}},!b.support()){b.poly();var c=a.setInterval(b.poly,300);a.addEventListener&&a.addEventListener("load",function(){b.poly(),a.clearInterval(c)}),a.attachEvent&&a.attachEvent("onload",function(){a.clearInterval(c)})}}}(this); </script>
<script>
/* jshint browser: true */
document.getElementsByTagName("html")[0].classList.remove("no-js");
</script>
<script src="https://es.greenpeace.org/es/wp-content/themes/gp/assets/js/head.min.js?cache=0.2.17" defer></script>
<!-- General metadata -->
<link rel="canonical" href="https://es.greenpeace.org/es/que-puedes-hacer-tu/hazte-socio/" />
<link rel="shortcut icon" href="https://es.greenpeace.org/es/wp-content/themes/gp/assets/ico/favicon.png" />
<meta name="description" content="" />
<meta name="robots" content="max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
<!-- /General metadata -->
<!-- Open graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="" />
<meta property="og:url" content="https://es.greenpeace.org/es/que-puedes-hacer-tu/hazte-socio/" />
<meta property="og:description" content="" />
<meta property="og:site_name" content="Greenpeace España" />
<meta property="og:image" content="" />
<!-- /Open graph -->
<!-- Twitter cards -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@greenpeace_esp" />
<meta name="twitter:creator" content="@greenpeace_esp" />
<meta name="twitter:image" content="" />
<meta name="twitter:title" content="">
<meta name="twitter:description" content="" />
<!-- / Twitter cards -->
<!-- Statistics I -->
<script src="https://es.greenpeace.org/wp-content/themes/gp/assets/js/AbrantesPlus.js?cache=0.2.17"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-VEG9B9WWG6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('consent', 'default', {
'ad_storage': 'denied', // V1
'analytics_storage': 'denied', // V1
'ad_user_data' : 'denied', // V2
'ad_personalization':'denied' // V2
});
gtag('js', new Date());
window.googleTrackingConfig = {
'custom_map': {
'dimension1': 'ExistingOrNew',
'dimension2': 'CookiePrivacyVariant'
}
};
if (window.performance) {
document.addEventListener("DOMContentLoaded", function(event) {
window.timeSinceDomLoaded = Math.round(performance.now());
});
window.addEventListener("load", function(event) {
window.timeSinceEventLoad = Math.round(performance.now());
});
}
</script>
<!-- / Statistics I -->
<!-- Mixpanel functions -->
<script>
const setCookie = function (cname, cvalue, exdays) {
var d = new Date();
d.setTime(d.getTime() + (exdays*24*60*60*1000));
var expires = "expires="+ d.toUTCString();
document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
};
const getCookie = function (name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') c = c.substring(1, c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);
}
return "";
};
const generateUUID = function() {
var array = new Uint8Array(16);
try {
window.crypto.getRandomValues(array);
} catch (error) {
return;
}
array[6] = (array[6] & 0x0f) | 0x40; // Version 4
array[8] = (array[8] & 0x3f) | 0x80; // Variant 10
var pad = function (num) {
return (num < 16 ? '0' : '') + num.toString(16);
};
var uuid = '';
for (var i = 0; i < 16; i++) {
if (i == 4 || i == 6 || i == 8 || i == 10) {
uuid += '-';
}
uuid += pad(array[i]);
}
return uuid;
}
if (getCookie('gp_anonymous_id')) {
window.uuid = getCookie('gp_anonymous_id');
} else {
window.uuid = generateUUID();
window.addEventListener("load", function(){
if (cookieTrackingManager.canItrack("analytics")){
setCookie("gp_anonymous_id", window.uuid, 365 * 2);
}
});
}
</script>
<!-- /Mixpanel functions -->
<!-- Mixpanel container -->
<script>
(function (w, d, s, l, i) { w[l] = w[l] || []; w[l].push({ 'gtm.start': new Date().getTime(), event: 'gtm.js' }); var f = d.getElementsByTagName(s)[0], j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src = 'https://sst-test.greenpeace.es/olpjosud.js?st=' + i + dl + ''; f.parentNode.insertBefore(j, f); })(window, document, 'script', 'dataLayer', 'KM925DBR');
</script>
<!-- /Mixpanel container -->
<!-- Page type, based on the template used -->
<script>
window.googleTrackingConfig.page_type = "Donation Page";
</script>
<!-- /Page type, based on templates -->
<meta name="robots" content="max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
</head>
<body class="donation_and_rg"><!-- class regularGiving, background -->
<!-- HEADER AREA -->
<div id="logoHeadContainer">
<div class="container">
<div class="row">
<header>
<!-- Nav bar -->
<div class="container-fluid">
<nav class="navbar navbar-expand-lg">
<a id="link_home" class="navbar-brand" href="https://es.greenpeace.org/es/"><img class="greenlogo" src="https://es.greenpeace.org/wp-content/themes/gp/assets/ico/greenpeace.svg" alt="Home" /></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</nav>
</div><!-- /.container-fluid -->
<!-- /Nav bar -->
</header>
</div>
</div>
</div>
<!-- /HEADER AREA -->
<div id="mainbackground"><!-- #mainbackground -->
<div class="container" id="maincontainer"><!-- #maincontainer -->
<div class="row" id="no-js-msg">
<div class="top_alert">
<div class="alert alert-danger" role="alert">
Este site necesita que tu navegador Internet tenga habilitado JavaScript. Infórmate sobre <a target="_blank" href="http://enable-javascript.com/es/">como habilitar JavaScript en tu navegador</a>.
</div>
</div>
</div><!-- /row -->
<div class="row">
<div class="title_and_slogan">
<h1>Hazte socio/a. Únete a Greenpeace.</h1>
<p class="lead">Nos estás ayudando a seguir defendiendo el planeta de forma eficaz e independiente.</p>
</div>
</div><!-- /row -->
<div class="row">
<div id="leftMaincontainer">
<div class="picture-container">
<picture>
<source srcset="https://es.greenpeace.org/es/wp-content/uploads/sites/3/2019/05/GP04R6R-1200x0-c-default.webp" media="(min-width: 1200px)" type="image/webp">
<source srcset="https://es.greenpeace.org/es/wp-content/uploads/sites/3/2019/05/GP04R6R-1200x0-c-default.jpg" media="(min-width: 1200px)" type="image/jpeg">
<source srcset="https://es.greenpeace.org/es/wp-content/uploads/sites/3/2019/05/GP04R6R-570x0-c-default.webp" media="(min-width: 992px)" type="image/webp">
<source srcset="https://es.greenpeace.org/es/wp-content/uploads/sites/3/2019/05/GP04R6R-570x0-c-default.jpg" media="(min-width: 992px)" type="image/jpeg">
<source srcset="https://es.greenpeace.org/es/wp-content/uploads/sites/3/2019/05/GP04R6R-450x0-c-default.webp" media="(min-width: 768px)" type="image/webp">
<source srcset="https://es.greenpeace.org/es/wp-content/uploads/sites/3/2019/05/GP04R6R-450x0-c-default.jpg" media="(min-width: 768px)" type="image/jpeg">
<source srcset="https://es.greenpeace.org/es/wp-content/uploads/sites/3/2019/05/GP04R6R-737x0-c-default.webp" media="(min-width: 600px)" type="image/webp">
<source srcset="https://es.greenpeace.org/es/wp-content/uploads/sites/3/2019/05/GP04R6R-737x0-c-default.jpg" media="(min-width: 600px)" type="image/jpeg">
<source srcset="https://es.greenpeace.org/es/wp-content/uploads/sites/3/2019/05/GP04R6R-570x0-c-default.webp" media="(min-width: 481px)" type="image/webp">
<source srcset="https://es.greenpeace.org/es/wp-content/uploads/sites/3/2019/05/GP04R6R-570x0-c-default.jpg" media="(min-width: 481px)" type="image/jpeg">
<img class="img-fluid one-image" srcset="https://es.greenpeace.org/es/wp-content/uploads/sites/3/2019/05/GP04R6R-450x0-c-default.jpg" alt="El barco de Greenpeace Arctic Sunrise navegando" loading="lazy">
</picture>
</div><!-- /.picture-container -->
<p><small>© <span class="copyright">Will Rose / Greenpeace</span></small></p>
<div id="petition_text">
<p class="lead"> Para preservar nuestra independencia y nuestra libertad de acción, no aceptamos subvenciones públicas, ni aportaciones económicas de empresas o partidos políticos. </p>
<p> El 100% de nuestros recursos están constituidos por contribuciones de particulares que, como tú, han decidido apoyar económicamente nuestras campañas, porque se niegan a aceptar la degradación de nuestro medio ambiente y buscan un mundo más verde y pacífico. </p>
<script>
document.addEventListener("DOMContentLoaded", function(){
// Create the test
var ammountABtest = Object.create(Abrantes);
// Define the variants
ammountABtest.variants = [
// Original
function () {
console.log("Original");
},
// Variant 1
function () {
document.querySelector("#LabelAmountA").innerText = "10 €";
document.querySelector("#SelectAmountA").setAttribute("value", "10");
console.log("Variant 1");
},
];
// Assign a variant (Variant name, fraction of the audience to include in the experiment: from 0 to 1)
ammountABtest.assignVariant("ammountABtest", 1);
// Render the variant
ammountABtest.renderVariant();
// Persist the variant in the browser
ammountABtest.persist("session");
// Track the variant in an event dimension
ammountABtest.track("test_event_2");
// Optionally track the variant in a user dimension
ammountABtest.trackUser("test_event");
});
</script>
</div><!-- /#petition_text -->
</div><!-- /#leftMaincontainer -->
<div id="rightMaincontainer">
<div id="form_container">
<form id="form_for_regular_giving" action="https://colabora.greenpeace.es/error/placeholder" method="post" autocomplete="on">
<input type="hidden" name="campana" id="campana" class="d-none" value="XXPWBGPGP" />
<input type="hidden" name="CampaignID" id="CampaignID" value="70108000001ECCc" />
<input type="hidden" name="last_source_string" id="last_source_string" />
<input type="hidden" name="utm_medium" id="utm_medium" />
<input type="hidden" name="utm_source" id="utm_source" />
<input type="hidden" name="utm_campaign" id="utm_campaign" />
<input type="hidden" name="utm_content" id="utm_content" />
<input type="hidden" name="utm_term" id="utm_term" />
<input type="hidden" name="en_txn6" id="gclid" />
<div id="step1">
<p class="localizer"><img src="https://storage.googleapis.com/es-greenpeace-org/ico/1_3.svg" alt="Paso 1 de 3" title="Paso 1 de 3" /></p>
<div class="row">
<div class="col">
<h2>Nombre y contacto <img src="https://es.greenpeace.org/wp-content/themes/gp/assets/ico/lock.svg" alt="Seguro" class="lock" /></h2>
</div>
</div>
<div class="row">
<div class="col">
<div class="form-group">
<label for="first_name" class="d-none">Nombre <sup title="Campo obligatório">*</sup></label>
<input type="text" name="first_name" id="first_name" class="form-control" maxlength="25" required="required" spellcheck="false" autocomplete="given-name" placeholder="Nombre" />
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="form-group">
<label for="last_name" class="d-none">Apellidos <sup title="Campo obligatório">*</sup></label>
<input type="text" name="last_name" id="last_name" class="form-control" maxlength="25" required="required" spellcheck="false" autocomplete="family-name" placeholder="Apellidos" />
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="form-group">
<label for="email" class="d-none">Email <sup title="Campo obligatório">*</sup></label>
<input type="email" name="email" id="email" class="form-control" maxlength="80" required="required" spellcheck="false" autocomplete="email" placeholder="Email" />
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="form-group">
<label for="phone_number" class="d-none">Teléfono <sup title="Campo obligatório">*</sup></label>
<input type="tel" name="phone_number" id="phone_number" required="required" class="form-control" maxlength="12" autocomplete="tel-national" spellcheck="false" placeholder="Teléfono" />
</div>
</div>
</div>
<div class="row">
<div class="grid_step">
<!--googleoff: all-->
<div id="privacy_policy_text2" style="font-size: 85%; margin-bottom: 1.3em;">
<h4>Política de privacidad</h4><p data-nosnippet="true">Quiero recibir información acerca de las campañas de Greenpeace y formas de participación. Al firmar, acepto la política de privacidad. Desde GREENPEACE ESPAÑA trataremos los datos aportados en calidad de Responsable del tratamiento con la finalidad de gestionar nuestra relación contigo, en pro de nuestros objetivos fundacionales, en base al consentimiento o a la ejecución de un acuerdo. Puedes ejercer tus derechos enviando un email a [email protected] con el asunto “Protección de Datos”. <a target="_blank" href="https://es.greenpeace.org/es/politica-de-privacidad-y-cookies/" class="privacy_policy_link_form">Más información.</a></p>
</div>
<!--googleon: all-->
<label for="privacy">
<input type="checkbox" id="privacy" name="privacy" value="Y" required="required" />
<span id="iaccept">Acepto la política de privacidad <sup title="Campo obligatório">*</sup></span>
</label>
</div>
</div>
<div class="row">
<div class="form_col">
<div class="buttoncontainer">
<button type="button" id="GoToStep2" class="btn btn-info d-none" aria-hidden="true" hidden="hidden"> Continuar </button>
</div>
</div>
<div class="form_col">
<!-- BEGIN KEY CODE -->
<div class="veryfySSL buttoncontainer" hidden="hidden">
<a href="https://www.hispassl.com/zona_segura_ssl/colabora_greenpeace_es/index.php" style="border:0px" onclick="window.open(this.href, 'child', 'scrollbars,width=600,height=500'); return false" title="Certificado de conexión segura">
<img src="https://es.greenpeace.org/wp-content/themes/gp/assets/ico/zonasegura.png" alt="HispaSSL Zona Segura SSL">
</a>
</div>
<!-- END KEY CODE -->
<div style="font-size: 85%;">Página web segura. No compartiremos tus datos.</div>
</div>
</div>
</div><!-- /#step1 -->
<div id="step2">
<p class="localizer"><img src="https://storage.googleapis.com/es-greenpeace-org/ico/2_3.svg" alt="Paso 2 de 3" title="Paso 2 de 3" /></p>
<div class="row">
<div class="col">
<h2>Prefieres colaborar <img src="https://es.greenpeace.org/wp-content/themes/gp/assets/ico/lock.svg" alt="Seguro" class="lock" /></h2>
</div>
</div>
<div class="row">
<div class="col">
<div id="timesPerYear" hidden="hidden">
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-secondary active">
<input type="radio" name="timesPerYear" id="timesPerYear12" value="12" checked> Mensual
</label>
<label class="btn btn-secondary">
<input type="radio" name="timesPerYear" id="timesPerYear4" value="4"> Trimestral
</label>
<label class="btn btn-secondary">
<input type="radio" name="timesPerYear" id="timesPerYear1" value="1"> Anual
</label>
</div>
</div>
<style>
#ammountContainer .btn-group {
width: 100%;
}
</style>
<div id="ammountContainer">
<div class="btn-toolbar" data-toggle="buttons">
<div class="btn-group">
<label class="btn btn-secondary">
<input type="radio" name="amount" id="SelectAmountA" value="9"> <span id="LabelAmountA">9 €</span>
</label>
<label class="btn btn-secondary active">
<input type="radio" name="amount" id="SelectAmountB" value="12" checked> <span id="LabelAmountB">12 €</span>
</label>
<label class="btn btn-secondary">
<input type="radio" name="amount" id="SelectAmountC" value="15"> <span id="LabelAmountC">15 €</span>
</label>
</div>
<div class="btn-group">
<label class="btn btn-secondary">
<input type="radio" name="amount" id="SelectAmountD" value="18"> <span id="LabelAmountD">18 €</span>
</label>
<label class="btn btn-secondary">
<input type="radio" name="amount" id="SelectAmountE" value="22"> <span id="LabelAmountE">22 €</span>
</label>
<label class="btn btn-secondary">
<input type="radio" name="amount" id="SelectOtherAmount" value=""> Otro
</label>
</div>
</div>
</div>
<div id="otherAmmountContainer" class="d-none">
<div class="form-group d-none" aria-hidden="true" hidden="hidden" id="other_amount_container">
<label id="other_amount_label" for="other_amount" class="fieldDescription">Importe</label>
<input type="number" name="other_amount" id="other_amount" class="form-control" placeholder="" required="required" spellcheck="false" value="12" />
</div>
</div>
<div id="taxreturns" hidden>
Con esta donación <span id="txtTimesPeryear">mensual</span> realmente estás pagando <strong id="taxreturnsValue"></strong> tras la deducción fiscal <sup id="taxreturnsMoreInfoButton"><a href="javascript:void(0);">[i]</a></sup>
<div id="taxreturnsNotes">
<ol>
<li>Hasta 250 € puedes desgravarte el 80% de todas tus donaciones.</li>
<li>A partir de 250 €, de la cantidad que supera esos primeros 150 € te deduces el 40%.</li>
<li>Excepto País Vasco y Navarra, donde la deducción es del 20 y el 25%. *</li>
</ol>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col">
<h2>Datos de pago <img src="https://es.greenpeace.org/wp-content/themes/gp/assets/ico/lock.svg" alt="Seguro" class="lock" /></h2>
</div>
</div>
<div class="row">
<div class="col">
<div class="form-group">
<label for="iban" class="d-none">Número de cuenta o IBAN <sup title="Campo obligatório">*</sup></label>
<input type="text" name="iban" id="iban" placeholder="Número de cuenta o IBAN" class="form-control" maxlength="35" required="required" spellcheck="false" />
</div>
</div>
</div>
<div class="row">
<div class="col">
<label for="accountOwner" class="d-none">Titular de la cuenta <sup title="Campo obligatório">*</sup></label>
<input type="text" name="accountOwner" id="accountOwner" placeholder="Titular de la cuenta" class="form-control" maxlength="40" required="required" spellcheck="false" autocomplete="cc-name" />
</div>
</div>
<div class="row">
<div class="col">
<p><small>En los meses a que corresponda se cobrará de la cuenta corriente entre el día 1 y día 8</small></p>
</div>
</div>
<div class="row">
<div class="form_col">
<button type="button" id="GoToStep3" class="btn btn-info d-none" aria-hidden="true" hidden="hidden"> Continuar </button>
</div><!-- /.grid_step -->
<div class="form_col">
<!-- BEGIN KEY CODE -->
<div class="veryfySSL buttoncontainer" hidden="hidden">
<a href="https://www.hispassl.com/zona_segura_ssl/colabora_greenpeace_es/index.php" style="border:0px" onclick="window.open(this.href, 'child', 'scrollbars,width=600,height=500'); return false" title="Certificado de conexión segura">
<img src="https://es.greenpeace.org/wp-content/themes/gp/assets/ico/zonasegura.png" alt="HispaSSL Zona Segura SSL">
</a>
</div>
<!-- END KEY CODE -->
<div style="font-size: 85%;">Página web segura. No compartiremos tus datos.</div>
</div>
</div><!-- /.row -->
</div><!-- /#step2 -->
<div id="step3">
<p class="localizer"><img src="https://storage.googleapis.com/es-greenpeace-org/ico/3_3.svg" alt="Paso 3 de 3" title="Paso 3 de 3" /></p>
<div class="row">
<div class="col">
<h2>Otros datos <img src="https://es.greenpeace.org/wp-content/themes/gp/assets/ico/lock.svg" alt="Seguro" class="lock" /></h2>
</div>
</div>
<div class="row">
<div class="col">
<div class="form-group">
<label for="id_number" class="d-none">DNI o NIE <sup title="Campo obligatório">*</sup></label>
<input type="text" name="id_number" id="id_number" class="form-control" placeholder="DNI o NIE" maxlength="14" required="required" spellcheck="false" />
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="form-group">
<label for="birthday" class="d-none">Fecha de nacimiento <sup title="Campo obligatório">*</sup></label>
<input type="text" name="birthday" id="birthday" class="form-control" placeholder="Fecha de nacimiento dd/mm/aaaa" maxlength="14" required="required" spellcheck="false" />
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="form-group">
<label for="zip" class="d-none">Código postal <sup title="Campo obligatório">*</sup></label>
<input type="text" name="zip" id="zip" required="required" class="form-control" placeholder="Código postal" maxlength="8" spellcheck="false" autocomplete="postal-code" />
</div>
</div>
</div>
<div class="row" id="genderContainer">
<div class="col">
<div class="radio">
<label>
<input type="radio" name="gender" id="genderFemale" value="M"> Mujer
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="gender" id="genderMale" value="V"> Hombre
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="gender" id="genderNR" value="" checked="checked"> No declara
</label>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="form-group">
</div>
</div>
</div>
<div class="row gpMagazineContainer">
<div class="col">
<h2>Revista y otros correos:</h2>
</div>
</div>
<div class="row gpMagazineContainer">
<div class="col">
<p>Deseas recibir la revista y otros correos:</p>
<div class="radio">
<label>
<input type="radio" name="gpMagazine" id="gpMagazinePaper" value="Papel"> En papel
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="gpMagazine" id="gpMagazineOnline" value="Online" checked> Online
</label>
</div>
</div>
</div>
<div class="row">
<div class="col d-none" id="whyAddress">
<p>Con tu dirección podemos también enviarte información de interés como el certificado de desgravaciones, folletos sobre nuestro trabajo, etc...</p>
</div>
</div>
<div class="row gpMagazineContainer">
<div class="col" id="emailNotice">
<p>Te enviaremos un correo cada vez que salga una nueva revista.</p>
</div>
</div>
<div class="d-none" id="fullAddress" aria-hidden="true">
<div class="row">
<div class="col">
<div class="form-group">
<label for="typeVia" class="d-none">Tipo vía</label>
<input type="text" name="typeVia" id="typeVia" class="form-control awesomplete" maxlength="25" spellcheck="false" placeholder="Tipo vía" />
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="form-group">
<label for="address" class="d-none">Dirección <sup title="Campo obligatório">*</sup></label>
<input type="text" name="address" id="address" required="required" class="form-control" maxlength="60" spellcheck="false" autocomplete="street-address" placeholder="Dirección" />
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="form-group">
<label for="city" class="d-none">Localidad <sup title="Campo obligatório">*</sup></label>
<input type="text" name="city" id="city" required="required" class="form-control" maxlength="40" spellcheck="false" autocomplete="address-level2" placeholder="Localidad" />
</div>
</div>
</div>
</div>
<div class="row">
<div class="form_col">
<div>
<button type="submit" class="btn btn-info"> Enviar </button>
</div>
</div><!-- /.grid_step -->
<div class="form_col">
<!-- BEGIN KEY CODE -->
<div class="veryfySSL buttoncontainer" hidden="hidden">
<a href="https://www.hispassl.com/zona_segura_ssl/colabora_greenpeace_es/index.php" style="border:0px" onclick="window.open(this.href, 'child', 'scrollbars,width=600,height=500'); return false" title="Certificado de conexión segura">
<img src="https://es.greenpeace.org/wp-content/themes/gp/assets/ico/zonasegura.png" alt="HispaSSL Zona Segura SSL">
</a>
</div>
<!-- END KEY CODE -->
<div style="font-size: 85%;">Página web segura. No compartiremos tus datos.</div>
</div>
</div><!-- /.row -->
</div><!-- /#step3 -->
</form><!-- /#form_for_regular_giving -->
</div><!-- /#form_container -->
</div><!-- /#rightMaincontainer -->
</div><!-- /row -->
<div class="row">
<div class="horizontal-separator">
<hr />
</div>
</div><!-- /.row-->
<div class="row">
<div class="tips">
<div>
<h3>¿Tienes preguntas?</h3> <p>Si tienes preguntas puedes llamarnos al <a href="tel:+34900535025" target="_blank" data-click="telefono">900 535 025</a>. También puedes enviar un correo a <a href="mailto:[email protected]" target="_blank" data-click="mail_info">[email protected]</a>.</p>
</div>
</div>
<div class="tips">
<div>
<h3>Ahorra en la Renta</h3> <p>Puedes deducirte hasta el 80% de tu donación en tu declaración de la renta. Nos encargamos de facilitar esa información a Hacienda y te enviamos tu certificado fiscal por correo electrónico.</p>
</div>
</div>
<div class="tips">
<div>
<h3>Información legal</h3> <p>Asociación Greenpeace (CIF G28947653), inscrita en el Registro Mercantil de Asociaciones, al Tomo 1, Folio 2307530 y los 6 siguientes, Hoja nº 54070</p>
</div>
</div>
</div><!-- /.row -->
</div><!-- /#maincontainer -->
</div><!-- /#mainbackground -->
<div id="thankyoubackground"><!-- #thankyoubackground -->
<div class="container d-none" id="thankyoucontainer" aria-hidden="true" hidden="hidden">
<div class="row">
<div class="title_and_slogan">
<h1>¡Gracias <span class="userName"></span>! Te damos la bienvenida a Greenpeace</h1>
<p class="lead">Muchas gracias en nombre del planeta, porque acabas de darle una alegría al unirte a Greenpeace ;)</p>
</div>
</div><!-- /row -->
<div class="row">
<div class="leftbox">
<div id="thankyouleft">
<p>El primer pago se hará efectivo en los próximos días. En breve recibirás un correo electrónico con más información sobre tu proceso de alta.</p>
<p>Por favor, confirma tus datos y, <strong>si hay algún error, contáctanos por teléfono a través del número 900 535 025 o contesta al correo electrónico que te acabamos de enviar y lo solucionaremos rápidamente 😀</strong></p>
<script id="DatosDelFormulario_template" type="x-tmpl-mustache">
<li><span>Nombre:</span> {{post.nombre}}</li>
<li><span>Apellidos:</span> {{post.apellido1}}</li>
<li><span>DNI o NIE:</span> {{post.dni}}</li>
<li><span>Email:</span> {{post.correo}}</li>
<li><span>Código postal:</span> {{post.cpost}}</li>
<li><span>Teléfono:</span> {{calculated_data.fijo}} {{calculated_data.movil}}</li>
<li><span>Importe:</span> {{post.importe}}€</li>
{{#post.periodicidad}}<li><span>Periodicidad:</span> {{post.periodicidad_ext}}</li>{{/post.periodicidad}}
{{#post.titularCuenta}}<li><span>Titular de cuenta:</span> {{post.titularCuenta}}</li>{{/post.titularCuenta}}
{{#post.fechanac}}<li><span>Fecha de nacimiento:</span> {{post.fechanac}}</li>{{/post.fechanac}}
{{#post.sexo}}<li><span>Género:</span> {{post.sexo}}</li>{{/post.sexo}}
{{#post.dir}}<li><span>Dirección:</span> {{post.tipovia}} {{post.dir}} {{post.pisopuerta}} {{post.complemento}}</li>{{/post.dir}}
{{#post.localidad}}<li><span>Localidad:</span> {{post.localidad}}</li>{{/post.localidad}}
{{#post.revista}}<li><span>Quiero recibir la revista:</span> {{post.revista}}</li>{{/post.revista}}
</script>
<ul class="square" id="DatosDelFormulario">
</ul>
</div><!-- /#thankyouleft -->
</div><!-- /.thankyouleftCcontainer-->
<div class="rightbox">
<div id="thankyouright">
<!-- Thank you responsive picture -->
<div class="picture-container">
<picture>
<source srcset="https://es.greenpeace.org/es/wp-content/uploads/sites/3/2022/05/GP034KS-737-1200x0-c-default.webp" media="(min-width: 1200px)" type="image/webp">
<source srcset="https://es.greenpeace.org/es/wp-content/uploads/sites/3/2022/05/GP034KS-737-1200x0-c-default.jpg" media="(min-width: 1200px)" type="image/jpeg">
<source srcset="https://es.greenpeace.org/es/wp-content/uploads/sites/3/2022/05/GP034KS-737-570x0-c-default.webp" media="(min-width: 992px)" type="image/webp">
<source srcset="https://es.greenpeace.org/es/wp-content/uploads/sites/3/2022/05/GP034KS-737-570x0-c-default.jpg" media="(min-width: 992px)" type="image/jpeg">
<source srcset="https://es.greenpeace.org/es/wp-content/uploads/sites/3/2022/05/GP034KS-737-450x0-c-default.webp" media="(min-width: 768px)" type="image/webp">
<source srcset="https://es.greenpeace.org/es/wp-content/uploads/sites/3/2022/05/GP034KS-737-450x0-c-default.jpg" media="(min-width: 768px)" type="image/jpeg">
<source srcset="https://es.greenpeace.org/es/wp-content/uploads/sites/3/2022/05/GP034KS-737-737x0-c-default.webp" media="(min-width: 600px)" type="image/webp">
<source srcset="https://es.greenpeace.org/es/wp-content/uploads/sites/3/2022/05/GP034KS-737-737x0-c-default.jpg" media="(min-width: 600px)" type="image/jpeg">
<source srcset="https://es.greenpeace.org/es/wp-content/uploads/sites/3/2022/05/GP034KS-737-570x0-c-default.webp" media="(min-width: 481px)" type="image/webp">
<source srcset="https://es.greenpeace.org/es/wp-content/uploads/sites/3/2022/05/GP034KS-737-570x0-c-default.jpg" media="(min-width: 481px)" type="image/jpeg">
<img class="img-fluid one-image" srcset="https://es.greenpeace.org/es/wp-content/uploads/sites/3/2022/05/GP034KS-737-450x0-c-default.jpg" alt="Dos orangutanes jóvenes abrazándose" loading="lazy">
</picture>
</div>
<!-- /Thank you responsive picture -->
<p><small>© <span class="copyright">Markus Mauthe / Greenpeace</span></small></p>
</div>
</div><!-- /.thankyourightContainer-->
</div><!-- /.row -->
<div class="row">
<div class="horizontal-separator">
<hr />
</div>
</div><!-- /.row-->
<div class="row">
<div class="tips">
<div>
<h3>¿Tienes preguntas?</h3> <p>Si tienes preguntas puedes llamarnos al <a href="tel:+34900535025" target="_blank" data-click="telefono">900 535 025</a>. También puedes enviar un correo a <a href="mailto:[email protected]" target="_blank" data-click="mail_info">[email protected]</a>.</p>
</div>
</div>
<div class="tips">
<div>
<h3>Ahorra en la Renta</h3> <p>Puedes deducirte hasta el 80% de tu donación en tu declaración de la renta. Nos encargamos de facilitar esa información a Hacienda y te enviamos tu certificado fiscal por correo electrónico.</p>
</div>
</div>
<div class="tips">
<div>
<h3>Información legal</h3> <p>Asociación Greenpeace (CIF G28947653), inscrita en el Registro Mercantil de Asociaciones, al Tomo 1, Folio 2307530 y los 6 siguientes, Hoja nº 54070</p>
</div>
</div>
</div><!-- /.row -->
</div><!-- /#thankyoucontainer -->
</div><!-- #thankyoubackground -->
<div id="thankyouerrorbackground"><!-- #thankyouerrorbackground -->
<div class="container d-none" id="thankyouerrorcontainer" aria-hidden="true" hidden="hidden">
<div class="row">
<div class="title_and_slogan">
<h1>¡Hay un error!</h1>
</div>
</div><!-- /row -->
<div class="row">
<div class="leftbox">
<div id="thankyouerrorleft">
<p class="lead">El servidor de este site ha encontrado uno o más errores en los datos de tu formulario. Por favor envia un correo a <a href="mailto:[email protected]" target="_blank" data-click="mail_info_p_error">[email protected]</a> para que te podamos ayudar y resolver los errores del servidor.</p>
</div>
</div>
<div class="rightbox">
<div id="thankyouerrorright">
<!-- Thank you error responsive picture -->
<div class="picture-container">
<picture>
<source srcset="/assets/images/GP02TY7-737.jpg" media="(min-width: 1200px)">
<source srcset="/assets/images/GP02TY7-570.jpg" media="(min-width: 992px)">
<source srcset="/assets/images/GP02TY7-450.jpg" media="(min-width: 768px)">
<source srcset="/assets/images/GP02TY7-737.jpg" media="(min-width: 600px)">
<source srcset="/assets/images/GP02TY7-570.jpg" media="(min-width: 481px)">
<img class="img-fluid one-image" srcset="/assets/images/GP02TY7-450.jpg" alt="Fotografía de activistas bloqueando el portaviones USS Dwight D. Eisenhower" loading="lazy">
</picture>
</div>
<!-- /Thank you responsive picture -->
<p><small>© <span class="copyright">Greenpeace / Miguel Angelo Gremo</span></small></p>
</div>
</div>
</div><!-- /.row -->
<div class="row">
<div class="horizontal-separator">
<hr />
</div>
</div><!-- /.row-->
<div class="row">
<div class="tips">
<div>
<h3>¿Tienes preguntas?</h3> <p>Si tienes preguntas puedes llamarnos al <a href="tel:+34900535025" target="_blank" data-click="telefono">900 535 025</a>. También puedes enviar un correo a <a href="mailto:[email protected]" target="_blank" data-click="mail_info">[email protected]</a>.</p>
</div>
</div>
<div class="tips">
<div>
<h3>Ahorra en la Renta</h3> <p>Puedes deducirte hasta el 80% de tu donación en tu declaración de la renta. Nos encargamos de facilitar esa información a Hacienda y te enviamos tu certificado fiscal por correo electrónico.</p>
</div>
</div>
<div class="tips">
<div>
<h3>Información legal</h3> <p>Asociación Greenpeace (CIF G28947653), inscrita en el Registro Mercantil de Asociaciones, al Tomo 1, Folio 2307530 y los 6 siguientes, Hoja nº 54070</p>
</div>
</div>
</div><!-- /.row -->
</div><!-- /#thankyouerrorcontainer -->
</div><!-- /#thankyouerrorbackground -->
<!-- FOOTER AREA -->
<div id="footerContainer">
<div class="container">
<div class="row">
<div id="footer">
<footer>
© 2024 <a target="_blank" href="https://es.greenpeace.org/es">Greenpeace</a> • <a id="privacy_policy_link_footer" target="_blank" href="https://es.greenpeace.org/es/politica-de-privacidad-y-cookies/">Política de privacidad</a>
</footer>
</div>
</div>
</div>
</div>
<!-- /FOOTER AREA -->
<!-- Modal cookies prompt -->
<div class="modal fade" id="cookiePromptCenter" tabindex="-1" role="dialog" aria-labelledby="cookiePromptCenterLabel" aria-hidden="true" data-keyboard="false" data-focus="true" data-nosnippet="true">
<div class="modal-dialog" role="document" id="cookiePromptCenterDialog1" style="display: none;">
<div class="modal-content">
<div class="modal-body">
<h2 class="modal-title" id="cookiePromptCenterLabel">Tu privacidad nos importa</h2>
<p>En Greenpeace utilizamos cookies propias y de terceros para mejorar y personalizar tu experiencia en nuestra web, así como con fines analíticos, para ofrecer funciones de redes sociales y mostrarte publicidad personalizada en base a un perfil elaborado a partir de tus hábitos de navegación. Para más información puedes consultar nuestra política de cookies <a target="_blank" href="https://es.greenpeace.org/es/politica-de-privacidad-y-cookies/?tracking=deny_all#cookies" data-cookieResponse="check_policy">AQUÍ</a>.</p>
<p>Puedes aceptar todas las cookies mediante el botón “Aceptar” o puedes aceptarlas de forma concreta, modificar su selección o rechazar su uso pulsando en “Configuración de Privacidad”.</p>
<div class="text-center" id="cookiePromptCenterButtons">
<button type="button" class="btn btn-primary btn-lg" data-cookieResponse="accept"><strong>Aceptar</strong></button>
<button type="button" class="btn btn-secondary btn-lg" data-cookieResponse="config">Configuración de privacidad</button>
</div>
</div>
</div>
</div>
</div>
<!-- Modal privacy settings -->
<div class="modal fade" id="cookiePrivacySettings" tabindex="-1" role="dialog" aria-labelledby="cookiePrivacySettingsLabel" aria-hidden="true" data-keyboard="false" data-focus="true">
<div class="modal-dialog" role="document" id="cookiePromptSettings" style="display: none;">
<div class="modal-content">
<div class="modal-body">
<h2 class="modal-title" id="cookiePrivacySettingsLabel">Configuración de privacidad</h2>
<p>Este sitio web utiliza cookies para obtener datos de navegación y de uso de la página por parte de los usuarios y usuarias. Puedes ver más información en nuestra <a href="https://es.greenpeace.org/es/politica-de-privacidad-y-cookies/?tracking=deny_all#cookies" target="_blank" data-cookieResponse="check_policy">Política de Cookies</a>. A continuación puedes leer más sobre ellas y elegir cuáles aceptas y cuáles rechazas mientras estás en nuestra web.</p>
<div class="text-center">
<button type="button" class="btn btn-primary btn-sm" data-dismiss="modal" data-cookieResponse="accept_all"><strong>Aceptar todas</strong></button>
<button type="button" class="btn btn-secondary btn-sm" data-dismiss="modal" data-cookieResponse="deny_all">Rechazar todas</button>
</div>
<form id="cookiePrivacySettingsForm">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="cookiesAnalitics" />
<label class="form-check-label" for="cookiesAnalitics">
Cookies analíticas
</label>
<p>Permiten analizar el comportamiento de los usuarios/as en nuestra página de manera anónima</p>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="cookiesSegmentation" />
<label class="form-check-label" for="cookiesSegmentation">
Cookies de segmentación
</label>
<p>Permiten a nuestra web ofrecer contenido optimizado y personalizado</p>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="cookiesAdvertisement" />
<label class="form-check-label" for="cookiesAdvertisement">
Cookies publicitarias
</label>
<p>Permiten analizar la eficacia de la publicidad online y mostrar anuncios relevantes en otros sitios</p>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="cookiesMandatory" checked disabled />
<label class="form-check-label">
Cookies esenciales
</label>
<p>Permiten a la página funcionar correctamente y recordar las preferencias de cookies de los usuarios y usuarias</p>
</div>
<div class="text-center" id="cookiePrivacySettingsOK">
<button type="button" class="btn btn-primary btn-lg" data-dismiss="modal" data-cookieResponse="OK"><strong>OK</strong></button>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- SCRIPTS -->
<script>
var campaign_name = "XXPWBGPGP";
var adwords_normal_conversion_id = 1053230267;
var adwords_normal_conversion_label = "aAY9CNzng84BELuJnPYD";