/*
Theme Name: WP Emerge Starter Theme
Theme URI:
Author: atanasangelovdev
Author URI: https://wpemerge.com/
Description:
Tags:
Version:
License: GPL-2.0-only
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: app
Domain Path: /languages
*/

/*
Source SASS styles are located in resources/styles/.
The compiled bundles are in dist/styles/{xyz}.min.css.
The README.md file contains instructions on
how to get the build process up & running.

If you need to make a quick fix, feel free to add CSS
below this comment - it will override the bundled styles.
*/

.sticky {  }

.gallery-caption {  }

.bypostauthor {  }

/* Seção da newsletter */
.newsletter-section {
    background-color: #FFFFFF;
    color: #fff;
    padding: 1rem 0;
    position: relative;
    border-radius: 58px 58px 0px 0px;
    overflow: hidden;
    max-width: 100vw;
}

.newsletter-section .title {
    font-family: 'Inter', sans-serif;
    font-size: 35px;
    font-weight: 700;
    color: black;
    margin-bottom: 1rem;
    text-align: center;
}

.newsletter-section p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #727272;
    margin-bottom: 2rem;
    text-align: center;
}

.newsletter-section form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-section input[type="text"],
.newsletter-section input[type="email"] {
    padding: 0.5rem;
    width: 100%;
    max-width: 300px;
    border-radius: 0.5rem;
    border: none;
    box-sizing: border-box;
}

.newsletter-section button {
    background-color: #4a5cc4;
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 200px;
}

.newsletter-section button:hover {
    background-color: #3a4ab8;
}

.newsletter-section::before {
    content: url("/wp-content/uploads/2024/10/Vector-1.png");
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: auto;
    max-width: 100vw;
}

.nf-pass.field-wrap .nf-field-element:after{
    top: -8;
}

@media (max-width: 768px) {
    .newsletter-section {
        border: 1px solid #9B2154;
    }

    .newsletter-section .title {
        font-size: 28px;
    }

    .newsletter-section p {
        font-size: 16px;
    }

    .newsletter-section input[type="text"],
    .newsletter-section input[type="email"] {
        width: 100%;
    }

    .newsletter-section button {
        width: 100%;
    }

    .newsletter-section::before {
        width: 100px;
    }

    .newsletter-section::before {
        top: auto;
        bottom: 0;
        left: -24px;
        transform: translateX(-50%);
        width: 400px;
        z-index: 0;
    }
}

/* Estilização Pop-up */
.popup-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.popup-content {
    background-color: #9B2154;
    background-image: url("/wp-content/uploads/2024/10/Vector-1-1.png");
    background-size: auto;
    background-position: left;
    background-repeat: no-repeat;
    color: white;
    border-radius: 10px;
    width: 600px;
    max-width: 90%;
    height: 400px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.popup-content .title-popup {
    font-family: Helvetica, sans-serif;
    font-weight: 700;
    font-size: 61px;
    margin-bottom: 20px;
    color: white;
}

.popup-content p {
    font-family: Helvetica, sans-serif;
    font-weight: 400;
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
}

.popup-arrow {
    display: flex;
    justify-content: center;
}

.popup-arrow img {
    width: 40px;
    content: url("/wp-content/uploads/2024/10/Group-6612.png");
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: white;
    z-index: 1010;
}

.popup-close:hover {
    color: #ddd;
}

/* Estilização Menu */
.menu-spacing{
    padding-top: 1.625rem;
    padding-bottom: 1.625rem;
}

@media (max-width: 768px) {
    .menu-open .header .container{
        background-color: transparent !important;
    }
    .bg-shu-lightgrey{
        padding-left: 0.6rem;
        width: 100%;
        margin: 0 auto;
        clear: both;
    }

    .popup-content {
        width: 100%;
        height: auto;
        padding: 15px;
        background-size: cover;
    }

    .popup-content .title-popup {
        font-size: 40px;
    }

    .popup-content p {
        font-size: 18px;
    }
}

.contact-menu {
    background: #333;
    width: 100vw;
    overflow-x: hidden;
}

.sticky-nav-stuck {
    z-index: 120;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
}

.relative.flex.items-center {
    max-width: 100vw;
}

.container.flex {
    padding: 0 1rem;
    box-sizing: border-box;
}

.contact-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}


@media (max-width: 768px) {
    .contact-menu {
        padding: 1rem 0;
    }

    .contact-menu .container {
        max-width: 60%;
    }
}