/* CSS Reset */

*, *::before, *::after {
    box-sizing: border-box;
}
* {
    margin: 0;
}
html, body {
    height: 100%;
}
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}
input, button, textarea, select {
    font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}
#root, #__next {
    isolation: isolate;
}

/* Typo */

html {
    font-size: 16px;
}

body {
    font-family: 'Gudea', sans-serif;
}

.lead {
    font-size: 120%;
}
.small {
    font-size: 85%;
}

.text-center {
    text-align: center;
}

/* Basic template */
body {
    background: #eef6f9 url('background.jpg') fixed repeat-x bottom center;
    color: #263d96;
}

a {
    color: #263d96;
}

p {
    margin: 6px 0 10px;
}

header {
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 1.5rem;
    line-height: 1.9rem;
    margin-top: 20px;
    color: #fff;
}

header h1 span {
    background-color: #263d96;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 0 5px;
}

header h2 {
    font-family: 'Dancing Script', cursive;
    color: #e66b5b;
    font-size: 2rem;
    line-height: 1;
}

.logo {
    width: 66.6%;
    margin: 0 auto;
}

.container {
    margin: 0 auto;
    max-width: 400px;
    padding: 0 20px;
}

.box {
    background: #fff;
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
}

/* Coupon styles */
.coupon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 31vh;
}

.coupon {
    position: relative;
    width: 40vh;
    height: 22vh;
    perspective: 1000px;
}

.coupon .coupon--front, .coupon .coupon--back {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 1s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    border-radius: 10px;
}

.coupon .coupon--front::after, .coupon .coupon--back::after{
    display: block;
    content: "";
    background: transparent;
    border: 1px rgba(255,255,255,0.4) solid;
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    border-radius: 5px;
}

.coupon .coupon--front {    
    background-color: #263d96;
    color: #eef6f9;
    transform: rotateY(0deg);
    z-index: 1;
    box-shadow: 0 0 18px rgba(0,0,0,0.2);
    
}

.coupon .coupon--back {
    background-color: #6b271e;
    color: #e77c6e;
    transform: rotateY(-180deg);
    z-index: 0;
    box-shadow: 0;
    
}

.coupon.coupon--flip .coupon--front {
    background-color: #0a1646;
    transform: rotateY(180deg);
    z-index: 0;
    box-shadow: 0;
    
}
.coupon.coupon--flip .coupon--back {
    background-color: #e66b5b;
    color: #fff;
    transform: rotateY(0deg);
    z-index: 1;
    box-shadow: 0 0 18px rgba(0,0,0,0.2);
    
}

.coupon h1 {
    font-size: 2.6rem;
    line-height: 1;
}
.coupon h3 {
    margin-bottom: 5px;
}
.coupon .coupon--front h1 {
    margin-top: 20px;
}

.img-transporte {
    max-width: 100%;
    width: 64px;
}

/* grid */
.row {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.col-content-centered {
    display: flex;
    align-items: center;
    justify-content: center;

}