File size: 2,753 Bytes
9462d9e |
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 |
/* Reset CSS */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background-color: #d6e4d9; /* Fondo suave verde selva */
color: #3e4e3b; /* Tono verde oscuro */
text-align: center;
line-height: 1.6;
}
/* Header */
header {
background: #006400; /* Verde bosque profundo */
color: white;
padding: 15px 0;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
header .logo-container {
display: inline-block;
}
header .logo {
width: 150px;
height: auto;
}
header nav ul {
list-style: none;
display: flex;
justify-content: center;
padding: 0;
}
header nav ul li {
margin: 0 20px;
}
header nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;
text-transform: uppercase;
}
header nav ul li a:hover {
text-decoration: underline;
}
/* Hero Section */
.hero {
background: #8bba76; /* Verde más suave, que evoca la naturaleza */
padding: 60px 20px;
color: #fff;
}
.hero h1 {
font-size: 2.5em;
margin-bottom: 10px;
}
.hero p {
font-size: 1.2em;
margin-bottom: 20px;
}
.cta-button {
background-color: #228b22; /* Verde hoja */
color: white;
padding: 12px 25px;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.cta-button:hover {
background-color: #1c7a1c; /* Verde más oscuro */
}
/* App Embed Section */
.app-embed {
margin: 40px 0;
padding: 20px;
background-color: #fff;
border-radius: 8px;
}
.app-embed h2 {
margin-bottom: 20px;
font-size: 1.8em;
color: #333;
}
.app-frame {
width: 100%;
height: 600px;
border: none;
border-radius: 8px;
}
/* Alertas */
.alertas {
background-color: #f1f8f0; /* Fondo suave verde claro */
padding: 20px;
margin: 40px 0;
border-radius: 8px;
}
.alertas h2 {
margin-bottom: 20px;
font-size: 1.8em;
color: #333;
}
.alert-container {
max-width: 800px;
margin: auto;
text-align: left;
}
.alerta {
background-color: #ffcc00; /* Amarillo alerta */
padding: 15px;
margin-bottom: 10px;
border-radius: 5px;
}
.alerta .alerta-titulo {
font-weight: bold;
}
.alerta .alerta-fecha {
font-size: 0.9em;
color: #555;
}
/* Footer */
footer {
background: #333;
color: white;
padding: 20px 0;
}
footer p {
margin-bottom: 10px;
}
footer .social-links {
list-style: none;
display: flex;
justify-content: center;
}
footer .social-links li {
margin: 0 15px;
}
footer .social-links li a {
color: white;
text-decoration: none;
font-size: 1.2em;
}
footer .social-links li a:hover {
color: #2a9d8f;
}
|