@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Clases solicitadas para imágenes responsivas sin recortes forzados */
.responsive-img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    width: 100%;
}

.responsive-icon {
    width: 100%;
    height: auto;
    max-width: 400px;
    object-fit: contain;
    margin: 0 auto;
}

/* Formas Curvas y Diagonales para replicar el PDF */
.hero-curve-right {
    border-radius: 0 50% 50% 0 / 0 50% 50% 0;
}

.diagonal-split {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -20%;
    width: 75%;
    background-color: #022b22; /* Tailwind bg-brand-dark */
    border-right: 12px solid #ce9d4d; /* Tailwind text-brand-gold */
    transform-origin: bottom;
    transform: skewX(20deg);
    z-index: 10;
}

.gateway-curve-left {
    border-radius: 50% 0 0 50% / 50% 0 0 50%;
}
