
/* ===== HEADER DEFINITIVO ===== */

.header{
    width: min(1180px, calc(100% - 90px)) !important;

    margin-left: auto !important;
    margin-right: auto !important;

    height: 88px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    position: relative !important;
    z-index: 20 !important;
}

.logo{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.logo img{
    width: 140px !important;
    display: block !important;
}

nav{
    display: flex !important;
    align-items: center !important;
    gap: 70px !important;
}

nav a{
    color: #ffacbc !important;
    text-decoration: none !important;
    font-size: 16px !important;
}

/* ===== MOBILE ===== */

@media(max-width: 900px){

    .header{
        width: calc(100% - 40px) !important;
        height: auto !important;

        padding: 24px 0 !important;

        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 24px !important;
    }

    nav{
        gap: 28px !important;
        flex-wrap: wrap !important;
    }

}




@media(max-width: 900px){

    

    nav{
        gap: 28px;
        flex-wrap: wrap;
    }

}




@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: #1d1d1b;
    font-family: 'Inter', Arial, sans-serif;
    color: #ffacbc;
}

.hero-section {
    width: 100%;
    min-height: 100vh;
    background: #1d1d1b;
    padding: 34px 8.8vw 70px;
}



.header nav {
    display: flex;
    align-items: center;
    gap: clamp(42px, 8vw, 135px);
}

.header a {
    color: rgba(255, 172, 188, 0.68);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.03em;
    transition: 0.3s ease;
}

.header a:hover {
    color: #ffacbc;
}

.hero-content {
    padding-top: 70px;
}

.year,
.hero-content h1 {
    font-size: clamp(54px, 7vw, 100px);
    line-height: 1.1;
    letter-spacing: -0.065em;
    font-weight: 300;
}

.year {
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 0;
}

.hero-content h1 {
    color: rgba(255, 172, 188, 0.78);
    max-width: 1200px;
}

.hero-content h1 span {
    color: rgba(255, 255, 255, 0.90);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 26px 24px 60px;
    }

    

    .header nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .header a {
        font-size: 14px;
    }

    .hero-content {
        padding-top: 56px;
    }

    .hero-content h1{
        font-size: 44px;
        line-height: 1.05;
        letter-spacing: -0.05em;
    }
}

@media (max-width: 430px) {
    .hero-section {
        padding: 22px 18px 50px;
    }

    

    .menu-right {
        margin-top: 2px;
    }
}


/* ===== AJUSTE FINAL DA LOGO ===== */
/* LOGO MAIOR */
.header .logo{
    max-width: none !important;
    overflow: visible !important;
}

.header .logo img{
    width: 230px !important;
    max-width: 230px !important;
    height: auto !important;
     margin-left: -40px !important;
}

.logo a,
.logo span,
.logo p{
    font-size: 24px !important;
    line-height: 1 !important;
    letter-spacing: -0.04em !important;
    color: #ffacbc !important;
    text-decoration: none !important;
    display: block !important;
    white-space: nowrap !important;
}

/* impede qualquer título grande de afetar a logo */
.header .logo,
.header .logo *{
    transform: none !important;
}



/* =========================
PÁGINA CONTATO
========================= */

.contact-page{
    width: 100%;
    min-height: calc(100vh - 90px);
    padding: 90px 8vw;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 70px;
    position: relative;
    overflow: hidden;
}

.contact-page::before{
    content: "";
    position: absolute;
    right: -180px;
    top: 10%;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: #ffacbc;
    filter: blur(150px);
    opacity: 0.16;
    pointer-events: none;
}

.contact-left,
.contact-box{
    position: relative;
    z-index: 2;
}

.contact-tag{
    display: inline-block;
    margin-bottom: 24px;
    color: #ffacbc;
    font-size: 15px;
}

.contact-left h1{
    max-width: 900px;
    color: #ffacbc;
    font-size: clamp(50px, 6.4vw, 95px);
    line-height: 1.05;
    letter-spacing: -0.065em;
    font-weight: 300;
}

.contact-left p{
    max-width: 540px;
    margin-top: 28px;
    color: rgba(255,255,255,0.72);
    font-size: 18px;
    line-height: 1.7;
}

.contact-box{
    width: 100%;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(255,172,188,0.22);
    background: linear-gradient(
        145deg,
        rgba(255,172,188,0.14),
        rgba(255,255,255,0.03)
    );
    backdrop-filter: blur(18px);
}

.contact-box-title{
    display: block;
    margin-bottom: 22px;
    color: #ffacbc;
    font-size: 14px;
}

