@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=TikTok+Sans:opsz,wght@12..36,300..900&display=swap');

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    margin: 0;
    background-color: #191022;
    font-size: 1rem;
}

/* ===== HEADER RESPONSIVE ===== */

header {
    width: 100%;
    height: 5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 0.01rem solid #b4b4b44b;
    background-color: transparent;
}

.logo {
    width: 12rem;
    height: 5rem;

    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: auto;
    height: 4rem;
    object-fit: contain;
    object-position: left;
}

nav {
    width: auto;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-desktop {

    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-mobile {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.4rem;
}

.hamburger span {
    width: 1.8rem;
    height: 0.2rem;
    background-color: #ffffff;
    border-radius: 0.1rem;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.7rem);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.3rem, -0.65rem);
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 5rem;
    left: 0;
    width: 100%;
    background-color: #0f0a15 !important;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    z-index: 99999 !important;
    opacity: 1 !important;
}

.nav-mobile.active {
    display: flex !important;
}



.menu-links {
    width: 40%;
    height: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.3rem;
    font-family: 'Roboto Condensed', sans-serif;
    white-space: nowrap;
}

#wavemb{
    display: none;
}

.action {
    width: auto;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.action-btn {
    width: auto;
    padding: 0.75rem 1.5rem;
    height: 3rem;
    border: none;
    border-radius: 0.5rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.9rem;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #7F13EC;
    white-space: nowrap;
}

.action-btn:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 5px 15px rgba(127, 19, 236, 0.4);
}

/* ===== RESPONSIVE TABLET (768px - 1024px) ===== */

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }

    header {
        height: 4.5rem;
        padding: 0 0.75rem;
    }

    .logo {
        width: 12%;
    }

    nav {
        width: 65%;
    }

    .menu-links {
        gap: 0.5rem;
    }

    li a {
        font-size: 0.9rem;
    }

    .action-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}


.apresentacao {
    width: 100%;
    height: 45rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    gap: 0;
}

.foto {
    width: 60%;
    height: 45rem;

    background-color: red;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.foto img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.texto {
    width: 40%;
    height: 100%;
    padding-left: 2rem;
    background-color: #7F13EC;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card {
    width: 10rem;
    height: 2rem;

    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    color: white;

    border-radius: 1rem;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 0rem;

    background-color: #5c13568a;
}

.texto h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: #ffffff;

    width: 90%;

    font-weight: 700;

    margin-bottom: 2rem;
}

.subtt {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;

    width: 90%;

    font-weight: 400;
}

.meiar {
    width: 26rem;
    height: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

}

.agenda {
    width: 12rem;
    height: 3.5rem;

    border: none;
    border-radius: 0.5rem;

    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #7F13EC;

    cursor: pointer;

    transition: all 0.2s ease;
}



.portifólio {
    width: 12rem;
    height: 3.5rem;

    border: 0.1rem solid white;
    border-radius: 0.5rem;

    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;

    cursor: pointer;

    transition: all 0.2s ease;

    background-color: transparent;
}

.agenda:hover,
.portifólio:hover,
.action-btn:hover,
.cards-vertical:hover {
    transform: translateY(-0.3rem);
}

#processo {
    width: 90%;
    height: 45rem;

    border-bottom: 0.1rem solid #b4b4b42d;
    margin: auto;
}

#secoes {
    width: 100%;
    height: auto;

    text-align: center;

    color: #7F13EC;

    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;

    letter-spacing: 0.3rem;

    margin-top: 5rem;
}

#processo h1 {
    width: 100%;

    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: white;

    text-align: center;

    margin-top: 1rem;
}

#tt {
    width: 60%;
    margin: auto;
    margin-top: 1rem;

    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.5rem;
    color: #8A98AC;
    text-align: center;
}

.triple-cards {
    width: 100%;
    height: auto;

    display: flex;
    justify-content: space-around;
    align-items: center;

    margin-top: 5rem;
}

