/* CSS para Título y Cuerpo de Texto */
@import url('https://fonts.googleapis.com/css2?family=DM%20Serif%20Display:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root{
    --hero-height: 100vh;
    --grid-gap: 50px;
    --navbar-background: #0d1f2100;
    --navbar-color: #d5d5d5;
    --navbar-hover-background: #091516;
    --navbar-hover-color: #ffffff;
    --color-accent1: #e9bf97;
    --color-accent2: #b78d5a;
    transition: --navbar-background 0.3s ease;
}

body{
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    line-height: 1.6em;
}

h1, h2, h3, h4, h5, h6, .serif {
    font-family: 'DM Serif Display', sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.2;
    margin-bottom: 1em;
}
.wide{
    letter-spacing: 0.05em;
}

h1 {
    font-size: 2.9em;
}
section {
  scroll-margin-top: 70px; /* Ajusta según la altura de tu navbar */
}
p{
    line-height: 1.8;
    text-align: justify;
}
#servicios p{
    line-height: 2;
}
.navbar-logo{
    letter-spacing: -0.1em;
}

.container{
    /*
    width: 90%;
    margin: 0 auto;
    max-width: 1068px;
    */
    width: min(90%, 1068px);
    margin-inline: auto;
}

.heading-black {
    padding-bottom: 50px;
    opacity: .98;
    color: #000;
    text-align: center;
}
.heading-title {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1;
    padding-bottom: 10px;
}
h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: .92;
}
h3{
    font-weight: 600;
}
h4{
    font-weight: 500;
    font-size: 1.6em;
}
#services{
    padding-bottom: 100px;
}
#services h3{
    font-size: 3rem;
    font-weight: 600;
    color:#444;
}
a:not(.button) {
    color: #fff;
}
a:not(.button):hover {
    color: var(--color-accent1);
}
.container75{
    width: 75%;
    margin: 0 auto;
}
.service-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 220px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    background-color: #000;
}
.service-link{
    font-size: 2em;
    text-align: center;
    color: #fff;
    padding: 1em 0;
}
.service-body {
    text-align: center;
    width: 305px;
    max-width: 100%;
    position: relative;
    opacity: .999;
    z-index: 2;
    margin: 35px auto auto auto;
    padding: 30px 30px 0px 30px;
    background-color: #f7f7f7;
}
.bg-white{
    background-color: #fff;
}
.bg-gray {
    background-color: #f7f7f7;
}
.bg-1{
    background: url(../images/hero2.webp) center center no-repeat;
    background-size: cover;
}
.bg-2{
    background: url(../images/service-1.webp) center center no-repeat;
    background-size: cover;
}
.bg-3{
    background: url(../images/service-2.webp) center center no-repeat;
    background-size: cover;
}
footer{
    background-color: #333;
    color: #ccc;
    padding: 1em;
    font-size: 1rem;
}

footer h4{
    font-size: .9em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.footer-menu{
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 1em;
}
.footer-menu li{
    margin-bottom: .2em;
}
footer a{
    text-decoration: none;
    color: var(--accent-color);
}
footer a:hover{
    color: #fff;
}
.social-links{
    font-size: 1.6em;
}
.social-links a:hover{
    color: #fff;
}
.jumbotron {
    padding: 4em 2em;
    margin-bottom: 2em;
    background-color: #e9ecef;
    border-radius: .3em;
}
.img-responsive{
    width: 100%;
}
.well{
    background: #ddd;
}
.well p, .well h4{
    padding-left: 20px;
    padding-right: 20px;
}
.well h4{
    margin-top: .3em;
}

@media (max-width: 768px){
    :root{
        --hero-height: 95vh;
    }
    footer{
        line-height: 1.2;
        font-size: 0.9em;
    }
}