.contact-button{
    width: 100%;
    min-height: 64px;
    padding: 0 22px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 999px;
    border: 1px solid rgba(255,172,188,0.18);
    background: rgba(29,29,27,0.45);
    color: #fff;
    text-decoration: none;
    transition: 0.35s ease;
}

.contact-button:hover{
    background: #ffacbc;
    color: #1d1d1b;
    transform: translateY(-3px);
}

.contact-button.principal{
    background: #ffacbc;
    color: #1d1d1b;
}

.contact-button:last-child{
    margin-bottom: 0;
}

@media(max-width: 900px){

    .contact-page{
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 70px 24px;
    }

    .contact-left h1{
        font-size: clamp(44px, 13vw, 70px);
    }

    .contact-left p{
        font-size: 16px;
    }

}

/* =========================
SOBRE MIM
========================= */

.about-section{
    width: 100%;
    background: #1d1d1b;
    padding: 130px 8.8vw;
    position: relative;
    overflow: hidden;
}

.about-section::before{
    content: "";
    position: absolute;
    left: -180px;
    top: 18%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: #ffacbc;
    filter: blur(150px);
    opacity: 0.13;
    pointer-events: none;
}

.about-wrapper{
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    align-items: center;
    gap: 90px;
    position: relative;
    z-index: 2;
}

.about-image{
    width: 100%;
}

.about-image img{
    width: 100%;
    height: 560px;
    display: block;
    object-fit: cover;
    border-radius: 28px;
    border: 1px solid rgba(255,172,188,0.18);
    box-shadow: 0 30px 80px rgba(255,172,188,0.10);
}

.about-tag{
    display: inline-block;
    margin-bottom: 24px;
    color: #ffacbc;
    font-size: 15px;
    letter-spacing: -0.03em;
}

