/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 04 2026 | 11:43:26 */
:root {
	--red: #8b1a1a;
	--grey: #888382;
	--avorio: #f0edea;
	--carbone: #2c2c2c;
	--font: #7a7a7a;
	--shadow: 0 1px 4px rgba(0, 0, 0, .06);
	--border: 1px solid #E0D9D2;
}

/**********************
SHORTCUTS
**********************/
.flex {display: flex;}
.vertical {justify-content: center;}
.horizontal {align-items: center;}
.column {flex-direction: column;}
.r-gap-20 {row-gap: 20px;}
.c-gap-20 {column-gap: 20px;}

.bg-dark {background-color: var(--carbone) !important;}
.bg-dark *:not(p) {color: #fff;}

/**********************
TYPOGRAPHY
**********************/
h1 {
	font-size: 50px;
	font-weight: 800;
	line-height: 1.12;
	color: var(--carbone);
	letter-spacing: -.02em;
}

h2 {
	font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.01em;
}

span.red {
	color: var(--red);
}

p {
	font-size: 18px;
	font-weight: 400;
	color: var(--font);
	line-height: 1.65;
}

/**********************
GENERAL
**********************/
a:hover {text-decoration: none;}

.btn-primary {
	background: var(--red);
    color: white;
    padding: 15px 34px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, transform .15s;
    box-shadow: 0 4px 20px rgba(139, 26, 26, .3);
}

.btn-secondary {
	color: var(--font);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

body .uk-section-default {
	background-color: var(--avorio);
}

.label {
	font-size: 12px;
    font-weight: 500;
    color: var(--font);
    box-shadow: var(--shadow);
	background-color: #fff;
	border: var(--border)
    border-radius: 99px;
    padding: 6px 16px 6px 10px;
	display: inline-flex;
	border-radius: 99px;
	margin: 0 auto;
}

/**********************
ELEMENTS
**********************/
.usp__wrapper li.el-item {
	margin-top: 0;
	font-size: 12px;
    font-weight: 500;
    color: var(--muted);
}

.usp__wrapper li.el-item svg {
	stroke: var(--red);
	margin-right: 5px;
}

.problema-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    border-radius: 16px;
    overflow: hidden
}

.problema-card {
    background: #1e1e1e;
    padding: 32px 28px;
    display: flex;
    gap: 16px;
    align-items: flex-start
}

.problema-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(139, 26, 26, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c45c5c
}

.problema-icon svg {
    width: 18px;
    height: 18px
}

.problema-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.problema-text {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.65
}

/**********************
LOGO ANIMATION
**********************/
.hero-flame-a {
	transform-box: fill-box;
	transform-origin: bottom center;
	animation: heroFlameA 1.9s ease-in-out infinite;
}

.hero-flame-b {
	transform-box: fill-box;
	transform-origin: bottom center;
	animation: heroFlameB 2.3s ease-in-out infinite;
	animation-delay: -0.7s;
}

@keyframes heroFlameA {
    0% {
        transform: scaleX(1) scaleY(1) skewX(0deg);
        opacity: 1;
    }

    12% {
        transform: scaleX(0.95) scaleY(1.04) skewX(-3deg);
        opacity: 0.88;
    }

    28% {
        transform: scaleX(1.04) scaleY(0.96) skewX(3.5deg);
        opacity: 1;
    }

    47% {
        transform: scaleX(0.96) scaleY(1.05) skewX(-2deg);
        opacity: 0.92;
    }

    63% {
        transform: scaleX(1.03) scaleY(0.97) skewX(2.5deg);
        opacity: 1;
    }

    80% {
        transform: scaleX(0.97) scaleY(1.03) skewX(-1.5deg);
        opacity: 0.9;
    }

    100% {
        transform: scaleX(1) scaleY(1) skewX(0deg);
        opacity: 1;
    }
}

@keyframes heroFlameB {
    0% {
        transform: scaleX(1) scaleY(1) skewX(0deg);
        opacity: 0.55;
    }

    18% {
        transform: scaleX(1.05) scaleY(0.95) skewX(4deg);
        opacity: 0.45;
    }

    38% {
        transform: scaleX(0.94) scaleY(1.06) skewX(-3.5deg);
        opacity: 0.6;
    }

    55% {
        transform: scaleX(1.03) scaleY(0.97) skewX(2.5deg);
        opacity: 0.48;
    }

    75% {
        transform: scaleX(0.96) scaleY(1.04) skewX(-2deg);
        opacity: 0.57;
    }

    90% {
        transform: scaleX(1.02) scaleY(0.98) skewX(1.5deg);
        opacity: 0.5;
    }

    100% {
        transform: scaleX(1) scaleY(1) skewX(0deg);
        opacity: 0.55;
    }
}