@charset "utf-8";

/* CSS Document */
body {
	margin: 0;
	color: rgb(51, 51, 51);
	width: 100%;
	height: 100%;
		/*font-family: 'Fira Sans', sans-serif;*/
	/*font-family: Georgia, serif;*/
	/*font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;*/
	font-family: "Segoe UI", Tahoma, Geneva, sans-serif;
	/*font-family: "Trebuchet MS", Helvetica, sans-serif;*/
	/*font-family: Arial, sans-serif;*/
	/*	font-family: system-ui, sans-serif; */
}

a {
	text-decoration: none;
	color: inherit;
}
a:hover {
	text-decoration: none;
	cursor: pointer;
}
h1, p1 {
	margin: 0;
}
button {
	cursor: pointer;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
    }
/* На сайте используются основные цвета белый (white); кроваво-красный (#ad1111); нейтрально красный (); черный (#333333)		  */

/*=================================================     Шапка        ===========================================*/
.header-block {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 130px;
	width: 100%;
	padding: 0 20px;
	background-color: white;
	box-sizing: border-box;
	position: relative;
}

.header-block-left,
.header-block-middle,
.header-block-right {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	position: relative;
}

/* Ширины под блоки можно адаптировать */
.header-block-left,
.header-block-right {
	width: 39%;
}
/*---------------------------------------------     Левый блок       ------------------------------------------*/
.header-block-left {
	flex: 0 0 auto;
	display: flex;
	align-items: stretch;
	justify-content: center;
	height: 100%;
	position: relative;
	width: 39%;
}

.header-menu {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	height: 100%;
}

.menu-item {
	position: relative;
	padding: 0 30px;
	opacity: 0.6;
	cursor: pointer;
	display: flex;
	align-items: center;
	height: 100%;
}

.menu-item:hover {
	opacity: 1;
	transition: opacity 0.5s ease;
}

.menu-link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-decoration: none;
	font-size: 16px;
	font-weight: normal; /* Тоже как раньше */
	transition: all 0.3s ease;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 300px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	z-index: 13; /* Теперь точно выше всех */
	top: 100%;
	left: 0;
	flex-direction: column;
}

.dropdown-link {
	display: block;
	padding: 20px 50px 20px 20px;
	text-decoration: none;
	white-space: nowrap;
	font-size: 16px;
	font-weight: normal;
}

.dropdown-link:hover {
	background-color: LightCoral;
	transition: background-color 0.3s ease;
}

.menu-item:hover .dropdown-content {
	display: flex;
}


/*---------------------------------------------     Средний блок       ------------------------------------------*/
.header-block-middle {
  width: 22%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-align: left;
}

.header-block-middle-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  cursor: pointer;
}

.header-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.header-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1; /* Уменьшаем межстрочное расстояние */
  gap: 4px; /* Чуть-чуть отступ между заголовком и надписью */
}

.header-block-middle-b11 {
  color: red;
  font-size: 30px;
  font-weight: 800;
  margin: 0; /* Убираем лишние отступы */
  padding: 0;
  line-height: 1.2;
}

.handwrite {
  font-family: '1 Amazone M', cursive;
  font-size: 18px;
  color: #ad1111;
  margin: 0; /* Убираем отступ снизу и сверху */
  padding: 0;
  opacity: 0;
  transform: translateX(10px);
  animation: fadeinup 1.5s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes fadeinup {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/*---------------------------------------------     Правый блок       ------------------------------------------*/
/* Контейнер правого блока */
.header-block-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 39%;
  height: 100%;
  padding: 0 50px;
  box-sizing: border-box;
}

/* Верхняя часть с фиксированной высотой и флексом */
.header-right-top {
  display: flex;
  flex-wrap: nowrap; /* чтоб не переносились */
  gap: 10px; /* чуть уменьшил gap, чтобы помещалось */
  align-items: stretch; /* растянуть детей по высоте */
  height: 50px;
  position: relative;
  opacity: 0.6;
  border-bottom: none; /* убираем бордер, т.к. он у линии */
  padding-bottom: 0;
  cursor: default; /* чтобы при наведении не казался текстом */
}
.header-right-link {
  text-decoration: none;
  display: flex;
}
/* Линия под всеми блоками */
.header-right-top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%; /* центрируем линию с шириной 60% */
  width: 60%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.4);
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, left 0.3s ease;
  transform-origin: center;
  pointer-events: none; /* чтобы линия не мешала наведению */
}

