* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/*-----FONTS-----*/
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2'),
        url('../fonts/Inter-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-Light';
    src: url('../fonts/Inter-Light.woff2') format('woff2'),
        url('../fonts/Inter-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-Bold';
    src: url('../fonts/Inter-Bold.woff2') format('woff2'),
        url('../fonts/Inter-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-ExtraLight';
    src: url('../fonts/Inter-ExtraLight.woff2') format('woff2'),
        url('../fonts/Inter-ExtraLight.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'LFTEticaSheriff-Regular';
    src: url('../fonts/LFTEticaSheriff-Regular.woff2') format('woff2'),
        url('../fonts/LFTEticaSheriff-Regular.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}


@font-face {
    font-family: 'LFTEticaSheriff-SemiBd';
    src: url('../fonts/LFTEticaSheriff-SemiBd.woff2') format('woff2'),
        url('../fonts/LFTEticaSheriff-SemiBd.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'LFTEticaSheriff-Bold';
    src: url('../fonts/LFTEticaSheriff-Bold.woff2') format('woff2'),
        url('../fonts/LFTEticaSheriff-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --verde: #1F9562;
    --verde2: #024C36;
    --dorado: #EFB810;
    --gris: #8E8E93;
    --max-width: 1200px;

    /* Fuentes */
    --font-title: 'LFTEticaSheriff-Bold', serif;
    --font-subtitle1: 'LFTEticaSheriff-SemiBd', serif;
    --font-subtitle2: 'LFTEticaSheriff-Regular', serif;

    --font-paragraph: 'Inter', sans-serif;

    /* Tamaños de fuente */
    --font-size-title: 60px;
    --font-size-subtitle: 35px;
    --font-size-paragraph: 20px;
}


body {
    font-family: 'Inter', sans-serif;
}

/*SELECCIÓN DE TEXTO*/
/* Cambiar color de selección de texto */
::selection {
    background: var(--verde);
    color: white;
}

/* Para compatibilidad con Firefox */
::-moz-selection {
    background: var(--verde);
    color: white;
}

/**************************
      SOSTENIBILIDAD
***************************/
.sostenibilidad-section {
    width: 100%;
    padding: 130px 20px;
    display: flex;
    justify-content: center;
}

.sostenibilidad-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Textos */
.sostenibilidad-content h2 {
    font-family: var(--font-title);
    color: var(--verde);
    font-size: 50px;
    margin-bottom: 10px;
}

.sostenibilidad-content h3 {
    font-family: var(--font-subtitle2);
    color: var(--dorado);
    font-size: 30px;
    margin-bottom: 30px;
}

.sostenibilidad-content p {
    font-family: var(--font-subtitle2);
    color: var(--gris);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 auto 20px;
}

/* Imagen */
.reciclate-wrapper {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.reciclate-img {
    padding-top: 40px;
    max-width: 300px;
    width: 100%;
    transition: transform 0.4s ease;
}

.reciclate-img:hover {
    transform: scale(1.1);
}

/* Botón */
.button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-gold {
    background-color: var(--dorado);
    color: white;
    text-decoration: none;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
}

strong {
    font-family: LFTEticaSheriff-Bold;
    font-weight: bold !important; /* This will force it to be bold */
}

.btn-gold:hover {
    background-color: var(--verde);
}

/* Responsive */
@media (max-width: 768px) {
    .sostenibilidad-content h2 {
        font-size: 1.5rem;
    }

    .sostenibilidad-content h3 {
        font-size: 1.1rem;
    }

    .reciclate-img {
        max-width: 220px;
    }

    .sostenibilidad-content p {
        font-size: 0.95rem;
    }
}

/* Animaciones */
.animate-up {
    opacity: 0;
    transform: translateY(50px);
    animation: riseUp 0.8s ease-out forwards;
}

.animate-up:nth-of-type(1) {
    animation-delay: 0.1s;
}

.animate-up:nth-of-type(2) {
    animation-delay: 0.3s;
}

.animate-up:nth-of-type(3) {
    animation-delay: 0.5s;
}

.animate-up:nth-of-type(4) {
    animation-delay: 0.7s;
}

.animate-up:nth-of-type(5) {
    animation-delay: 0.9s;
}

.animate-up:nth-of-type(6) {
    animation-delay: 1.1s;
}

.animate-up:nth-of-type(7) {
    animation-delay: 1.3s;
}

@keyframes riseUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}