body {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    background-color: #F4E9D8;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;

}

.divisor {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b2505;
    margin: 40px 0;
}
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate.visible {
    opacity: 1;
    transform: translateY(0);
}
.cards .card:nth-child(1) { transition-delay: 0.1s; }
.cards .card:nth-child(2) { transition-delay: 0.2s; }
.cards .card:nth-child(3) { transition-delay: 0.3s; }
.container h1 {
    margin-top: 45px;
    text-align: center;
    color: #BE430a;
    margin-bottom: 20px;
    font-family: 'Koh Santepheap', serif;
    font-size: 35px;
}

.container p {
    text-align: center;
    font-size: 21px;
    font-family: 'Koh Santepheap', serif;
    color: #181818;

}
.divisor {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b2505;
    margin: 40px 0;
    font-family: Arial, Helvetica, sans-serif;
}
.cards {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;

}

.card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    width: 30%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 3px solid transparent;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(200, 125, 46, 0.19);
    border: 3px solid #6b2505;
}

.card img {
    margin: 15px auto;
    height: 95px;
    object-fit: cover;
}

.card h2 {
    font-size: 18px;
    color: #BE430a;
    margin: auto;
    font-family: 'Koh Santepheap', serif;
    font-size: 20px;
}

.card p {
    font-size: 14px;
    color: #494949;
    font-family: 'Koh Santepheap', serif;
    padding: 0 16px 20px auto;
    word-break: break-all;
}


.formulario {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto 60px;
    gap: 12px;
}

.formulario h2 {
    color: #BE430a;
    text-align: center;
    font-family: 'Koh Santepheap', serif;
    font-size: 33px;
    margin-top: -15px;
}

.formulario input,
textarea {
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Koh Santepheap', serif;
    
}

.formulario textarea {
    height: 120px;
    resize: none;
}

.formulario input:focus,
.formulario textarea:focus {
    outline: none;
    border: 1px solid #BE430a;
}

.formulario button {
    padding: 12px;
    background-color: #BE430a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
}

.formulario button:hover {
    background-color: #6b2505;
}
