@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');



:root {
    --primary-color: #560000;
	 --secondary-color: #ff3046;
}

/* General Styles */
body {
    background-color: #000000;
    color: white;
  font-family: "Jost", serif;
  font-weight: 400;
  font-style: normal;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(0, 0, 0, 0.9) !important;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.logo-top img{
	max-width: 200px;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    backdrop-filter: blur(10px);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,.8);
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    opacity: 0.9;
}

.video-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-section .container {
    z-index: 1;
    position: relative;
}

/* Button Styles */
.btn {
    border-radius: 2px;
    padding: 0.8rem 2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #ff8533;
    border-color: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-light:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Text Colors */
.text-primary {
    color: var(--secondary-color) !important;
}

/* Project Cards */
.project-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #1a1a1a;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.project-card img {
    transition: all 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.play-button {
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
}

.play-button::after {
    content: '';
    border-left: 20px solid var(--primary-color);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.project-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.play-button:hover::after {
    border-left-color: white;
}

/* Service Section */
.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    padding-top: 5rem;
    padding-bottom: 2rem;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .project-card .play-button {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.8);
    }

    .service-card {
        padding: 1.5rem;
    }
}

/* Scroll Bar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff8533;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.overlay-gradient {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 1) 100%);
    padding: 1rem;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;  /* Tamaño del icono */
    color: rgba(255, 255, 255, 0.5); /* Blanco al 50% de opacidad */
    transition: color 0.3s ease;
	cursor: pointer;
}

.play-icon:hover {
    color: rgba(255, 255, 255, 1); /* Blanco al 100% al pasar el cursor */
}


.parallax-section {
    background-position: center;
	background-attachment: fixed; /* Activa el efecto parallax */
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 2rem;
}


/* Estilo para campos en formularios oscuros */
.form-dark {
    background: transparent; /* Sin fondo */
    border: none; /* Sin bordes laterales ni superiores */
    border-bottom: 1px solid white; /* Solo borde inferior */
    color: white; /* Texto en blanco */
    width: 100%; /* Ocupar todo el ancho disponible */
    padding: 8px 0; /* Espaciado vertical */
    font-size: 16px; /* Tamaño del texto */
    outline: none; /* Elimina el borde azul de selección */
	margin-bottom:30px;
}

/* Placeholder en blanco con opacidad */
.form-dark::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Cambio de borde al enfocar */
.form-dark:focus {
    border-bottom: 2px solid #00c3ff; /* Color al enfocar */
}

.bread {
        display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Empuja el contenido hacia la base */
    align-items: center; /* Centra horizontalmente */
    height: 300px; /* Ajusta la altura según necesites */
    background-position: center;
    background-size: cover;
    color: white;
}

 .filter-btn {
            cursor: pointer;
            margin: 5px;
        }

        .project-card {
            transition: all 0.5s ease-in-out;
        }
.alianza{
	width:80%;
	background-color: #000 !important;
	color: #fff!important;
}