/* Reset */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Variables */

:root {
	--max-width: 1200px;
	--white: #fff;
    --black: #000000;
	--primary-color: #fa8071;
	--background-color: #94d9e9;
    --bg-btn-color: #f0f0f0;
}

/* General */

body {
	background-color: var(--background-color);
	font-family: "Roboto", sans-serif;
}

a {
	text-decoration: none;
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

input {
	cursor: pointer;
}

/* Utility Classes */

.D-flex {
	display: flex;
}

.center {
	justify-content: center;
	align-items: center;
}

.flex--wrap {
	flex-wrap: wrap;
}

.max-width-1200px {
	max-width: var(--max-width);
}

.full-width {
	width: 100%;
}

.vh-full {
	height: 100vh;
}

.full-height {
	height: 100%;
}

.pd {
	padding: 50px;
}


/* Typography */

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 1.5rem;
}

p {
	font-size: 1.2rem;
	line-height: 1.5;
}

/* Layout for Main Section */

.main_section {
	width: 80%;
	display: flex;
    height: 100%;
}



.container_boxes {
	gap: 2rem;
    height: 100%;
}

.box {
	flex: 1 1;
    height: 100%;
    max-height: 480px;
	border-radius: 10px;
	background: var(--white);
	box-shadow: 10px 10px 10px 0px #00000052;
    overflow: hidden;
}

.box-title {
    background: var(--primary-color);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px; /* Espaciado interno */
    height: 20%;
   
}

.box-description {
    display: flex;
    flex-direction: column; /* Alinear los elementos en columna */
    justify-content: space-between; /* Espacio entre el párrafo y el botón */
    align-items: center;
    height: 80%;
    width: 100%;
    padding: 10px; /* Espaciado interno */
}

.paragraph {
    text-align: center;

    p{
        margin: 20px 0;
    }
}

button.btn-buy {

    width: 50%;
    /* Color de fondo y color del texto */
    background: var(--bg-btn-color); /* Verde */
    color: var(--black);
  
    /* Tamaño y fuente */
    font-size: 1rem;
    font-family: Arial, sans-serif;
    padding: 10px 20px;
    
  
    /* Bordes */
    border: none;
    border-radius: 5px; /* Bordes redondeados */
    
    /* Cursor */
    cursor: pointer;
    
  }
  