.cards {
    width: 30%;
    height: 22rem;

    border: 0.1rem solid #b4b4b42d;
    border-radius: 1rem;

    background-color: #211C27;
}

.icon-cards {
    width: 5rem;
    height: 5rem;

    margin: auto;
    margin-top: 2rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 0.5rem;

    background-color: #7f13ec31;
}

.icon-cards img {
    width: auto;
    height: 60%;

    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.cards h2 {
    width: 100%;
    text-align: center;

    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.3rem;
    color: white;
}

.cards p {
    width: 80%;
    margin: auto;
    margin-top: 1rem;

    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.5rem;
    color: #8A98AC;
    text-align: center;
}

#portifolio {
    width: 90%;
    height: 45rem;

    border-bottom: 0.1rem solid #b4b4b42d;
    margin: auto;
}

.titulo-portifolio {
    width: 100%;
    height: auto;

    text-align: center;

    color: #7F13EC;

    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;

    letter-spacing: 0.3rem;

    margin-top: 5rem;
}

.titulo-portifolio h1 {
    width: 100%;

    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: white;

    text-align: center;

    letter-spacing: 0.1rem;

    margin-top: 1rem;
}

.cards-vertical {
    width: 24rem;
    height: 30rem;

    border: 0.2rem solid transparent;
    border-radius: 1rem;

    object-fit: cover;
    object-position: center;

    transition: all 0.3s ease;
}

.cards-vertical:hover {
    border: 0.2rem solid #7f13ec62;
}

.cards-vertical img {
    width: 100%;
    height: 100%;

    border-radius: 1rem;

    object-fit: cover;
    object-position: center;

}

#localizacao {
    width: 100%;
    height: 45rem;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #140C1B;
    gap: 0;
}

.mapa {
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.square {
    width: 32rem;
    height: 32rem;
    border-radius: 1rem;
    position: relative;
    transform: rotate(6deg);
    backface-visibility: hidden;
    will-change: transform;
    overflow: hidden;
    clip-path: inset(0 round 1rem);
}

.square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0.8rem;
}

.square::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #7b2cff;
    opacity: 0.65;
    mix-blend-mode: multiply;
    pointer-events: none;
    border-radius: inherit;
}

.textos-localizacao {
    width: 40%;
    height: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.textos-localizacao h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    color: #ffffff;
    width: 90%;
    font-weight: 700;
    margin: 0;
}

.textos-localizacao p {
    text-align: left;
    margin: 0;
}

.footer {
    background: radial-gradient(circle at top, #1a0f2b, #0d0618);
    color: #cfc9e3;
    padding: 3rem 1.5rem 2rem;
    font-family: system-ui, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
    gap: 3rem;
}

.footer h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b6aecf;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 0.6rem;
}

.footer ul li a {
    color: #b6aecf;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer ul li a:hover {
    color: #ffffff;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.logo-icon {
    width: 18px;
    height: 18px;
    background: #7b2cff;
    border-radius: 4px;
}

.social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.social a {
    width: 36px;
    height: 36px;
    background: #1f1533;
    border-radius: 50%;
    display: inline-block;
}

.newsletter form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.newsletter input {
    padding: 0.7rem 0.9rem;
    border-radius: 0.5rem;
    border: none;
    background: #1f1533;
    color: #fff;
}

.newsletter input::placeholder {
    color: #8f86b8;
}

.newsletter button {
    padding: 0.7rem;
    border-radius: 0.5rem;
    border: none;
    background: linear-gradient(135deg, #7b2cff, #9f5bff);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.newsletter button:hover {
    filter: brightness(1.1);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.8rem;
    color: #8f86b8;
}

/* ===== PORTFOLIO SECTION ===== */

.portfolio-section {
    width: 90%;
    margin: auto;
    margin-top: 5rem;
    margin-bottom: 2rem;
    max-width: 100%;
    background-color: #191022;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 4rem;
}

.portfolio-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: auto;
    line-height: 1.2;

    width: 70%;
}

