/* Estilos generales */
* {
	padding:0;
	margin:0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html{
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    background-color: #fff;
}

/* Header */
header {
    background-color: #000; /* Fondo negro */
    padding: 20px;
    padding-top: 10px;
    border-bottom: 1px solid #ddd;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

main{
    padding-top: 130px;
}
svg {
    fill: currentColor;
}
svg path{
    fill: currentColor;
}
.bg-dark{
    background-color: #000;
}

.logo-overlay h1 {
    font-size: 5rem;
    color: #000;
    margin: 0;
    letter-spacing: 0.3em;
}
.logo-img{
    position: relative !important;
    margin-bottom: 20px;
    max-width: 30rem;
}

.logo {
    text-align: center;
    color: #fff;
    width: 400px;
    max-width: 90%;
}


/* Menú de navegación */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    row-gap: 10px;
}

nav a {
    color: #fff;
    font-weight: 400;
}

/* Estilos para la página de inicio */
.home-content {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.background-image {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 0; /* Imagen en el fondo */
}

.logo-overlay {
    position: relative;
    text-align: center;
    z-index: 1;
}
.foot-logo{
    color: white;
}


/* Estilos para la galería de frames */
.frame-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    row-gap: 40px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 60px;
    background-color: #f7f7f7;
}
.card{
	cursor: pointer;
}
.card img {
    width: 100%;
    height: auto;
    display: block;

    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease;
    object-fit: cover;
	aspect-ratio: 1 / 1.4;
}
.card:hover {
    transform: scale(1.05);
}
.card-text{
    text-align: center;
    padding-top: 12px;
    padding-left: 5px;
    padding-right: 5px;
}
.card-text h4{
    margin-bottom: 5px;
}
.arr-fotos{
	position: relative;
	aspect-ratio: 1 / 1.4;
}
.div-img{
	position: absolute;
	opacity: 1;
	transition: opacity 0.8s;
}

/* Estilos específicos para la página X */
.x-content {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #fff;
    margin: 0; /* Sin margen adicional */
    padding: 0; /* Sin padding adicional */
}
.x-content img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.logo-overlay-x {
    position: absolute;
    top: 43%;
    text-align: center;
    color: #000;
    width: 100%;
}
.logo-overlay-x h1 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
    letter-spacing: 0.9em;
    text-shadow: -1px 3px 6px rgba(0,0,0,0.97);
}


.product-card {
    width: 80%;
    margin: 60px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

	display: grid;
    gap: 0 30px;
    grid-template-columns: repeat(1, 1fr);
}
.product-image {
    width: 100%;
    height: auto;
    max-height: 84vh;
    object-fit: contain;
}
.product-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.product-title {
    font-size: 2em;
    font-weight: 700;
}
.product-subtitle {
	margin-top: 1.8rem;
}
.product-price {
    font-size: 1.5em;
    color: #b12704;
    margin: 20px 0;
}
.product-description {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 30px;
}
.buy-button {
    background-color: #ff9900;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1em;
    border-radius: 5px;
}
.product-option{
	background-color: #6f6f6f;
    color: white;
    padding: 4px 20px;
    border: none;
    cursor: pointer;
    font-size: 0.85em;
    border-radius: 1px;
    margin-right: 10px;
}
.btn-active{
	background-color: #00BCD4!important;
}



a {
    color: var(--bs-link-color);
    text-decoration: none;
}
.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}
.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.small, small {
    font-size: 80%;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}
.pt-6 {
    padding-top: 3.75rem !important;
}

.mb-1 {
    margin-bottom: .25rem !important;
}
.mb-2 {
    margin-bottom: .5rem !important;
}
.mb-3 {
    margin-bottom: 1rem !important;
}
.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}
.mt-5 {
    margin-top: 2.25rem !important;
}
.mx-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important;
}
.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}


.text-reset {
    --bs-text-opacity: 1;
    color: inherit !important;
}
.text-decoration-none {
    text-decoration: none !important;
}


