@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #f7921c;
    --secondary-color: #ffc50a;
    --tertiary-color: #000;
    --quaternary-color: #fff;
    --dark: #171717;
}

/* reset */
* {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.card img {
    max-height: 100%;
}

.icon {
    font-size: 40px;
    font-weight: 700;
    border: 1px solid #ffffff74;
    width: 80px;
    height: 80px;
    line-height: 1.8;
    border-radius: 50%;
}

.bg-dark {
    background-color: var(--dark) !important;
}

/* boton */
#learn-more {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

#learn-more.learn-more {
    width: 12rem;
    height: auto;
}

#learn-more.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    border-radius: 1.625rem;
}

#learn-more.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: var(--quaternary-color);
}

#learn-more.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

#learn-more.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid var(--quaternary-color);
    border-right: 0.125rem solid var(--quaternary-color);
    transform: rotate(45deg);
}

#learn-more.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: var(--quaternary-color);
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}

#learn-more:hover .circle {
    width: 100%;
}

#learn-more:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
}

#learn-more:hover .button-text {
    color: #fff;
}


/* navbar */
.navbar a {
    font-size: 14px;
    font-weight: 500;
}

.navbar-toggler {
    padding: 1px 5px;
    font-size: 18px;
    line-height: 0.3;
    background-color: var(--quaternary-color);
}

.w-100-height {
    height: 100vh;
    width: 100%;
}

/* Home */
.hero-section {
    background-image: url('../Images/home.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    max-width: 800px;

    padding-top: 200px !important;
    text-align: left;
    position: relative;
    z-index: 2;
    margin-left: 10%;
    margin-bottom: 10%;
}

.hero-content h1,
.hero-content h2,
.hero-content h3 {
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 3rem;
}

.hero-content h2 {
    font-size: 2.5rem;
}

.hero-content h3 {
    font-size: 2rem;
}

.hero-content .btn {
    margin-top: 30px;
    padding: 15px 30px;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hero-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* card Hero  */
.vaca-muerta-stats .card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.vaca-muerta-stats .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}


/* sobre nosotros */
#sobre-nosotros .btn-warning {
    background-color: var(--primary-color);
    color: var(--quaternary-color);
}

.heading {
    text-align: center;
    position: relative;
}

.heading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: .01rem;
    background: rgba(0, 0, 0, .1);
    z-index: -1;
}

.heading span {
    font-size: 3rem;
    padding: .5rem 2rem;
    background: var(--quaternary-color);

}

.heading-dark span {
    font-size: 3rem;
    padding: .5rem 2rem;
    color: var(--quaternary-color);


}

.heading-dark {
    text-align: center;
    position: relative;
}


/* contacto */
#Contacto {
    background: url(../Images/contact_bg.png) no-repeat center center/cover;
}

/* footer */
footer .brand {
    letter-spacing: 2px;
}

footer a {
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

/* Black Point */

.proyecto-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.proyecto-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.proyecto-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.proyecto-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 1;
}

.proyecto-text h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.proyecto-text p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn-primary {
    padding: 10px 20px;
    font-size: 1.2rem;
    text-transform: uppercase;
}



@media only screen and (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }

    .hero-content {
        margin-left: 5%;
        margin-bottom: 5%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content h3 {
        font-size: 1.5rem;
    }

    .card .img-wrapper {
        height: 17em;
    }

}