.portfolio-title .highlight {
    color: #7F13EC;
}

.portfolio-subtitle {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    color: #b0b0b0;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Category Filters */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 2rem;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    border-color: #7F13EC;
    color: #7F13EC;
}

.category-btn.active {
    background-color: #7F13EC;
    border-color: #7F13EC;
    color: #ffffff;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-item {
    position: relative;
    height: 300px;
    border-radius: 1rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.portfolio-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(127, 19, 236, 0.3);
}

.portfolio-item:nth-child(2),
.portfolio-item:nth-child(5) {
    grid-column: span 1;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(127, 19, 236, 0.15), rgba(127, 19, 236, 0.05));
    border: 1px solid rgba(127, 19, 236, 0.3);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.newsletter-section p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    color: #b0b0b0;
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(127, 19, 236, 0.5);
    border-radius: 0.5rem;
    color: #ffffff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #8f86b8;
}

.newsletter-form input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #7F13EC;
    box-shadow: 0 0 15px rgba(127, 19, 236, 0.3);
}

.subscribe-btn {
    padding: 0.75rem 2.5rem;
    background-color: #7F13EC;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background-color: #6d0ec3;
    box-shadow: 0 5px 20px rgba(127, 19, 236, 0.4);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .portfolio-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 3rem 1.5rem;
    }

    .portfolio-header {
        margin-bottom: 3rem;
    }

    .portfolio-title {
        font-size: 2rem;
    }

    .category-filters {
        gap: 1rem;
    }

    .category-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .portfolio-item {
        height: 250px;
    }

    .newsletter-section {
        padding: 2rem 1.5rem;
    }

    .newsletter-section h2 {
        font-size: 1.8rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .subscribe-btn {
        width: 100%;
    }
}

/* ===== LOCATIONS SECTION ===== */

.locations-section {
    width: 90%;
    margin: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
    max-width: 100%;
    background-color: #191022;
}

.locations-header {
    text-align: center;
    margin-bottom: 4rem;
}

.locations-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: auto;
    margin-top: 4rem;
    line-height: 1.2;

    width: 70%;
}

.locations-title .highlight {
    color: #7F13EC;
}