.header-right-top:hover::after {
  width: 100%;
  left: 0;
}

/* Блоки с иконкой и текстом */
.header-right-info-block {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%; /* растянуть на всю высоту родителя */
  cursor: pointer;
  padding: 0 8px; /* отступы чтобы не прилипали к соседним */
  user-select: none; /* чтобы при кликах не выделялось */
  /* Фиксируем ширину, чтобы не сдвигалось при ховере */
  flex-shrink: 0;
  box-sizing: border-box;
  position: relative;
  transition: background-color 0.2s ease;
}

/* При наведении на блок не меняем ширину, а просто чуть подсвечиваем */
.header-right-info-block:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Иконки */
.header-right-icon {
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/* Текст */
.header-right-text {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
}

/* Нижняя часть */
.header-right-bottom {
  display: flex;
  gap: 20px;
  align-items: center;
  height: 50%;
justify-content: center; /* вот эта строка — центрирует по горизонтали */
}



.dbo-select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.dbo-select-wrapper::before {
  content: "";
  position: absolute;
  left: 10px;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.dbo-select-wrapper.ul::before {
  background-image: url("../images/icons/header-ul-icon.png");
}
.dbo-select-wrapper.fl::before {
  background-image: url("../images/icons/header-fl-icon.png");
}

.header-right-select {
  padding-left: 30px;
  font-size: 14px;
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
}

.header-right-button {
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  border-radius: 13px;
  border: none;
  cursor: pointer;
  transition: 0.2s linear;
}

.dbo-ul {
  background: #ad1111;
}
.dbo-ul:hover {
  box-shadow: 0 0 0 2px white, 0 0 0 4px #ad1111;
}

.dbo-fl {
  background: #28a745;
}
.dbo-fl:hover {
  box-shadow: 0 0 0 2px white, 0 0 0 4px #28a745;
}
		/* ===== НОВАЯ МОБИЛЬНАЯ ШАПКА ===== */
.header-mobile {
	position: relative; /* <-- больше не sticky/fixed */
	z-index: 15;
	background: white;
	padding: 10px 36px;
	display: none;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	font-family: sans-serif;
		}

.header-mobile-left {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: stretch;
}

/* СЕЛЕКТОР */
.header-mobile-select {
	appearance: none;
	background-color: #f5f5f5;
	border: none;
	border-radius: 12px;
	padding: 10px 22px;
	font-size: 16px;
	font-weight: 500;
	color: #333;
	box-shadow: inset 0 0 0 1px #ccc;
	transition: box-shadow 0.2s, background-color 0.3s;
	background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='18' viewBox='0 0 24 24' width='18' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 16px 16px;
	cursor: pointer;
}

.header-mobile-select:hover {
	box-shadow: inset 0 0 0 1px #999;
	background-color: #f0f0f0;
}

.header-mobile-select:focus {
	outline: none;
	box-shadow: 0 0 0 2px #d32f2f;
}

/* КНОПКА */
.header-mobile-button {
	padding: 10px 16px;
	border-radius: 12px;
	text-align: center;
	text-decoration: none;
	color: white;
	font-weight: 600;
	font-size: 16px;
	background: linear-gradient(135deg, #d32f2f, #b71c1c);
	box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
	transition: all 0.3s ease;
}

.header-mobile-button:hover {
	background: linear-gradient(135deg, #b71c1c, #d32f2f);
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(211, 47, 47, 0.5);
}

.header-mobile-button:active {
	transform: scale(0.98);
	box-shadow: 0 2px 8px rgba(211, 47, 47, 0.4);
}
		.header-mobile-logo img {
			height: 80px;
			width: auto;
		}

		.header-mobile-burger {
			width: 46px;
			height: 36px;
			position: relative;
			cursor: pointer;
			display: flex;
			flex-direction: column;
			justify-content: space-between;
		}

		.header-mobile-burger span {
			display: block;
			height: 3px;
			background: #333;
			border-radius: 2px;
			transition: 0.3s ease;
		}

		.header-mobile-burger.open span:nth-child(1) {
			transform: translateY(16px) rotate(45deg);
		}

		.header-mobile-burger.open span:nth-child(2) {
			opacity: 0;
		}

		.header-mobile-burger.open span:nth-child(3) {
			transform: translateY(-16px) rotate(-45deg);
		}

/* ===== МЕНЮ ===== */
.header-mobile-menu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #fdf2f8;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
	transform: scaleY(0);
	transform-origin: top;
	opacity: 0;
	pointer-events: none;
	transition: transform 0.3s ease, opacity 0.3s ease;
	z-index: 15;
	padding: 0 16px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}
.header-mobile-menu::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(253, 242, 248, 0.95); /* почти непрозрачный */
	z-index: -1;
	backdrop-filter: blur(8px);
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}
.header-mobile-menu.open {
	transform: scaleY(1);
	opacity: 1;
	pointer-events: auto;
	padding: 16px;
	z-index: 15;
}

.menu-section {
	margin-bottom: 20px;
}

.menu-section a.section-link {
	display: inline-block;
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 15px;
	color: #be123c;
	letter-spacing: 0.5px;
	border-left: 4px solid #e11d48;
	padding-left: 8px;
	text-decoration: none;
	transition: color 0.2s ease;
}

.menu-section a.section-link:hover {
	color: #9f1239;
}

.menu-section ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu-section ul li {
	margin: 8px 0;
}

.menu-section ul li a {
	display: block;
	color: #581c1c;
	text-decoration: none;
	font-size: 14px;
	padding: 8px 12px;
	border-radius: 6px;
	transition: background 0.2s ease, color 0.2s ease;
}

.menu-section ul li a:hover {
	background: #fce7eb;
	color: #b91c1c;
}
/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
.header-block {
	display: none !important;
}

.header-mobile {
	display: flex;
}}

















/*=================================================     Подвал        ===========================================*/
.footer {
    background: #ffffff;
    padding: 40px 20px;
    border-top: 3px solid #ccc;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
	padding-bottom: 13px;
}

.footer-column h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #c00;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 90px 5px;
    border-top: 2px solid #ddd;
    font-size: 14px;
    color: #333;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-info, .footer-license, .footer-actions {
    flex: 1;
    min-width: 250px;
    padding: 5px;
    margin: 0;
}