.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 4rem;
    --bs-gutter-y: 0;
    margin-left: auto;
    margin-right: auto;
    padding-left: calc(var(--bs-gutter-x)* .5);
    padding-right: calc(var(--bs-gutter-x)* .5);
    width: 100%;
}

.row {
    --bs-gutter-x: 4rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(var(--bs-gutter-x)* -.5);
    margin-right: calc(var(--bs-gutter-x)* -.5);
    margin-top: calc(var(--bs-gutter-y)* -1);
}

.row>* {
    flex-shrink: 0;
    margin-top: var(--bs-gutter-y);
    max-width: 100%;
    padding-left: calc(var(--bs-gutter-x)* .5);
    padding-right: calc(var(--bs-gutter-x)* .5);
    width: 100%;
}
.col-6 {
    flex: 0 0 auto;
    width: 50%;
}



.h5, h5 {
    font-size: 1rem;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 1rem;
    margin-top: 0;
}
.list-inline, .list-unstyled {
    list-style: none;
    padding-left: 0;
}
dl, ol, ul {
    margin-bottom: 1rem;
    margin-top: 0;
}
ol, ul {
    padding-left: 2rem;
}

:root {
    --bs-blue: #012545;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #e83e8c;
    --bs-red: #c7473f;
    --bs-orange: #fd7e14;
    --bs-yellow: #e1be5f;
    --bs-green: #60c39b;
    --bs-teal: #46c5af;
    --bs-cyan: #359bd0;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f9f9f9;
    --bs-gray-200: #eee;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #c4c4c4;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #999;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #232323;
    --bs-secondary: #da3458;
    --bs-success: #60c39b;
    --bs-info: #359bd0;
    --bs-warning: #e1be5f;
    --bs-danger: #c7473f;
    --bs-light: #f9f9f9;
    --bs-dark: #343a40;
    --bs-white: #fff;
    --bs-black: #000;
    --bs-gray: #999;
    --bs-primary-rgb: 35, 35, 35;
    --bs-secondary-rgb: 218, 52, 88;
    --bs-success-rgb: 96, 195, 155;
    --bs-info-rgb: 53, 155, 208;
    --bs-warning-rgb: 225, 190, 95;
    --bs-danger-rgb: 199, 71, 63;
    --bs-light-rgb: 249, 249, 249;
    --bs-dark-rgb: 52, 58, 64;
    --bs-gray-rgb: 153, 153, 153;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 35, 35, 35;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg,hsla(0,0%,100%,.15),hsla(0,0%,100%,0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1.125rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.6;
    --bs-body-color: #232323;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0,0,0,.175);
    --bs-border-radius: 0.15625rem;
    --bs-border-radius-sm: 0.15625rem;
    --bs-border-radius-lg: 0.15625rem;
    --bs-border-radius-xl: 0.15625rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #da3458;
    --bs-link-hover-color: #ca3051;
    --bs-code-color: #c7473f;
    --bs-highlight-bg: #f9f2df;
}


@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 540px;
    }
    .logo-overlay-x h1 {
        font-size: 2rem;
    }
    .frame-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 768px) {
    .logo-overlay-x h1 {
        font-size: 2.5rem;
    }
    .frame-gallery {
        grid-template-columns: repeat(3, 1fr);
    }



    .container, .container-md, .container-sm {
        max-width: 720px;
    }
    .justify-content-md-between {
        justify-content: space-between !important;
    }
    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .mt-md-0 {
        margin-top: 0 !important;
    }
    .mx-md-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

	.product-card {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 992px) {
    .pb-lg-6 {
        padding-bottom: 3.75rem !important;
    }
    .pt-lg-7 {
        padding-top: 4.75rem !important;
    }
    .pt-lg-2 {
        padding-top: .5rem !important;
    }
    .mt-lg-5 {
        margin-top: 2.25rem !important;
    }
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .container, .container-lg, .container-md, .container-sm {
        max-width: 960px;
    }

}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }
}
