:root {
    /* Colores del logo */
    --color-primary: #552012;
    --color-secondary: #ff8700;
    --color-white: #ffffff;
    --color-true-black: #000000;
    --color-gray: #4D5163;
}

body {
    font-family: 'Sailor', sans-serif;
    color: var(--color-true-black);
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Sailor', sans-serif;
    font-weight: 600;
    color: var(--color-primary);
}

p {
    font-family: 'Sailor', sans-serif;
}

.font-24 {
    font-size: 24px;
}

.text-white {
    color: white;
}

.logo-img {
    width: 108px;
    height: 99px;
    margin-right: 10px;
    object-fit: contain;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .logo-img {
        width: 50px;
        height: auto;
        margin-right: 10px;
        object-fit: contain;
        vertical-align: middle;
    }
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: var(--color-primary);
}

.hero-video {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
    /* overlay encima del video */
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -150px;
    color: var(--color-white);

}

@media (max-width: 1280px) {
    .hero-content {
        margin-top: -90px;
    }

}

@media (max-width: 1024px) {
    .hero-video {
        top: -80px;
    }

}

@media (max-width: 768px) {
    .hero-video {
        top: -80px;
        height: 125%;
    }

    .text-inspira {
        width: 100% !important;
    }
}

.hero-title {
    text-align: center;
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: var(--color-white);
    transform: perspective(1200px) rotateY(0deg);
    animation: flip 6s ease-in-out infinite;
}

@keyframes flip {
    0% {
        transform: perspective(1200px) rotateY(0deg);
    }

    33.33% {
        transform: perspective(1200px) rotateY(360deg);
    }

    100% {
        transform: perspective(1200px) rotateY(360deg);
    }
}

.container-full-width {
    width: 100%;
    height: 100%;
}

.container-center {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container-center-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

@media (max-width: 992px) {
    .container-center-row {
        display: flex;
        flex-wrap: wrap;
        /* Permite que los elementos salten a la siguiente fila */
        justify-content: left;
    }

    .container-center-row>* {
        flex: 0 0 50%;
        /* Cada hijo ocupa la mitad del ancho */
        box-sizing: border-box;
        /* Para que el padding y borde no afecten el ancho */
    }
}


.degradado-container {
    background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
}

.container-inspira {
    width: 100%;
    height: 520px;
}

.hero-subtitle {
    text-align: center;
    font-size: 1.5rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.5s;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.7s;
}

@media (max-width: 768px) {
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        align-items: center;
    }

}



@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-nuestra {
    color: var(--color-primary) !important;
}

.inspira-section {
    position: relative;
}

.story-section {
    position: relative;
}

.story-img img {
    border-radius: 20px;
}

.process-section {
    position: relative;
    background-image: url('../images/fondo.jpeg');
    /* Cambia por el path de tu imagen */
    background-size: cover;
    /* La imagen cubre toda la sección */
    background-position: center;
    /* Centrada */
    background-attachment: fixed;
    /* Esto hace que la imagen se quede estática al hacer scroll */
    background-repeat: no-repeat;
    color: white;
    /* Opcional: mejora el contraste del texto si la imagen es oscura */
}

.process-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Aseguramos que el contenido esté por encima del overlay */
.process-section>.container {
    position: relative;
    z-index: 2;
}

.process-step {
    position: relative;
    /* necesario para z-index */
    z-index: 20;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid white;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

@media (max-width: 768px) {
    .process-step{
        height: 210px;
    }
}
.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.2);
    cursor: pointer;
    /* opcional para indicar interactividad */
}



.container-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.container-card p{
    margin-left: 10px;
    margin-top: 15px;
}

.navbar {
    background-color: var(--color-white) !important;
    transition: box-shadow 0.4s ease;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled {
    background-color: var(--color-white) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Sailor', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease forwards 0.2s;
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 12px;
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo-icon {
    margin-right: 10px;
    color: var(--color-secondary);
    font-size: 1.5rem;
}

.nav-link {
    font-family: 'Sailor', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin: 0 15px;
    color: var(--color-gray) !important;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.nav-link:hover {
    color: black !important;
}

.nav-item:nth-child(1) .nav-link {
    animation: fadeInDown 0.6s ease forwards 0.4s;
}

.nav-item:nth-child(2) .nav-link {
    animation: fadeInDown 0.6s ease forwards 0.5s;
}

.nav-item:nth-child(3) .nav-link {
    animation: fadeInDown 0.6s ease forwards 0.6s;
}

.nav-item:nth-child(4) .nav-link {
    animation: fadeInDown 0.6s ease forwards 0.7s;
}

.nav-item:nth-child(5) .nav-link {
    animation: fadeInDown 0.6s ease forwards 0.8s;
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title.appear {
    opacity: 1;
    transform: translateY(0);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-secondary);
}

.section-title-white {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title-white.appear {
    opacity: 1;
    transform: translateY(0);
}

.section-title-white:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-white);
}

.collection-card img {
    margin-bottom: 10px;
}

.btn-primary {
    background-color: var(--color-secondary);
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-family: 'Sailor', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    border-radius: 30px;
    padding: 10px 28px;
    font-family: 'Sailor', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {

    .btn-primary {
        padding: 12px 0px;
        width: 100%;
        margin: 0px 0px 0px 0px;
        margin-right: 0px !important;
    }
}

.btn-outline:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.contact-section {
    /* background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary)); */
    background: var(--color-white);
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-family: 'Sailor', sans-serif;
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: var(--color-secondary);
}

.checkbox-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    text-align: left;
}

.btn-submit {
    background-color: var(--color-secondary);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 20px;
    font-family: 'Sailor', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}


footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 70px 0 30px;
}

.footer-title {
    color: var(--color-secondary);
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--color-secondary);
}

.footer-links a {
    display: block;
    color: var(--color-white);
    margin-bottom: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: var(--color-secondary);
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--color-secondary);
    transform: rotate(10deg);
}

.copyright p {
    display: flex;
    justify-content: center;
    margin-top: 80px;
    margin-bottom: 0px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--color-secondary);
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
}

.scroll-indicator p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.scroll-arrow {
    display: block;
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
    transform: rotate(45deg);
    margin: 0 auto;
    animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: rotate(45deg) translateY(0);
    }

    40% {
        transform: rotate(45deg) translateY(-10px);
    }

    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-content {
        padding: 0 10%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section {
        padding: 70px 0;
    }
}