.footer-info p, .footer-license p {
    margin: 0;
    line-height: 1.5;
    font-size: 13px;
}

.footer-info a {
    color: #b22222;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}
/* Если возвращать яндекс переводчик, то раскоменьтить
.footer-translate {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-translate-label {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.footer-translate-select {
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #aaa;
    font-size: 14px;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.footer-translate-select:focus {
    outline: none;
    border-color: #d00;
    box-shadow: 0 0 5px rgba(208, 0, 0, 0.4);
} */
/* Стили для блока переводчика от гугл виджета, удалить если переход на яндекс будет*/
.footer-translate {
    margin-top: 15px;
    text-align: center;
}

.footer-translate-label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    color: #444;
}

/* Скрываем лишний гугловский текст "Powered by" */
.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    font-family: inherit !important;
    font-size: 13px !important;
    color: #222 !important;
}

/* Селектор */
.goog-te-combo {
    padding: 6px 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 13px;
    background: #fff;
    color: #000;
    cursor: pointer;
    transition: all 0.3s;
}

.goog-te-combo:hover {
    border-color: #d00;
}
.goog-te-menu-frame {
    box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

.goog-te-menu2 {
    padding: 6px !important;
    font-size: 14px !important;
    font-family: Arial, sans-serif !important;
}




.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch; /* Делаем кнопки одинаковой ширины */
  width: 100%; /* Растягиваем блок на всю доступную ширину */
  max-width: 300px; /* Ограничиваем максимальную ширину */
}

