        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        @font-face {
            font-family: "Canela";
            src: url("../fonts/Canela-Regular-Cy-Gr-Web.woff2") format("woff2");
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        .invitacion-section {
            font-family: 'Montserrat', sans-serif;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }

        .carta-container {
            max-width: 700px;
            width: 100%;
            background: #f5f3ed;
            padding: 60px 50px;
            box-shadow:
                0 10px 40px rgba(87, 84, 65, 0.2),
                0 2px 8px rgba(87, 84, 65, 0.1),
                inset 0 0 0 1px rgba(172, 139, 85, 0.15);
            position: relative;
            border: 1px solid rgba(172, 139, 85, 0.2);
        }

        /* Efecto de papel con textura */
        .carta-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                repeating-linear-gradient(0deg,
                    rgba(172, 139, 85, 0.03) 0px,
                    transparent 1px,
                    transparent 2px,
                    rgba(172, 139, 85, 0.03) 3px);
            pointer-events: none;
        }

        /* Decoración superior */
        .ornamento-superior {
            text-align: center;
            margin-bottom: 30px;
            font-size: 40px;
            color: #b16537;
            opacity: 0.7;
        }

        .texto-honor {
            font-size: 20px;
            text-align: center;
            color: #575441;
            margin-bottom: 40px;
            font-weight: 300;
            letter-spacing: 1px;
            line-height: 1.6;
        }

        .nombres-novios {
            font-family: "Canela", serif;
            font-size: 52px;
            text-align: center;
            color: #b16537;
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.3;
        }

        .separador {
            text-align: center;
            margin: 20px 0;
            font-size: 24px;
            color: #ac8b55;
            opacity: 0.6;
        }

        .fecha-boda {
            font-size: 24px;
            text-align: center;
            color: #575441;
            margin-bottom: 50px;
            font-weight: 400;
            letter-spacing: 3px;
        }

        .padres-titulo {
            font-size: 18px;
            text-align: center;
            color: #575441;
            margin-bottom: 25px;
            letter-spacing: 2px;
        }

        .padres-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .padres-columna {
            text-align: center;
        }

        .padres-nombre {
            font-size: 16px;
            color: #575441;
            margin-bottom: 8px;
            line-height: 1.6;
            font-weight: 400;
        }

        /* Decoración inferior */
        .ornamento-inferior {
            text-align: center;
            margin-top: 30px;
            font-size: 40px;
            color: #b16537;
            opacity: 0.7;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .carta-container {
                padding: 40px 30px;
            }

            .nombres-novios {
                font-size: 40px;
            }

            .texto-honor {
                font-size: 18px;
            }

            .fecha-boda {
                font-size: 20px;
                letter-spacing: 2px;
            }

            .padres-container {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .padres-nombre {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .carta-container {
                padding: 30px 20px;
            }

            .nombres-novios {
                font-size: 34px;
            }

            .texto-honor {
                font-size: 16px;
            }

            .fecha-boda {
                font-size: 18px;
            }
        }