:root {
    --floating-button-height: 80px;
}


/* Estilos Generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

/* Banner Principal */
.banner {
    position: relative;
    min-height: 100vh;
    background: url(./../assets/images/main.webp) no-repeat center center fixed;
    background-size: cover;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    font-family: 'Arial', sans-serif;
    gap: 30px;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.708); /* Oscurecer con un color negro semitransparente */
    z-index: 1;
}

.banner-main-image{
  z-index: 2;
}

.banner-main-image img{
    width: 400px;
}

.banner-content {
    text-align: center;
    max-width: 600px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner h1 {
    /*font-size: 2.8rem;
    margin-bottom: 10px;
    font-weight: 700;*/
    font-weight: bold;
     width: fit-content;
    
        font-family: "Lovers Quarrel", serif;
        font-style: normal;
        font-size: 7rem;
        text-transform: lowercase;
        line-height: 0.5;background: rgb(203,0,0);background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(75, 255, 234) 100%);-webkit-background-clip: text;
         -webkit-text-fill-color: transparent;
}

.banner p {
    font-size: 1.2em;
    margin-top: 10px;
    font-weight: 300;
}

/* Sección de Productos */
.products {
    background-color: #1d4a4e;
    background: rgb(218,223,255);
background: linear-gradient(3deg, rgba(218,223,255,1) 0%, rgba(204,255,255,1) 100%);
    padding: 50px 20px;
    text-align: center;
}

.products .content {
    max-width: 900px;
    margin: 0 auto;
}

.content p{
    text-align: justify;
}

.products h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #000000;
}

.products p {
    font-size: 1.2em;
    color: #000000;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: #e1d9ff;
    color: rgb(0, 0, 0);
    padding: 20px;
    text-align: center;
    font-size: 1em;
}

footer a{
    color: rgb(2, 2, 2);
}

/* Efecto Parallax */
.banner {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}


.first_section_number_container {
    z-index: 2;
    background-color: white;
    color: black;
    padding: 10px;
    border-radius: 10px;
    text-align: left;
}

.first_section_number_container a {
    text-decoration: none;
    font-size: 2rem;
    color: #267504;
}

.first_section_number_container p{
    margin-top: 0;
}


 /* FLOATING BUTTONS */


 .floating_buttons_container{
    display: flex;
    flex-direction: row;
    position: fixed;
    bottom: -1px;
    height: var(--floating-button-height);
    width: 100vw;
    z-index: 6;
}

.floating_buttons_container div{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    text-align: center;
}

.floating_buttons_container p{
    font-size: 1.3rem;
}


.floating_buttons_gmail{
    background-color: rgb(164, 39, 39);
    color: white;
    border-right: 1px solid black;
}

.floating_buttons_whatsapp{
    background-color: rgb(3, 99, 3);
    color: white;
}


.spacer{
    height: var(--floating-button-height);
    display: none;
}

.floating_buttons_container{
    display: none;
}

.btn_subtitle{
    font-size: 1rem !important;
 }

@media screen and (max-width: 530px){

    .floating_buttons_container{
        display: flex;
    }

    .banner h1{
        width: 100%;
        margin: 10px;
    }

    .banner img{
        width: 100%;
    }

    .spacer{
        display: inline-block;
    }

 }

        .simple-button {
            background-color: #25D366;  /* Verde WhatsApp */
            color: #fff;
            font-size: 18px;
            padding: 15px 30px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            text-align: center;
            z-index: 2;
        }

        .simple-button span{
            font-size: 25px;
        }

        .rounded-button {
            margin-top: 30px;
            background-color: #25D366;
            color: #fff;
            font-size: 18px;
            padding: 10px 25px;
            border-radius: 30px;
            text-decoration: none;
            text-align: center;
            font-weight: bold;
            display: inline-block;
            z-index: 2;
        }

        .rounded-button span {
            display: block;
            font-size: 25px;
        }