.footer-button {
  display: flex;
  align-items: center;
  justify-content: center; /* Выравниваем текст по центру */
  padding: 12px 18px 12px 40px;
  background-color: white;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 5px;
  position: relative;
  transition: all 0.3s ease;
  width: 100%; /* Делаем все кнопки одинаковыми по ширине */
}

.footer-button:hover {
  background-color: #f5f5f5;
  color: #ad1111;
  border-color: #ad1111;
}

.footer-button::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

.futa-fl::before {
  background-image: url("../images/icons/futa-fl-icon.png");
}

.futa-ul::before {
  background-image: url("../images/icons/futa-ul-icon.png");
}

.futa-and::before {
  background-image: url("../images/icons/futa-and-icon.png");
}
/*   Подвал модальное окно потребителям фин услуг */
.consumers-link {
  color: #b00000;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  font-size: 16px;
}

.consumers-link:hover {
  color: #900000;
}

.consumers-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1099; /* ниже системных модалок если они 1100+ */
  font-family: 'Segoe UI', sans-serif;
}

.consumers-modal.consumers-show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.consumers-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.consumers-box {
  position: relative;
  z-index: 2;
  background: #fff;
  color: #111;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  padding: 24px 32px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  animation: consumers-fade-in 0.3s ease;
  font-size: 16px;
  line-height: 1.6;
}

.consumers-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #b00000;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.consumers-close:hover {
  transform: scale(1.2);
}

.consumers-content h2 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #b00000;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.consumers-content p {
  line-height: 1.6;
  margin-bottom: 12px;
  color: #333;
}

.consumers-content a {
  color: #b00000 !important;
  background: none !important;
  text-decoration: underline;
  display: inline !important;
}

@keyframes consumers-fade-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




										/* Универсальные блоки */
/* Родительский блок блоки */
.padres {
	display: table;
	position: relative;
	vertical-align: middle;
	box-sizing: border-box;
}
/* Дочерний блок */
.hijos {
	display: table-cell;
	position: relative;
	text-align: center;
	list-style: none;
	text-decoration: none;
	box-sizing: border-box;
}
/* Центрирование */
.medio {
	text-align: center;
	vertical-align: middle;
	align-items: center;
    justify-content: center;
}
/* Анимированное подчеркивание */
.palitoscalientes::after {
    content: "";  
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: red;
    transform: scaleX(0); /* Скрываем линию */
    transition: transform 0.3s ease-in-out;
}

.palitoscalientes:hover::after {
    transform: scaleX(1); /* Показываем линию */
}
/* Затемнение сверху */
.tristeza-oscura-techo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px; /* Высота затемнения */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent);
    z-index: 2; /* Чтобы было над контентом */
    pointer-events: none; /* Чтобы не мешало кликам */
}
/* Затемнение умеренное - сверху */
.alta-dama-con-sombrero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px; /* Высота затемнения */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
    z-index: 2; /* Чтобы было над контентом */
    pointer-events: none; /* Чтобы не мешало кликам */
}
/* Затемнение умеренное - снизу */
.bajita-dama-con-sombrero::after  {
	content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px; /* Высота затемнения */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
    z-index: 2;
    pointer-events: none;
}
/* Затемнение снизу */
.tristeza-oscura-piso::after {
	content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px; /* Высота затемнения */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    z-index: 2;
    pointer-events: none;
}
/* Полупрозрачная красная кнопка */
.boton-rojo-culo {
  padding: 18px 32px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  background-color: rgba(179, 0, 0, 0.8);
  color: white;
  cursor: pointer;
  border: none;
  box-shadow: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.boton-rojo-culo:hover {
  background-color: rgba(179, 0, 0, 1);
  transform: scale(1.03);
}

.boton-sangre-y-vino {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #ad1111, #d42323);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(173, 17, 17, 0.3);
  transition: transform 0.3s ease, background 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.boton-sangre-y-vino:hover {
  background: linear-gradient(135deg, #bb0b15, #e02c2c);
  transform: scale(1.04);
}






/* 								Аккордеон, при нажатии на него открывается содержимое 					*/
.tu-sonrisa-accordion {
  margin-top: 32px;
}
.tu-sonrisa-accordion-toggle {
  background: none;
  border: none;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  transition: all 0.3s ease;
}
.tu-sonrisa-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 24px;
  transition: transform 0.3s ease;
}
.tu-sonrisa-accordion-toggle.active .tu-sonrisa-icon {
  transform: rotate(45deg); /* + превращается в x */
}
.tu-sonrisa-accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 0;
}
.tu-sonrisa-accordion-content.open {
  opacity: 1;
  margin-top: 12px;
}

.tu-sonrisa-accordion-content p {
	font-size: 16px;
  line-height: 1.6;	
	margin: 0;
} 
.tu-sonrisa-accordion-content h1 {
	font-size: 20px;
  line-height: 1.6;
	margin: 0;
} 
/*
  <div class="tu-sonrisa-accordion">
    <button class="tu-sonrisa-accordion-toggle">
      <span class="tu-sonrisa-icon">+</span> Текст заглавный
    </button>
    <div class="tu-sonrisa-accordion-content">
      <p>
       Текст
      </p>
    </div>
  </div>
*/
/* 					Стили списка ссылок - это классы нужны если вы решили добавить а аккордеоне список ссылок 				*/
.tu-sonrisa-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tu-sonrisa-link-list li {
  position: relative;
  padding-left: 18px;
}

.tu-sonrisa-link-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #dc3545;
  font-size: 20px;
  line-height: 1;
}