.about-content h2{
    max-width: 760px;
    color: #ffacbc;
    font-size: clamp(42px, 5.2vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.065em;
    font-weight: 300;
    margin-bottom: 32px;
}

.about-content p{
    max-width: 660px;
    color: rgba(255,255,255,0.72);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 22px;
}

.about-content p:last-child{
    margin-bottom: 0;
}

@media(max-width: 900px){

    .about-section{
        padding: 90px 24px;
    }

    .about-wrapper{
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about-image img{
        height: 460px;
        border-radius: 24px;
    }

    .about-content h2{
        font-size: clamp(38px, 11vw, 60px);
    }

    .about-content p{
        font-size: 16px;
    }
}

@media(max-width: 430px){

    .about-section{
        padding: 78px 18px;
    }

    .about-image img{
        height: 390px;
    }
}

/* =========================
PORTFÓLIO
========================= */

.portfolio-section{
    width:100%;
    padding:130px 8.8vw;
    background:#1d1d1b;
    position:relative;
    overflow:hidden;
}

.portfolio-section::before{
    content:"";
    position:absolute;
    right:-180px;
    top:20%;
    width:420px;
    height:420px;
    border-radius:50%;
    background:#ffacbc;
    filter:blur(150px);
    opacity:.10;
    pointer-events:none;
}

.portfolio-header{
    max-width:1180px;
    margin:0 auto 60px;
    position:relative;
    z-index:2;
}

.portfolio-tag{
    display:inline-block;
    margin-bottom:20px;
    color:#ffacbc;
    font-size:15px;
    letter-spacing:-0.03em;
}

.portfolio-header h2{
    max-width:920px;
    color:#ffacbc;
    font-size:clamp(42px,5vw,72px);
    line-height:1.05;
    letter-spacing:-0.065em;
    font-weight:300;
}

.portfolio-grid{
    max-width:1180px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:80px;
    align-items:center;
    position:relative;
    z-index:2;
}

.portfolio-item{
    width:100%;
}

.portfolio-card{
    width:100%;
    min-height:620px;
    display:block;
    overflow:hidden;
    border-radius:34px;
    border:1px solid rgba(255,172,188,.20);
    text-decoration:none;
    transition:.35s ease;
}

.portfolio-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 70px rgba(255,172,188,.10);
}

.portfolio-card img{
    width:100%;
    height:100%;
    min-height:620px;
    display:block;
    object-fit:cover;
    object-position:center;
}

.portfolio-title{
    color:#ffacbc;
    font-size:36px;
    font-weight:500;
    margin-bottom:20px;
}

@media(max-width:900px){

    .portfolio-section{
        padding:90px 24px;
    }

    .portfolio-grid{
        gap:56px;
    }

    .portfolio-card,
    .portfolio-card img{
        min-height:430px;
    }

    .portfolio-title{
        font-size:32px;
        margin-top:18px;
    }
}

@media(max-width:430px){

    .portfolio-section{
        padding:78px 18px;
    }

    .portfolio-card{
        border-radius:22px;
        min-height:280px;
    }

    .portfolio-card img{
        min-height:280px;
    }

    .portfolio-title{
        font-size:28px;
    }
}


/* =========================
CONTATO HOME
========================= */

.contact-section{
    width:100%;
    padding:130px 8.8vw;
    background:#1d1d1b;
    position:relative;
    overflow:hidden;
}

.contact-section::before{
    content:"";
    position:absolute;
    left:-160px;
    bottom:8%;
    width:430px;
    height:430px;
    border-radius:50%;
    background:#ffacbc;
    filter:blur(150px);
    opacity:.12;
    pointer-events:none;
}

.contact-wrapper{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:70px;
    position:relative;
    z-index:2;
}

.contact-content h2{
    max-width:820px;
    color:#ffacbc;
    font-size:clamp(42px,5vw,76px);
    line-height:1.04;
    letter-spacing:-0.065em;
    font-weight:300;
    margin-bottom:28px;
}

.contact-content p{
    max-width:560px;
    color:rgba(255,255,255,.72);
    font-size:18px;
    line-height:1.8;
}

.contact-actions{
    width:100%;
    padding:28px;
    border-radius:30px;
    border:1px solid rgba(255,172,188,.22);
    background:linear-gradient(145deg, rgba(255,172,188,.14), rgba(255,255,255,.03));
    backdrop-filter:blur(18px);
}

.contact-btn{
    width:100%;
    min-height:74px;
    padding:0 26px;
    margin-bottom:16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    border-radius:999px;
    border:1px solid rgba(255,172,188,.22);
    background:rgba(29,29,27,.52);
    color:#fff;
    text-decoration:none;
    transition:.35s ease;
}

.contact-btn span{
    color:rgba(255,255,255,.72);
    font-size:14px;
}

.contact-btn strong{
    color:inherit;
    font-size:18px;
    font-weight:500;
}

.contact-btn:hover{
    transform:translateY(-4px);
    background:#ffacbc;
    color:#1d1d1b;
}

.contact-btn:hover span{
    color:rgba(29,29,27,.70);
}

.contact-btn-fill{
    background:#ffacbc;
    color:#1d1d1b;
}

.contact-btn-fill span{
    color:rgba(29,29,27,.70);
}

.contact-btn:last-child{
    margin-bottom:0;
}

@media(max-width:900px){
    .contact-section{
        padding:90px 24px;
    }

    .contact-wrapper{
        grid-template-columns:1fr;
        gap:42px;
    }

    .contact-content h2{
        font-size:clamp(38px,11vw,62px);
    }

    .contact-content p{
        font-size:16px;
    }
}

@media(max-width:430px){
    .contact-section{
        padding:78px 18px;
    }

    .contact-actions{
        padding:20px;
        border-radius:24px;
    }

    .contact-btn{
        min-height:68px;
        padding:0 20px;
        flex-direction:column;
        align-items:flex-start;
        justify-content:center;
        gap:4px;
    }
}
/* FOOTER */

.footer{
    padding:40px 24px;
    text-align:center;
}

.footer-line{
    width:100%;
    max-width:1200px;
    height:1px;
    background:rgba(255,255,255,.08);
    margin:0 auto 28px;
}

.footer-copy{
    color:rgba(255,255,255,.45);
    font-size:14px;
    font-weight:300;
    letter-spacing:.04em;
    margin:0;
}

/* SOMENTE LOGO NO MOBILE */
@media (max-width:900px){

    .menu-right,
    nav{
        display:none !important;
    }

    .header{
        display:flex !important;
        justify-content:center !important;
        align-items:center !important;
        text-align:center !important;
        padding:20px 0 !important;
    }

    .header .logo{
        width:100%;
        display:flex !important;
        justify-content:center !important;
    }

    .header .logo img{
        margin-left:0 !important;
    }
}

/* ===== REMOVE ESPAÇO GRANDE NO MOBILE ===== */
@media (max-width: 900px){
    .hero-section{
        min-height: auto !important;
        padding-bottom: 34px !important;
    }

    .hero-content{
        padding-top: 22px !important;
    }

    .about-section{
        padding-top: 34px !important;
    }
}

@media (max-width: 430px){
    .hero-section{
        min-height: auto !important;
        padding-bottom: 28px !important;
    }

    .hero-content{
        padding-top: 18px !important;
    }

    .about-section{
        padding-top: 28px !important;
    }
}
