:root {
--primary: #17a398;
--primary-dark: #148f85;
--primary-light: #1ab5a9;
--secondary: #20b2aa;
--secondary-light: #40c9c0;
--accent: #40c9c0;
--accent-light: #5dd4cc;
--gold: #ffd700;
--success: #2ecc71;
--warning: #f39c12;
--danger: #e74c3c;
--dark: #1a1a2e;
--medium: #666666;
--light: #f0f7f7;
--white: #ffffff;
--border-soft: #d0e8e8;
--shadow-sm: 0 2px 4px rgba(32,178,170,0.08);
--shadow-md: 0 4px 12px rgba(32,178,170,0.12);
--shadow-lg: 0 8px 24px rgba(32,178,170,0.16);
--shadow-xl: 0 16px 48px rgba(32,178,170,0.20);
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
--calendar-selected: #20b2aa;
--ocean-primary: #4a9b9b;
--ocean-primary-light: #5eb3b3;
--ocean-primary-dark: #3a7f7f;
--ocean-accent: #7dd3d3;
--ocean-deep: #2a5f5f;
--ocean-text: #f0fffe;
--ocean-shadow: rgba(42, 95, 95, 0.15);
}
body {
font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background: var(--light);
color: var(--dark);
line-height: 1.6;
}
a, a:hover, a:focus, a:active, a:visited { text-decoration: none !important; }
.hero {
background: linear-gradient(135deg, rgba(23,163,152,0.95) 0%, rgba(32,178,170,0.9) 50%, rgba(64,201,192,0.85) 100%),
url('/assets/images/backgroundas1.jpeg') center/cover no-repeat;
padding: 110px 0 60px;
text-align: center;
color: var(--white);
position: relative;
}
.hero-content { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.hero h1 { font-size: 38px; font-weight: 800; margin-bottom: 15px; color: var(--white); text-shadow: 0 3px 10px rgba(0,0,0,0.2); }
.hero p { font-size: 16px; opacity: 0.95; max-width: 600px; margin: 0 auto; }
.main-content { max-width: 1200px; margin: -40px auto 0; padding: 0 20px 30px; position: relative; z-index: 10; }
.about-section {
background: var(--white);
border-radius: 20px;
padding: 30px;
box-shadow: var(--shadow-md);
margin-bottom: 20px;
border: 1px solid var(--border-soft);
}
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; align-items: center; margin-bottom: 30px; }
.about-text h2 { font-size: 26px; color: var(--primary); font-weight: 700; margin-bottom: 15px; }
.about-text p { color: var(--medium); font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.about-image {
position: relative;
border-radius: 16px;
overflow: hidden;
height: 320px;
box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; object-position: right center; display: block; }
.about-image::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(23,163,152,0.7), rgba(64,201,192,0.5)); z-index: 1; }
.about-badge {
position: absolute;
top: 15px; right: 15px;
background: rgba(255,255,255,0.95);
color: var(--primary);
padding: 8px 18px;
border-radius: 50px;
font-weight: 600;
font-size: 13px;
box-shadow: var(--shadow-md);
z-index: 2;
}
.features-section, .services-section {
background: var(--white);
border-radius: 20px;
padding: 30px;
box-shadow: var(--shadow-md);
margin-bottom: 20px;
border: 1px solid var(--border-soft);
}
.section-header { text-align: center; margin-bottom: 30px; }
.section-icon {
width: 60px; height: 60px;
background: linear-gradient(135deg, rgba(23,163,152,0.1), rgba(64,201,192,0.05));
border-radius: 16px;
display: flex; align-items: center; justify-content: center;
color: var(--primary);
font-size: 28px;
margin: 0 auto 15px;
}
.section-title { font-size: 26px; color: var(--primary); font-weight: 700; margin-bottom: 10px; }
.section-subtitle { color: var(--medium); font-size: 15px; max-width: 550px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.feature-card {
background: rgba(23,163,152,0.03);
border-radius: 12px;
padding: 25px;
border: 1px solid var(--border-soft);
}
.feature-icon {
width: 50px; height: 50px;
background: linear-gradient(135deg, var(--primary), var(--secondary-light));
border-radius: 12px;
display: flex; align-items: center; justify-content: center;
margin-bottom: 15px;
font-size: 24px;
color: var(--white);
}
.feature-card h3 { font-size: 18px; color: var(--dark); margin-bottom: 10px; font-weight: 600; }
.feature-card p { color: var(--medium); font-size: 13px; line-height: 1.6; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin-top: 40px; }
.service-card {
background: rgba(23,163,152,0.03);
border-radius: 16px;
padding: 30px;
text-align: center;
border: 1px solid var(--border-soft);
}
.service-icon {
width: 80px; height: 80px;
background: rgba(23,163,152,0.1);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
margin: 0 auto 20px;
font-size: 36px;
color: var(--primary);
}
.service-card h4 { font-size: 20px; color: var(--dark); margin-bottom: 12px; font-weight: 600; }
.service-card p { color: var(--medium); font-size: 14px; line-height: 1.6; }
.contact-section { background: var(--white); border-radius: 24px; padding: 40px; box-shadow: var(--shadow-md); margin-bottom: 30px; border: 1px solid var(--border-soft); }
.contact-grid { display: flex; justify-content: center; margin-top: 40px; }
.contact-info { max-width: 600px; text-align: center; }
.contact-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; text-align: left; }
.contact-icon {
width: 50px; height: 50px;
background: linear-gradient(135deg, var(--primary), var(--secondary-light));
border-radius: 12px;
display: flex; align-items: center; justify-content: center;
color: var(--white);
font-size: 22px;
flex-shrink: 0;
}
.contact-item h4 { font-size: 18px; color: var(--dark); margin-bottom: 8px; font-weight: 600; }
.contact-item p { color: var(--medium); font-size: 15px; }
.social-links { display: flex; gap: 15px; margin-top: 40px; justify-content: center; }
.social-link {
width: 45px; height: 45px;
background: rgba(23,163,152,0.1);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
color: var(--primary);
font-size: 20px;
}
.privacy-section {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
border-radius: 24px;
padding: 60px;
text-align: center;
color: var(--white);
}
.privacy-icon {
width: 100px; height: 100px;
background: rgba(255,255,255,0.15);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
margin: 0 auto 30px;
font-size: 50px;
border: 2px solid rgba(255,255,255,0.25);
}
.privacy-section h2 { font-size: 36px; margin-bottom: 20px; color: var(--white); }
.privacy-section p { font-size: 18px; max-width: 700px; margin: 0 auto 30px; opacity: 0.95; color: var(--white); line-height: 1.8; }
.btn-privacy {
background: rgba(255,255,255,0.2);
border: 2px solid rgba(255,255,255,0.3);
color: var(--white);
padding: 14px 32px;
border-radius: 50px;
font-weight: 600;
font-size: 15px;
display: inline-flex; align-items: center; gap: 10px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.action-buttons { display: flex; gap: 20px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.btn {
background: linear-gradient(135deg, var(--primary), var(--secondary-light));
color: var(--white);
padding: 14px 32px;
border-radius: 50px;
font-weight: 600;
font-size: 15px;
display: inline-flex; align-items: center; gap: 10px;
text-transform: uppercase;
letter-spacing: 0.5px;
border: none;
cursor: pointer;
box-shadow: var(--shadow-md);
transition: var(--transition);
text-decoration: none;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.partners-section {
background: var(--white);
border-radius: 20px;
padding: 30px;
box-shadow: var(--shadow-md);
margin-bottom: 20px;
border: 1px solid var(--border-soft);
}
.partners-text {
max-width: 800px;
margin: 0 auto;
text-align: center;
}
.partners-text p {
color: var(--medium);
font-size: 14px;
line-height: 1.7;
margin-bottom: 12px;
}
.partners-text p:last-child {
margin-bottom: 0;
}
@media (max-width: 768px) {
.hero { padding: 120px 0 60px; }
.hero h1 { font-size: 32px; }
.hero p { font-size: 16px; }
.about-content { grid-template-columns: 1fr; gap: 30px; }
.about-image { height: 300px; }
.features-grid { grid-template-columns: 1fr; }
.services-grid { grid-template-columns: 1fr; }
.contact-grid { flex-direction: column; }
.section-title { font-size: 24px; }
.privacy-section { padding: 40px 30px; }
.action-buttons { flex-direction: column; align-items: center; }
.btn, .btn-outline { width: 100%; justify-content: center; }
.partners-section { padding: 30px 20px; }
.partners-text p { font-size: 15px; }
}
