/* atlas-unique.css — уникальная премиальная тема для Atlas Inversiones */
:root {
  --color-bg: #0a2239;
  --color-bg-alt: #1e3a5c;
  --color-glass: rgba(255,255,255,0.18);
  --color-glass-strong: rgba(255,255,255,0.32);
  --color-accent: #00b4d8;
  --color-accent2: #ff6f61;
  --color-silver: #e0e6ed;
  --color-white: #fff;
  --color-dark: #0a2239;
  --color-gradient: linear-gradient(135deg, #00b4d8 0%, #1e3a5c 100%);
  --color-gradient2: linear-gradient(135deg, #ff6f61 0%, #e0e6ed 100%);
  --shadow-main: 0 8px 32px 0 rgba(10,34,57,0.18);
  --shadow-glass: 0 4px 24px 0 rgba(0,180,216,0.12);
  --radius-main: 2.2rem;
  --radius-block: 1.2rem;
  --transition-main: 0.5s cubic-bezier(.4,2,.3,1);
}

body {
  background: var(--color-bg);
  color: var(--color-silver);
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-image: url('../images/dots-bg.svg'), var(--color-gradient);
  background-size: cover;
  background-repeat: no-repeat;
  transition: background 1s;
}

/* Хедер */
.header-unique {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--color-glass);
  box-shadow: var(--shadow-main);
  backdrop-filter: blur(16px);
  border-bottom: 1.5px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 2.5vw;
  min-height: 70px;
  animation: fadeInDown 1s;
}
.header-unique .logo-block {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 1.5rem; font-weight: 700; color: var(--color-accent);
  text-decoration: none;
}
.header-unique .logo-img {
  height: 44px; width: 44px; border-radius: 50%; background: var(--color-white); box-shadow: var(--shadow-glass);
}

/* Меню */
.menu-unique {
  display: flex; gap: 2.2vw;
  align-items: center;
}
.menu-unique a {
  color: var(--color-silver);
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  transition: background var(--transition-main), color var(--transition-main);
  position: relative;
}
.menu-unique a.active, .menu-unique a:hover {
  background: var(--color-gradient2);
  color: var(--color-dark);
  box-shadow: 0 2px 12px 0 rgba(255,111,97,0.12);
}
.menu-burger-unique {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  cursor: pointer;
}
.menu-burger-unique span {
  width: 28px; height: 4px; background: var(--color-accent2); border-radius: 2px;
  display: block;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  .menu-unique { display: none; }
  .menu-unique.show { display: flex; flex-direction: column; position: absolute; top: 70px; right: 2vw; background: var(--color-glass-strong); box-shadow: var(--shadow-main); border-radius: var(--radius-block); padding: 1.2rem; }
  .menu-burger-unique { display: flex; }
}

/* Футер */
.footer-unique {
  background: var(--color-glass-strong);
  color: var(--color-silver);
  padding: 2.5rem 0 1.2rem 0;
  margin-top: 4rem;
  border-top: 2px solid var(--color-accent2);
  box-shadow: 0 -4px 24px 0 rgba(0,180,216,0.08);
  backdrop-filter: blur(12px);
  animation: fadeInUp 1.2s;
}
.footer-unique .footer-inner {
  max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 2vw;
}
.footer-unique .footer-logo-block {
  display: flex; align-items: center; gap: 0.7rem; font-size: 1.3rem; font-weight: 700; color: var(--color-accent2);
}
.footer-unique .footer-logo-img { height: 38px; width: 38px; border-radius: 50%; background: var(--color-white); }
.footer-unique ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 1.5vw; }
.footer-unique a { color: var(--color-silver); text-decoration: none; transition: color 0.3s; }
.footer-unique a:hover { color: var(--color-accent); }
.footer-unique .footer-bottom { margin-top: 1.5rem; text-align: center; color: var(--color-silver); font-size: 0.98rem; opacity: 0.7; }

/* Основные блоки */
.section-unique {
  margin: 3.5rem auto 0 auto;
  max-width: 1200px;
  background: var(--color-glass);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  padding: 2.5rem 2vw;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s;
}
.section-unique .section-title {
  font-size: 2.3rem; font-weight: 800; color: var(--color-accent2); margin-bottom: 1.2rem; letter-spacing: 0.01em;
}
.section-unique .section-subtitle {
  font-size: 1.2rem; color: var(--color-accent); margin-bottom: 1.5rem;
}

/* Вложенные блоки */
.nested-block {
  background: var(--color-glass-strong);
  border-radius: var(--radius-block);
  box-shadow: var(--shadow-glass);
  padding: 1.5rem 1.2rem;
  margin-bottom: 1.5rem;
  animation: fadeIn 1.2s;
}
.nested-block .nested-title {
  font-size: 1.15rem; color: var(--color-accent); font-weight: 600; margin-bottom: 0.7rem;
}

/* Фото-блоки */
.photo-block {
  border-radius: var(--radius-block);
  overflow: hidden;
  box-shadow: 0 2px 16px 0 rgba(0,180,216,0.13);
  margin-bottom: 1.2rem;
  background: var(--color-white);
  display: flex; align-items: center; justify-content: center;
}
.photo-block img {
  width: 100%; height: auto; display: block; object-fit: cover; max-height: 320px;
}

/* Анимации */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-40px);} to { opacity: 1; transform: none; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px);} to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0;} to { opacity: 1; } }

.animated-fadeInDown { animation: fadeInDown 1s; }
.animated-fadeInUp { animation: fadeInUp 1s; }
.animated-fadeIn { animation: fadeIn 1.2s; }

/* Кнопки */
.btn-unique {
  background: var(--color-gradient2);
  color: var(--color-dark);
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 2px 12px 0 rgba(255,111,97,0.13);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn-unique:hover {
  background: var(--color-gradient);
  color: var(--color-white);
  box-shadow: 0 4px 24px 0 rgba(0,180,216,0.18);
}

/* Декоративные SVG */
.svg-decor {
  position: absolute; z-index: 0; pointer-events: none;
}

/* Адаптивность */
@media (max-width: 700px) {
  .section-unique { padding: 1.2rem 0.5rem; }
  .footer-unique .footer-inner { flex-direction: column; gap: 1.2rem; align-items: flex-start; }
} 