.dresscode {
    background-image: url("../img/dresscode.avif");
    background-size: cover;
    background-position: center;
    padding: 50px 20px;
    color: white;
    text-align: center;
    }
    
    .dresscode-content {
    display: flex;
    justify-content: center;
    gap: 20px;
    }
    
    .card {
    background-color: rgba(255, 255, 255, 0.947);
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
    height: 630px;
    transition: transform 0.3s ease;
    }
    
    .aviso {
    font-size: 2.5rem;
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-shadow: 0 0 10px #0c00ed, 0 0 20px #0004ff;
    }
    
    .card:hover {
    transform: translateY(-5px);
    }
    
    .card-image {
    width: 100%;
    transition: transform 0.3s ease;
    }
    
    .card:hover .card-image {
    transform: rotate(5deg);
    }
    
    .card h3,
    p {
    color: black;
    font-size: 17px;
    margin: 10px;
    margin-bottom: 10px;
    }
    
    .card-button {
    background-color: #00bfff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    width: 150px;
    margin-top: 0px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    }
    
    .card-button:hover {
    background-color: #0080ff;
    }
    
    /* Media Queries para diseño responsivo */
    @media (max-width: 768px) {
    .dresscode-content {
    flex-direction: column;
    align-items: center;
    }
    
    .card {
    width: 90%;
    height: 10px;
    margin-bottom: 50px;
    }
    }
    
    @media (max-width: 480px) {
    .card h3 {
    font-size: 1.5rem;
    }
    
    .card {
    height: 750px;
    margin-bottom: 20px;
    }
    
    .card p {
    font-size: 1.2rem;
    }
    
    .card-button {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    width: 90%;
    padding: 8px 16px;
    margin-bottom: 50px;
    }
    
    .aviso {
    font-size: 2rem;
    color: rgb(255, 255, 255);
    font-weight: bold;
    }
    }
    
    .familiares {
    background-image: url("../img/fondo_fam3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 20px;
    margin-top: 70px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    }
    
    .familiares-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    }
    
    .fam-section {
    font-size: 50px;
    margin-top: -25px;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 0 10px #1eb5fa, 0 0 20px #1eb5fa;
    }
    
    .novia,
    .novio {
    width: 45%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 5px;
    }
    
    h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #003366;
    }
    
    ul {
    list-style-type: none;
    padding: 0;
    }
    
    li {
    font-size: 30px;
    margin: 5px 0;
    color: #333;
    font-family: "Dancing Script", serif;
    }
    
    .hijos {
    margin-top: 20px;
    margin-left: 25%;
    background-color: #ffffffcf;
    width: 45%;
    border-radius: 5px;
    }
    
    .hijos h2 {
    font-size: 24px;
    color: #003366;
    }
    
    @media (max-width: 768px) {
    .familiares-container {
    flex-direction: column;
    align-items: center;
    }
    
    .novia,
    .novio {
    width: 90%;
    margin-bottom: 20px;
    }
    
    .hijos {
    width: 90%;
    margin-left: 20px;
    }
    }
    
    @media (max-width: 480px) {
    h2 {
    font-size: 20px;
    }
    
    li {
    font-size: 25px;
    }
    
    .hijos {
    margin-right: -30px;
    }
    
    .hijos h2 {
    font-size: 20px;
    }
    }
    