/* 1. FUENTES */
@font-face {
    font-family: 'AmericanTypewriter';
    src: url('../fonts/AmericanTypewriter.woff2') format('truetype');
    font-weight: normal;
    font-weight: :600;
    font-style: normal;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 19px; 
    line-height: 1.4; 
    background-color: #ffffff;
    color: #203731;
}

li{list-style: none;}
.lista{color:red;}

.pt10{margin-top: 10px;}
.pt20{margin-top: 20px;}

.row{padding-top: 40px; padding-bottom: 40px}

/* 2. COLORES DE MARCA */
.verde { color: #1B4D4D; }
.marron { color: #6D4C41; }
.bg-beige { background-color: #F9F7F2; }

/* 3. TIPOGRAFÍAS ESPECÍFICAS */
.julius {
    font-family: 'Julius Sans One', sans-serif;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    -webkit-text-stroke: 2px #1B4D4D; /* Grosor refinado */
    text-shadow: 0.3px 0.3px 0px #1B4D4D;
    margin-bottom: 0px;
}

.american {
    font-family: 'AmericanTypewriter', serif;
    font-weight: 600;
    text-align: center;
    font-size: 30px;
}

.destacar{text-transform: uppercase;
font-weight: bold;}
/* TRUCO SEMI-BOLD PARA AMERICAN */
.semi-bold {
    font-weight: normal;
    text-shadow: 0.2px 0 0 currentColor;
}

.bold{font-weight: 600;}
.bolder{font-weight: 800;}

/* 4. ESTRUCTURA */
.container {
    /*border-bottom: 5px solid #6D4C41;  7px era demasiado tosco, 2px es elegante */
    padding-top: 40px;
    padding-bottom: 40px;
}

.container:last-of-type { border-bottom: none; }

#hero {
    background-image: url('../img/fondo.svg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Fixed suele dar error en algunos móviles */
}

#regalo, #corazon { background-color: #F9F7F2; }

/* 5. RESPONSIVE */
@media (max-width: 767px) {
    body { font-size: 19px; }
    .container { padding-left: 20px; padding-right: 20px; }
}