:root {
--primary-color: #5c9ead;
--primary-dark: #4a7d8d;
--text-dark: #2d3748;
--text-light: #4a5568;
--bg-light: #f7f8fa;
--bg-white: #ffffff;
--border-color: #e2e8f0;
--shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
--shadow-md: 0 4px 16px rgba(0,0,0,0.1);
--border-radius: 12px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
color: var(--text-dark);
line-height: 1.6;
overflow-x: hidden;
}
.header-fixed {
position: fixed;
top: 0;
left: 0;
right: 0;
background: var(--bg-white);
box-shadow: var(--shadow-sm);
z-index: 1000;
padding: 0.75rem 0;
}
.navbar {
padding: 0;
}
.navbar-brand {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
text-decoration: none;
}
.navbar-brand:hover {
color: var(--primary-dark);
text-decoration: none;
}
.nav-link {
color: var(--text-dark);
font-weight: 500;
padding: 0.5rem 1rem;
transition: color 0.3s;
}
.nav-link:hover {
color: var(--primary-color);
}
.btn-cta {
background: var(--primary-color);
color: var(--bg-white);
padding: 0.5rem 1.5rem;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s;
display: inline-block;
}
.btn-cta:hover {
background: var(--primary-dark);
color: var(--bg-white);
text-decoration: none;
transform: translateY(-2px);
}
.navbar-toggler {
border: 2px solid var(--primary-color);
padding: 0.5rem;
}
.navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%235c9ead' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.hero-section {
min-height: 100vh;
display: flex;
align-items: center;
padding-top: 80px;
background: linear-gradient(135deg, #f7f8fa 0%, #e8f0f2 100%);
position: relative;
overflow: hidden;
}
.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 20% 50%, rgba(92, 158, 173, 0.1) 0%, transparent 50%);
pointer-events: none;
}
.hero-title {
font-size: 3rem;
font-weight: 800;
color: var(--text-dark);
margin-bottom: 1.5rem;
line-height: 1.2;
}
.hero-subtitle {
font-size: 1.25rem;
color: var(--text-light);
margin-bottom: 2rem;
line-height: 1.6;
}
.btn-primary-hero {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
color: var(--bg-white);
padding: 1rem 2.5rem;
border-radius: 10px;
text-decoration: none;
font-weight: 700;
font-size: 1.1rem;
display: inline-block;
transition: all 0.3s;
box-shadow: var(--shadow-md);
}
.btn-primary-hero:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(92, 158, 173, 0.3);
color: var(--bg-white);
text-decoration: none;
}
.hero-image {
border-radius: var(--border-radius);
box-shadow: var(--shadow-md);
}
.content-section {
padding: 5rem 0;
}
.bg-light {
background-color: var(--bg-light);
}
.section-title {
font-size: 2.5rem;
font-weight: 700;
color: var(--text-dark);
margin-bottom: 1.5rem;
}
.section-intro {
font-size: 1.2rem;
color: var(--text-light);
max-width: 800px;
margin: 0 auto;
}
.section-text {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 1.25rem;
line-height: 1.7;
}
.section-image {
border-radius: var(--border-radius);
box-shadow: var(--shadow-sm);
margin-bottom: 2rem;
}
.card-content {
background: var(--bg-white);
border-radius: var(--border-radius);
padding: 2rem;
box-shadow: var(--shadow-sm);
transition: all 0.3s;
height: 100%;
}
.card-content:hover {
box-shadow: var(--shadow-md);
transform: translateY(-5px);
}
.card-image {
border-radius: 8px;
margin-bottom: 1.5rem;
}
.card-title {
font-size: 1.5rem;
font-weight: 600;
color: var(--text-dark);
margin-bottom: 1rem;
}
.card-text {
color: var(--text-light);
margin-bottom: 1rem;
line-height: 1.7;
}
.limit-card {
background: var(--bg-white);
border-radius: var(--border-radius);
padding: 2rem;
box-shadow: var(--shadow-sm);
height: 100%;
border-top: 4px solid var(--primary-color);
}
.limit-title {
font-size: 1.4rem;
font-weight: 600;
color: var(--text-dark);
margin-bottom: 1rem;
}
.limit-text {
color: var(--text-light);
line-height: 1.7;
}
.faq-container {
max-width: 900px;
margin: 0 auto;
}
.faq-item {
background: var(--bg-white);
border-radius: var(--border-radius);
padding: 2rem;
margin-bottom: 1.5rem;
box-shadow: var(--shadow-sm);
transition: all 0.3s;
}
.faq-item:hover {
box-shadow: var(--shadow-md);
}
.faq-question {
font-size: 1.3rem;
font-weight: 600;
color: var(--text-dark);
margin-bottom: 0.75rem;
}
.faq-answer {
font-size: 1.05rem;
color: var(--text-light);
line-height: 1.7;
margin: 0;
}
.contact-section {
background: var(--bg-light);
}
.contact-card {
background: var(--bg-white);
border-radius: var(--border-radius);
padding: 3rem;
box-shadow: var(--shadow-md);
}
.contact-intro {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 2rem;
}
.contact-info {
background: var(--bg-light);
border-radius: 8px;
padding: 1.5rem;
margin-bottom: 2rem;
text-align: center;
}
.contact-info p {
margin-bottom: 0.5rem;
color: var(--text-dark);
}
.contact-form {
max-width: 600px;
margin: 0 auto;
}
.form-group label {
font-weight: 600;
color: var(--text-dark);
margin-bottom: 0.5rem;
}
.form-control {
border-radius: 8px;
border: 2px solid var(--border-color);
padding: 0.75rem 1rem;
font-size: 1rem;
transition: all 0.3s;
}
.form-control:focus {
border-color: var(--primary-color);
box-shadow: 0 0 0 3px rgba(92, 158, 173, 0.1);
}
.form-disclaimer {
background: #fef9e7;
border-left: 4px solid #f39c12;
padding: 1rem;
margin: 1.5rem 0;
border-radius: 8px;
}
.form-disclaimer p {
margin: 0;
color: var(--text-dark);
font-size: 0.95rem;
}
.btn-submit {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
color: var(--bg-white);
border: none;
padding: 1rem 3rem;
border-radius: 10px;
font-weight: 700;
font-size: 1.1rem;
cursor: pointer;
transition: all 0.3s;
width: 100%;
box-shadow: var(--shadow-sm);
}
.btn-submit:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}
.footer {
background: var(--text-dark);
color: var(--bg-white);
padding: 3rem 0 1rem;
}
.footer h4, .footer h5 {
color: var(--bg-white);
margin-bottom: 1rem;
}
.footer p {
color: rgba(255,255,255,0.8);
margin-bottom: 0.5rem;
}
.footer-contact {
font-size: 0.95rem;
}
.footer-keywords {
font-size: 0.9rem;
line-height: 1.8;
}
.footer-links {
list-style: none;
padding: 0;
}
.footer-links li {
margin-bottom: 0.5rem;
}
.footer-links a {
color: rgba(255,255,255,0.8);
text-decoration: none;
transition: color 0.3s;
}
.footer-links a:hover {
color: var(--primary-color);
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
margin-top: 2rem;
border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p {
margin: 0;
font-size: 0.9rem;
}
.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--text-dark);
color: var(--bg-white);
padding: 1.5rem 0;
box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
z-index: 2000;
display: none;
}
.cookie-banner.show {
display: block;
}
.cookie-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
.cookie-content p {
margin: 0;
flex: 1;
min-width: 300px;
}
.cookie-content a {
color: var(--primary-color);
text-decoration: underline;
}
.cookie-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.btn-cookie {
padding: 0.6rem 1.5rem;
border: none;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
}
.btn-accept {
background: var(--primary-color);
color: var(--bg-white);
}
.btn-accept:hover {
background: var(--primary-dark);
}
.btn-reject {
background: var(--bg-white);
color: var(--text-dark);
}
.btn-reject:hover {
background: var(--bg-light);
}
.btn-settings {
background: transparent;
color: var(--bg-white);
border: 2px solid var(--bg-white);
}
.btn-settings:hover {
background: rgba(255,255,255,0.1);
}
@media (max-width: 991px) {
.hero-title {
font-size: 2.5rem;
}
.hero-subtitle {
font-size: 1.1rem;
}
.section-title {
font-size: 2rem;
}
.navbar-collapse {
background: var(--bg-white);
padding: 1rem;
margin-top: 1rem;
border-radius: 8px;
box-shadow: var(--shadow-sm);
}
}
@media (max-width: 767px) {
.hero-title {
font-size: 2rem;
}
.hero-section {
padding-top: 100px;
min-height: auto;
padding-bottom: 3rem;
}
.content-section {
padding: 3rem 0;
}
.cookie-content {
flex-direction: column;
text-align: center;
}
.cookie-buttons {
width: 100%;
justify-content: center;
}
.contact-card {
padding: 2rem 1.5rem;
}
}
