* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #A69C94;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    /* remove o sublinhado */
    color: inherit;
    /* herda a cor do elemento pai */
}

a:visited {
    color: inherit;
    /* mantém a mesma cor mesmo após visitado */
}

/* 3 Divs Orgânicas Estáticas com Iluminação */
.organic-bg {
    position: fixed;
    opacity: 0.8;
}

.organic-shape-1 {
    opacity: 0.4;
    width: 600px;
    height: 400px;
    background: #71e9e91e;
    rotate: 180deg;
    top: -85%;
    left: 55%;
    border-radius: 42% 76% 41% 53%;
    filter: drop-shadow(0px 0px 20px rgb(255, 255, 255));
    z-index: -1;
    border: 5px solid #ffffff1e;
    outline: double;
}

.organic-shape-1::before {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.4);
}

.organic-shape-2 {
    opacity: 0.4;
    width: 700px;
    height: 700px;
    background: #71e9e91e;
    rotate: 60deg;
    bottom: 30%;
    right: 50%;
    border-radius: 118% 54% 102% 46%;
    filter: drop-shadow(0px 0px 50px rgba(255, 255, 255));
    z-index: -1;
    border: 5px solid #ffffff1e;
    outline: double;
}

.organic-shape-3 {
    opacity: 0.4;
    width: 535px;
    height: 800px;
    background: #71e9e91e;
    rotate: 90deg;
    top: -20%;
    left: 50%;
    border-radius: 40% 30% 40% 60%;
    filter: drop-shadow(0px 0px 40px rgba(255, 255, 255));
    z-index: -1;
    border: 5px solid #ffffff1e;
    outline: double;
    /* A69C94 */
}

/* Layout Principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header e Navegação */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 50px;
    background: #80786f;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin: 1%;
    position: fixed;
    z-index: 1;
    width: 98%;
    opacity: 0.9;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar img {
    height: 80px;
}

.list {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.nav-brand {
    display: contents;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(45deg, #A69C94, #F2C9C9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    width: 100%;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    margin-left: 5rem;
}

.nav-menu a:hover {
    color: #F2C9C9;
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #A0988E, #F2C9C9);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 40px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: #F2C9C9;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 107, 107, 0.4));
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.cta-button {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(45deg, #A69C94, #F2C9C9);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

/* Content Sections */
.content-section {
    padding: 100px 0;
    position: relative;
}

.content-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    background: #F2C9C9;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-section p {
    font-size: 1.2rem;
    text-align: center;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* btn-cards */
.pre-btn,
.nxt-btn,
img {
    height: 100%;
}

.pre-btn {
    margin-top: 180px;
    left: 0;
}

.nxt-btn {
    margin-top: 180px;
    right: 0;
}

.pre-btn,
.nxt-btn {
    border: none;
    width: 4vw;
    height: 10%;
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    background: #A69C94;
    cursor: pointer;
    z-index: 9;
    transition: all 0.3s ease;
}


.pre-btn:hover img,
.nxt-btn:hover img {
    opacity: 1;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

/* content-section-img */

.content-section-img {
    display: -webkit-inline-box;
    overflow-x: auto;
}

.content-section-img h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    background: #F2C9C9;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-section-img p {
    font-size: 1.2rem;
    text-align: center;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.services-grid-img {
    align-items: center;
    width: 1200px;
    display: -webkit-box;
    scrollbar-width: none;
    overflow-x: auto;
    gap: 30px;
    margin: 0 auto;
    padding: 50px 20px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.container-img {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* img-card Section */
.img-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    scroll-snap-align: center;
    border-radius: 20px;
    padding: 40px;
    width: auto;
    height: 500px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.img-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.img-card img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #F2C9C9;
    position: relative;
}

.service-card p {
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
}



/* Contact Section */
.contact {
    width: 100vw;
    display: grid;
    backdrop-filter: blur(4px);
    background: linear-gradient(0deg, #5b4236, #A69C94);
}

.contact .container {
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.container img {
    width: 25rem;
}

.contact-info {
    text-align: center;
    margin-top: 40px;
}

.contact-info p {
    font-size: 1.1rem;
    margin: 10px 0;
    color: #F2C9C9;
}

/* Footer */
.footer {
    background: linear-gradient(90deg, #26316a, #56388e, #2f7bb9);
    text-align: center;
    font-size: 15px;
    position: relative;
    opacity: 0.5;
}


@media (max-width: 768px) {
    .navbar {
        position: fixed;
        flex-direction: column;
        justify-content: flex-start;
        top: 0;
        width: 150px;
        height: 850px;
        background: #F2C9C9;
        opacity: .90;
        border-radius: 25px;
        clip-path: circle(40px at 48% 50px);
        transition: 1s;
        left: 2%;
    }

    .navbar.active {
        clip-path: circle(430px at 50% 50px);
        pointer-events: all;
        transition: 2s;
        left: 2%;
        transition: 1s;
        height: 420px;
    }

    .list {
        padding-left: 0px;
        display: contents;
    }

    .nav-menu {
        gap: 50px;
        padding: 1px 6px 0px 0px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .nav-menu a {
        font-size: 16px;
        margin-left: 0px;
    }

    .nav-brand:hover {
        scale: 1.1;
        transition: .3s;
    }

    .navbar img {
        height: 96px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    /* destaques */
    .services-grid-img {
        align-items: center;
        width: 100%;
        display: -webkit-box;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        overflow-x: auto;
        gap: 30px;
        margin: 0 auto;
        padding: 50px 20px;
    }

    .pre-btn,
    .nxt-btn {
        display: none;
    }

    /* Divs orgânicas ainda menores para mobile */
    .organic-shape-1,
    .organic-shape-2,
    .organic-shape-3 {
        width: 60%;
        height: 40%;
        left: 19%;
    }

    .contact .container {
        width: 100vw;
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 20px;
        align-items: center;
    }

    .container img {
        width: 20rem;
        height: auto;
    }

    .footer {
        font-size: 12px;
    }
}