
/* ------ Em Livros ------ */
/* --- Produto --- */
.small-container {
	max-width: 1080px;
	margin: auto;
	padding-left: 25px;
	padding-right: 25px;
	margin-top: 0;
}
.row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-around;
}
.col {
	flex-basis: 25%;
	padding: 10px;
	min-width: 200px;
	margin-bottom: 50px;
	transition: transform 0.5s;
}
.col img {
	width: 100%;
}

.col p {
	font-size: 14px;
}
.col:hover {
	transform: translateY(-5px);
}

/* ------ media query for less than 600 screen size ------- */

@media only screen and (max-width: 600px) {
	.row {
		text-align: center;	
	}
	.col {
		flex-basis: 100%;	
	}
}
/* ------ */

/* ------------ offer ------------ */

.offer {
	background: radial-gradient(#FFF,#FFD6D6);
	margin-top: 0;
	padding: 30px 0;
}
.col-2 .offer-img {
	padding: 50px;
}
small {
	color: #DA1212;
}
.small-container {
	max-width: 1080px;
	margin: auto;
	padding-left: 25px;
	padding-right: 25px;
}
.row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-around;
}
.col-2 {
	flex-basis: 50%;
	min-width: 300px;
}
.col-2 img {
	max-width: 100%;
	padding: 50px 0;
}
.col-2 h1 {
	font-size: 50px;
	line-height: 60px;
	margin: 25px 0;
}
/* ------ */
/* ------- fim Livros ------ */


/* --------- Em contos ----------- */
/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 10px;
  height: auto; /* Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}
/* ----- */


/* Botão troca página */
.page-btn {
	margin: 0 auto 80px;
}
.active {
	background: #FF593B;
}
.page-btn span {
	display: inline-block;
	border:1px solid #FF523B;
	margin-left: 10px;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	cursor: pointer;
	color: #B0D7FF;
}
.page-btn span:hover {
	background: #FF523B;
	color: #FFF;
}
/* ------ */

/* SEÇÃO HERO (PÁGINA PRINCIPAL) */
        .hero {
            background: none;
            color: #ffffff;
            padding: 3rem 2rem;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.1rem;
            color: #cccccc;
            margin-bottom: 2rem;
        }

        /* BANNER PIX + E-MAIL */
        .pix-notice {
            background-color: #0f3460;
            border-left: 4px solid #00b4d8;
            padding: 1rem;
            border-radius: 4px;
            display: inline-block;
            margin-top: 1rem;
            font-weight: 500;
        }
        

 .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid #f1f1f1;
        }
 /* 3.4. PREÇO DO CONTO */
        .product-price {
            font-size: 1.3rem;
            font-weight: bold;
            color: #F9DC5C;
        }
/* BOTÃO COMPRAR */
        .btn-buy {
            background-color: #e94560;
            color: #ffffff;
            text-decoration: none;
            padding: 0.6rem 1.2rem;
            border-radius: 4px;
            font-weight: bold;
            transition: background 0.3s;
        }

        .btn-buy:hover {
            background-color: #c73850;
        }
        
/* ------------- Fim Contos ---------------- */