.tu-sonrisa-link {
  text-decoration: underline;
  color: #212529;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.tu-sonrisa-link:hover {
  color: #dc3545;
  transform: translateX(4px);
}




/* В данном случае класс будет выглядеть вот так */
/*
<div class="tu-sonrisa-accordion">
    <button class="tu-sonrisa-accordion-toggle">
      <span class="tu-sonrisa-icon">+</span> Текст заглавный
    </button>
	<div class="tu-sonrisa-accordion-content">
   		<ul class="tu-sonrisa-link-list">
      		<li><a href="#" class="tu-sonrisa-link">Ссылка 1</a></li>
      		<li><a href="#" class="tu-sonrisa-link">Ссылка 2</a></li>
		</ul>
	</div>
</div>
*/
/*											 Серая линия слева (не будет работать если слева есть уже границы)				*/
.lineas-de-mano-left {
  border-left: 4px solid #ccc;
}
/* Отступ для серой линии, если нужно*/
.anillo-de-dedo {
	padding-left: 13px
}
/*										 Базовая структура страницы т.е. блок просто блок							*/
/* 			Главный блок */
.estatua-cuerpo {
	margin: 0;
	padding: 0;
	position: relative;
	display: block;
	width: 100%;
	overflow-x: hidden;
	
}
/* 			Дочерний блок с отступами*/
.estatua-alma {
	padding: 60px 20px;
	max-width: 960px;
	margin: 0 auto;
	overflow-x: hidden;
	position: relative;
	display: block;
} 
.estatua-alma p {
	font-size: 18px;
	line-height: 1.6;
	padding: 0  0 6px 16px;
	margin: 0;
}
.estatua-alma h3 {
	font-size: 24px;
	padding: 0  0 6px 16px;
	margin: 0;
}
/*			Дочерний блок без отступов */
.estatua-corazon {
	max-width: 960px;
	margin: 0 auto;
	overflow-x: hidden;
	position: relative;
	display: block;
}
/*
<section class="estatua-cuerpo">
	<div class="estatua-alma или estatua-corazon">
		<!-- Место для контента -->
	</div>
</section>
*/
/* 			Желтый блок внимание!*/
.atencion-muchachos {
  display: flex;
  align-items: center;
  background-color: #fffbea;
  border: 1px solid #ffe58f;
  border-radius: 10px;
  padding: 24px;
  margin-top: 32px;
  gap: 16px;
  font-size: 18px;
  line-height: 1.6;
}
.atencion-muchachos-icon {
  width: 36px;
  height: 36px;
  background-image: url("../images/icons/warning-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
/*
<div class="atencion-muchachos">
	<div class="atencion-muchachos-icon"></div>
	<div>
	<strong>Atencion!</strong><br>
	Hola amigos!
	</div>
</div> 
*/
/* 			Блок "Важно" с зеленой левой границей 			*/
.atencion-senoras-note {
  padding: 16px;
  border-left: 4px solid #28a745;
  border-radius: 4px;
}
/*
<p class="dbo-sbp-info-note">📌 <strong>Важно:</strong> Условия не распространяются на переводы при личном присутствии клиента в банке или с использованием <strong>платёжных карт</strong>, в рамках платёжных систем.</p>
*/

/* 		=======================	Декоративный разделитель между секциями		=========================	*/
/* Разделитель между секциями */
.section-divider {
	width: 100%;
	height: 2px;
	background: linear-gradient(to right, transparent, #d00000 30%, #000 70%, transparent);
	margin: 80px auto 20px;
	border-radius: 2px;
	opacity: 0.3;
	position: relative;
}
.section-divider::after {
	content: "";
	display: block;
	margin: 0 auto;
	width: 30px;
	height: 4px;
	background: #d00000;
	border-radius: 4px;
	margin-top: -3px;
	animation: section-flare 2s infinite ease-in-out alternate;
}

@keyframes section-flare {
	0% { transform: scaleX(1); opacity: 0.6; }
	100% { transform: scaleX(1.4); opacity: 1; }
}
/* <div class="section-divider"></div>	 */

/* 		=======================	Декоративное подчеркивание заголовка в виде красной палочки		=========================	*/
.delineador-sangre {
	display: block;
	width: 100px;
	height: 4px;
	background: linear-gradient(90deg, #8c2c2c, #f44336);
	margin: 18px auto 0;
	border-radius: 30px;
	box-shadow: 0 0 5px rgba(255, 80, 80, 0.3);
	opacity: 0;
	transform: scaleX(0);
	transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Активное состояние при показе */
.delineador-sangre.revealed {
	opacity: 1;
	transform: scaleX(1);
}

						/*		Обертка (врапер) - нужен для того, чтобы оборачивать в него flex блоки		*/
.calientes-abrazos {
	display: block;
	width: 100%;
}
/*
<div class="calientes-abrazos">
	КОНТЕНТ
</div>
*/
						/*		Модальное окно - Модальное окно с декорациями		*/
.modal-caliente {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.modal-caliente-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(30, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  cursor: pointer;
}

.modal-caliente-content {
  position: relative;
  background: #fff8f7;
  border: 2px solid #b54c4c;
  border-radius: 12px;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.4s ease;
}

.modal-caliente-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #722020;
}

.modal-caliente-text,
.modal-caliente-subtext {
  color: #4b1f1f;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.modal-caliente-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.modal-caliente-list li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed #dca8a8;
  font-weight: 500;
  color: #2b0e0e;
}

.modal-caliente-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #912020;
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
						/*		Модальное окно - Минималистичное		*/
.modal-frio {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}

.modal-frio-content {
  background-color: white;
  margin: 10% auto;
  padding: 30px 40px;
  border-radius: 10px;
  max-width: 550px;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.modal-frio-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.modal-frio-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
  color: #888;
  cursor: pointer;
}

.modal-frio-close:hover {
  color: #000;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}






										/* 					Универсальные цвета 					*/
.color-vino-blanco {
	background-color: #F8F8F8;
}
.color-alma-pureza {
	background-color: white;
}
.color-negro {
	background-color: #0d0d0d;
}
.color-sangre-link {
	color: #dc3545;
}
										/* 					Отступы 					*/
.padding-top-10px {
	padding-top: 10px;
}
.padding-top-30px {
	padding-top: 30px;
}
.padding-top-50px {
	padding-top: 50px;
}
.padding-bottom-10px {
	padding-bottom: 10px;
}
.padding-bottom-30px {
	padding-bottom: 30px;
}
.padding-bottom-50px {
	padding-bottom: 50px;
}
.margin-bottom-10px {
	margin-bottom: 10px;
}
.margin-bottom-30px {
	margin-bottom: 30px;
}
.margin-bottom-50px {
	margin-bottom: 50px;
}