@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Cabin", sans-serif;
    background-color: #F4F0EA;
    color:#798252;
    font-weight:500;
    
}

.menu {
    display: flex;
    flex-direction: row;
    justify-content: start;
    padding: 10px;
    margin-left: 10px;
    gap: 5px;
    color: black;
    font-weight: 900;
    
}

.menu img {
    width: 40px;
    height: auto;
}

.container {
    border-top: 0.4px solid #798252;
    padding: 20px;
}

h2, p, h3 {
    text-align: center;
    margin-bottom: 20px;
}

.genero {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.genero-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    padding: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.genero-card:hover {
    transform: scale(1.05);
}

.genero-card img {
    width: 100px;
    height: auto;
    border-radius: 10px;
}

.genero-btn {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    background-color: #798252;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.genero-btn:hover {
    background-color: #798252;
}


.back-btn {
    position: absolute;
    left: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}


.logo img{
    width:40px;
    height:auto;
}

.logo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding:10px;
    margin-left: 10px;
    
}

.options {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.option-btn {
    width: 70%;
    padding: 15px;
    font-size: 18px;
    background: white;
    border: 2px solid #798252;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
    
}
.option {
    width:70%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #798252;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    gap: 10px;
    accent-color:#798252;
            
}

.option input {
    order: 2; 
    transform:scale(1.5);
            
}
       
.button {
    width: 50%;
    padding:15px;
    font-size: 18px;
    border-radius: 8px;
    border: 2px solid #798252;
    cursor: pointer;
    color: #fff;
}

.button.active{
    background:#798252;
    cursor: pointer;
    border: 2px solid #798252;
}

.option-btn:hover {
    background: none;
    border: 2px solid #798252;
    transform: scale(1.02) ;
    
} 

.group {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 500px;
}


.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-size: 18px;
    color: black;
    font-family: Arial, sans-serif;
    
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

button[type="submit"] {
    background-color: #798252;
    color: #fff;
    border: none;
    padding: 15px 20px;
    border-radius: 3px;
    cursor: pointer;
    width: 80%;
    margin-left: 10%;
    font-size: 18px;
}

button[type="submit"]:hover {
    background-color: #798252;
}
#btn-b{
    background: #798252;
    color:white;
    border: none;
    width: 30%;
    padding: 20px;
    font-size: 18px;
    border-radius: 10px;
    animation: pulse 1s infinite;
    cursor: pointer;
    display: none;
    
}
@keyframes pulse {
    0% {
        transform: scale(1);
    
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1)
    }
}
