: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);
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
body { background-color: var(--light); margin: 0; padding: 0; }
main { background-color: var(--light); min-height: 100vh; }
.hero-section {
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/sales.png') center/cover;
padding: 100px 0 60px;
text-align: center;
color: var(--white);
position: relative;
overflow: hidden;
min-height: 280px;
display: flex;
align-items: center;
}
.hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.1); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; padding: 0 20px; }
.hero-icon {
width: 80px; height: 80px;
background: rgba(255,255,255,0.15);
-webkit-backdrop-filter: blur(20px);
backdrop-filter: blur(20px);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
margin: 0 auto 20px;
font-size: 40px;
color: var(--white);
border: 3px solid rgba(255,255,255,0.25);
}
.hero-title { font-size: 36px; font-weight: 800; margin-bottom: 15px; color: var(--white); text-shadow: 0 3px 10px rgba(0,0,0,0.2); }
.hero-subtitle { font-size: 16px; opacity: 0.95; max-width: 700px; margin: 0 auto; line-height: 1.6; }
.main-content { max-width: 1200px; margin: -40px auto 0; padding: 0 20px 30px; position: relative; z-index: 10; }
.offers-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: 600px; margin: 0 auto; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.offer-card {
background: linear-gradient(135deg, var(--light), var(--white));
border-radius: 16px;
overflow: hidden;
box-shadow: var(--shadow-sm);
border: 1px solid var(--border-soft);
}
.card-header { padding: 20px 20px 15px; }
.card-badge {
display: inline-flex; align-items: center; gap: 6px;
padding: 6px 14px;
background: rgba(23,163,152,0.1);
color: var(--primary);
border-radius: 50px;
font-size: 12px;
font-weight: 600;
margin-bottom: 15px;
}
.card-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);
}
.card-title { font-size: 18px; color: var(--dark); margin-bottom: 10px; font-weight: 700; }
.card-content { padding: 0 20px 20px; }
.card-description { color: var(--medium); font-size: 14px; line-height: 1.7; margin-bottom: 10px; }
.card-description:last-child { margin-bottom: 0; }
.partner-section { background: linear-gradient(135deg, var(--white), var(--light)); }
.partner-section .section-header { margin-bottom: 20px; }
.partner-content { max-width: 550px; margin: 0 auto; }
.partner-description { color: var(--medium); font-size: 14px; line-height: 1.7; text-align: center; margin-bottom: 25px; }
.partnership-form { background: var(--white); border-radius: 16px; padding: 25px; border: 1px solid var(--border-soft); box-shadow: var(--shadow-sm); }
.form-title { font-size: 17px; color: var(--primary); margin-bottom: 20px; font-weight: 600; text-align: center; }
.form-grid { display: grid; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { position: relative; }
.form-control {
width: 100%;
padding: 12px 16px;
font-size: 14px;
border: 1px solid var(--border-soft);
border-radius: 10px;
background: var(--light);
color: var(--dark);
transition: var(--transition);
font-family: inherit;
box-sizing: border-box;
}
.form-control:focus { outline: none; border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 3px rgba(23,163,152,0.1); }
.form-control::placeholder { color: var(--medium); }
textarea.form-control { resize: vertical; min-height: 80px; }
.btn {
background: linear-gradient(135deg, var(--primary), var(--secondary-light));
color: var(--white);
padding: 14px 28px;
border: none;
border-radius: 50px;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
display: inline-flex; align-items: center; justify-content: center; gap: 10px;
box-shadow: var(--shadow-md);
text-decoration: none;
}
.form-grid .btn { width: 100%; padding: 12px 24px; font-size: 14px; }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.form-security { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 8px; color: var(--medium); font-size: 12px; }
.success-message {
display: none;
background: linear-gradient(135deg, rgba(32,178,170,0.1), rgba(23,163,152,0.05));
border-left: 4px solid var(--secondary);
border-radius: 8px;
padding: 12px 15px;
margin-top: 12px;
color: var(--primary);
font-weight: 500;
font-size: 14px;
}
.success-message i { margin-right: 8px; color: var(--secondary); }
.action-buttons { display: flex; gap: 20px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.action-buttons .btn-outline { width: auto; }
@media (max-width: 768px) {
.hero-section { padding: 90px 0 50px; min-height: 220px; }
.hero-title { font-size: 28px; }
.hero-subtitle { font-size: 14px; }
.hero-icon { width: 60px; height: 60px; font-size: 30px; }
.cards-grid { grid-template-columns: 1fr; }
.section-title { font-size: 22px; }
.offers-section { padding: 25px 20px; }
.form-row { grid-template-columns: 1fr; }
.action-buttons { flex-direction: column; align-items: center; }
.action-buttons .btn-outline { width: 100%; max-width: 300px; }
}