.locations-subtitle {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    color: #b0b0b0;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.location-card {
    position: relative;
    height: 300px;
    border-radius: 1rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.location-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(127, 19, 236, 0.3);
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-card:hover .location-overlay {
    opacity: 1;
}

.location-overlay h3 {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.location-overlay p {
    color: #e0e0e0;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

/* Locations Info Section */
.locations-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.info-card {
    background: linear-gradient(135deg, rgba(127, 19, 236, 0.1), rgba(127, 19, 236, 0.05));
    border: 1px solid rgba(127, 19, 236, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.info-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.info-card p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .locations-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .locations-section {
        padding: 3rem 1.5rem;
    }

    .locations-header {
        margin-bottom: 3rem;
    }

    .locations-title {
        font-size: 2rem;
    }

    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .location-card {
        height: 250px;
    }

    .locations-info {
        grid-template-columns: 1fr;
    }
}

/* ===== BOOKING SECTION ===== */

.booking-section {
    width: 90%;
    margin: auto;
    margin-top: 5rem;
    margin-bottom: 2rem;
    max-width: 100%;
    background-color: #191022;
}

.booking-header {
    text-align: center;
    margin-bottom: 4rem;
}

.booking-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: auto;
    line-height: 1.2;
    width: 70%;
}

.booking-title .highlight {
    color: #7F13EC;
}

.booking-subtitle {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    color: #b0b0b0;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    margin-top: 1rem;
}

/* Packages Section */
.packages-section {
    margin-bottom: 5rem;
}

.packages-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: linear-gradient(135deg, rgba(127, 19, 236, 0.08), rgba(127, 19, 236, 0.02));
    border: 1px solid rgba(127, 19, 236, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: #7F13EC;
    box-shadow: 0 10px 30px rgba(127, 19, 236, 0.2);
}

.package-card.popular {
    border-color: #7F13EC;
    background: linear-gradient(135deg, rgba(127, 19, 236, 0.15), rgba(127, 19, 236, 0.05));
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #7F13EC;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.package-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #7F13EC;
    margin: 0.5rem 0 1.5rem 0;
    font-weight: 700;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.package-features li {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 0.8rem;
}

.select-package {
    width: 100%;
    padding: 0.75rem;
    background-color: transparent;
    color: #7F13EC;
    border: 1px solid #7F13EC;
    border-radius: 0.5rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-package:hover {
    background-color: #7F13EC;
    color: #ffffff;
}

/* Booking Container */
.booking-container {
    margin-bottom: 5rem;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, rgba(127, 19, 236, 0.1), rgba(127, 19, 236, 0.05));
    border: 1px solid rgba(127, 19, 236, 0.3);
    border-radius: 1.5rem;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.form-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.selected-package-display {
    background-color: rgba(127, 19, 236, 0.2);
    border-left: 3px solid #7F13EC;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.selected-package-display p {
    font-family: 'Roboto Condensed', sans-serif;
    color: #ffffff;
    margin: 0;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(127, 19, 236, 0.5);
    border-radius: 0.5rem;
    color: #ffffff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8f86b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #7F13EC;
    box-shadow: 0 0 15px rgba(127, 19, 236, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.form-group.checkbox input {
    width: auto;
    margin: 0;
}

.form-group.checkbox label {
    margin: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

.submit-btn {
    padding: 1rem;
    background-color: #7F13EC;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #6d0ec3;
    box-shadow: 0 5px 20px rgba(127, 19, 236, 0.4);
    transform: translateY(-2px);
}

/* Process Section */
.process-section {
    margin-top: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #7F13EC;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.step p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.9rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .booking-title {
        font-size: 2.5rem;
        width: 100%;
    }

    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .package-card.popular {
        transform: scale(1);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .booking-section {
        margin-top: 2rem;
    }

    .booking-title {
        font-size: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.popular {
        transform: scale(1);
    }

    .form-section {
        padding: 2rem 1.5rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* ===== RESPONSIVE MOBILE (max-width: 767px) ===== */

@media (max-width: 767px) {
    html {
        font-size: 15px;
    }

    /* Header Mobile */
    header {
        height: 3.5rem;
        padding: 0 0.75rem;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    #wavemb{
        position: absolute;

        top: -43rem;

        display: block;

        transform: scaleX(-1);
    }

    .hamburger {
        display: flex;
        order: 2;
    }

    .logo {
        width: 10%;
        min-width: 35px;
        order: 1;
    }

    .nav-desktop {
        display: none !important;
    }

    .nav-mobile {
        display: none;
        position: fixed !important;
        top: 3.5rem !important;
        left: 0 !important;
        width: 100vw !important;
        background-color: #191022 !important;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        z-index: 99999;
        height: auto;
    }

    .nav-mobile.active {
        display: flex !important;
    }

    .menu-links {
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0 2rem 0;
        margin: 0;
    }

    .menu-links li {
        width: 100%;
        padding: 1rem 1.5rem;
        border-bottom: none;
        list-style: none;
    }

    li a {
        font-size: 1.05rem;
        font-weight: 500;
    }

    .menu-btn {
        padding: 0.5rem 1.5rem !important;
        margin-top: 0.5rem;
    }

    .action-btn-mobile {
        width: 100%;
        padding: 0.8rem 1.5rem;
        height: auto;
        border: none;
        border-radius: 0.5rem;
        font-family: 'Roboto Condensed', sans-serif;
        font-size: 1rem;
        color: white;
        cursor: pointer;
        transition: all 0.2s ease;
        background-color: #7F13EC;
        white-space: nowrap;
    }

    .action-btn-mobile:hover {
        transform: translateY(-0.2rem);
        box-shadow: 0 5px 15px rgba(127, 19, 236, 0.4);
    }

    .action {
        width: 20%;
        order: 3;
        display: none;
    }

    .action-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        height: auto;
        white-space: normal;
    }

    /* General */
    .apresentacao {
        width: 100%;
        height: 20rem;
        flex-direction: column;
        margin-top: 0;
        gap: 0;
        
        padding: 0;
    }

    .foto {
        width: 100%;
        height: 25rem;
    }
    

    .texto {
        width: 100%;
        height: auto;
        padding: 1.5rem;
        background-color: #7F13EC;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        margin-top: 0;
    }

    .card {
        width: 100%;
        height: auto;
        font-size: 0.95rem;
        padding: 0.5rem;
        margin-top: 0;
        margin-bottom: 1rem;
    }

    .texto h1 {
        font-size: 2.2rem;
        width: 100%;

        text-align: center;
        margin-bottom: 1rem;
    }

    .subtt {
        font-size: 1.2rem;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .meiar {
        width: 100%;
        flex-direction: row;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .agenda, .portifólio {
        flex: 1;
        height: 2.8rem;
        font-size: 1rem;
    }

    #processo {
        width: 95%;
        height: auto;
        margin: auto;
    }

    #secoes {
        font-size: 1.1rem;
        margin-top: 2rem;
    }

    #processo h1 {
        font-size: 2rem;
        margin-top: 1rem;
    }

    #tt {
        width: 95%;
        font-size: 1.15rem;
    }

    .triple-cards {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .cards {
        width: 100%;
        height: auto;
        padding: 1.5rem;
    }

    .cards h2 {
        font-size: 1.4rem;
    }

    .cards p {
        font-size: 1rem;
    }

    #portifolio {
        width: 95%;
        height: auto;
        margin: auto;
    }

    .titulo-portifolio {
        margin-top: 2rem;
    }

    .titulo-portifolio h1 {
        font-size: 2rem;
        margin-top: 0.5rem;
    }

    .cards-vertical {
        width: 90vw;
        height: 50vw;
        max-width: 100%;
    }

    #localizacao {
        width: 100%;
        height: auto;
        flex-direction: column;
        margin: auto;
        padding: 1rem 0;
    }

    .mapa {
        width: 100%;
        height: auto;
        padding: 1rem;
    }

    .square {
        width: 90vw;
        height: 90vw;
        max-width: 300px;
        max-height: 300px;
        transform: rotate(0deg);
    }

    .textos-localizacao {
        width: 100%;
        height: auto;
        padding: 1rem;
        text-align: center;
    }

    .textos-localizacao h1 {
        font-size: 2rem;
        width: 100%;
        margin: 0.5rem 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .footer h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .footer p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .footer ul li {
        margin-bottom: 0.5rem;
    }

    .footer ul li a {
        font-size: 0.95rem;
    }

    .newsletter input {
        padding: 0.65rem 0.8rem;
        font-size: 0.95rem;
    }

    .newsletter button {
        padding: 0.65rem;
        font-size: 0.95rem;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1rem;
        font-size: 0.85rem;
    }

    /* Portfolio Section Mobile */
    .portfolio-section {
        width: 95%;
        margin-top: 2rem;
    }

    .portfolio-title {
        font-size: 1.8rem;
        width: 100%;
        margin: 0;
    }

    .portfolio-subtitle {
        font-size: 1rem;
        margin-top: 0.75rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .portfolio-item {
        height: 250px;
    }

    .newsletter-section {
        padding: 1.5rem 1rem;
        max-width: 100%;
    }

    .newsletter-section h2 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .newsletter-section p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .newsletter-form {
        gap: 0.5rem;
    }

    .newsletter-form input {
        min-width: 100%;
        padding: 0.7rem;
        font-size: 1rem;
    }

    .subscribe-btn {
        width: 100%;
        padding: 0.75rem;
        font-size: 1rem;
    }

    /* Locations Section Mobile */
    .locations-section {
        width: 95%;
        margin-top: 2rem;
    }

    .locations-title {
        font-size: 1.8rem;
        width: 100%;
        margin: auto;
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }

    .locations-subtitle {
        font-size: 1rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .location-card {
        height: 250px;
    }

    .location-overlay h3 {
        font-size: 1.3rem;
    }

    .location-overlay p {
        font-size: 1rem;
    }

    .locations-info {
        gap: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-card h3 {
        font-size: 1.3rem;
    }

    .info-card p {
        font-size: 1rem;
    }

    /* Booking Section Mobile */
    .booking-section {
        width: 95%;
        margin-top: 2rem;
    }

    .booking-title {
        font-size: 1.8rem;
        width: 100%;
        margin: auto;
    }

    .booking-subtitle {
        font-size: 1rem;
        margin-top: 0.75rem;
    }

    .packages-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .package-card {
        padding: 1.5rem;
    }

    .package-card.popular {
        transform: scale(1);
    }

    .package-icon {
        font-size: 3rem;
    }

    .package-card h3 {
        font-size: 1.3rem;
    }

    .price {
        font-size: 1.8rem;
    }

    .package-features li {
        font-size: 1rem;
    }

    .select-package {
        font-size: 1rem;
        padding: 0.75rem;
    }

    .form-section {
        padding: 1.5rem;
        margin: 2rem auto;
    }

    .form-section h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 1rem;
    }

    .submit-btn {
        padding: 0.9rem;
        font-size: 1.1rem;
    }

    .process-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .step h3 {
        font-size: 1.2rem;
    }

    .step p {
        font-size: 1rem;
    }

    /* Category Filters Mobile */
    .category-filters {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .category-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }
}

/* ===== RESPONSIVE SMALL MOBILE (max-width: 480px) ===== */

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    header {
        height: 3rem;
    }

    .logo {
        width: 8%;
        min-width: 30px;
    }

    .hamburger span {
        width: 1.5rem;
        height: 0.18rem;
    }

    .action-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        height: auto;
    }

    .apresentacao {
        height: auto;
        padding: 0;
        margin-top: 0;
    }

    .foto {
        height: 7rem;
    }

    .texto {
        padding: 1rem;
    }

    .card {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .texto h1 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .subtt {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .meiar {
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .agenda, .portifólio {
        font-size: 0.95rem;
        height: 2.4rem;
    }

    #processo h1 {
        font-size: 1.6rem;
    }

    #tt {
        font-size: 1rem;
    }

    .cards {
        padding: 1rem;
    }

    .cards h2 {
        font-size: 1.2rem;
    }

    .cards p {
        font-size: 0.9rem;
    }

    .icon-cards {
        width: 3.5rem;
        height: 3.5rem;
    }

    .square {
        width: 80vw;
        height: 80vw;
    }

    .textos-localizacao h1 {
        font-size: 1.6rem;
    }

    .portfolio-title {
        font-size: 1.5rem;
    }

    .newsletter-section {
        padding: 1rem;
    }

    .newsletter-section h2 {
        font-size: 1.5rem;
    }

    .locations-title {
        font-size: 1.5rem;
    }

    .booking-title {
        font-size: 1.5rem;
    }

    .packages-section h2 {
        font-size: 1.5rem;
    }

    .form-section {
        padding: 1rem;
    }

    .footer-container {
        padding: 0.5rem;
        gap: 1.2rem;
    }

    .footer h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .footer p {
        font-size: 0.9rem;
    }

    .footer ul li a {
        font-size: 0.9rem;
    }
}