@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Modak&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');




@font-face {
    font-family: 'typewriter';
    src: url('../fontes/Typewriter/TYPEWR_B.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Okine';
    src: url('../fontes/MADEOkineSansPERSONALUSE-Bold.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


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


body {
    margin: 0;
    background: #fcf8f2;
    font-family: 'Poppins', sans-serif;
    color: #222;
}


.contact-icons {
    display: flex;
    gap: 18px;
    margin-bottom: 32px;
}

.contact-icons a {
    text-decoration: none;
    color: #e94f37;
    font-size: 1.6rem;
    transition: color 0.2s;
}

.contact-icons a:hover {
    color: #222;
}



.section-title {

    font-family: 'Klore', serif;
    color: #e94f37;
    font-size: 2rem;
    margin-bottom: 18px;
    margin-top: 0;
}

.section-title {
    font-family: 'Klore', serif;
}

.section-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.section-list li {
    margin-bottom: 10px;
    font-size: 1.08rem;
    display: flex;
    align-items: center;
}

.star {
    color: #e94f37;
    font-size: 1.5em;
    margin-right: 8px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 10px 24px;
    margin-bottom: 24px;
}

.skill-item {
    display: flex;
    align-items: center;
    font-size: 1.08rem;
}

.skill-star {
    color: #e94f37;
    margin-right: 8px;
    font-size: 1.1em;
}

.nav-below {
    width: 100%;
    text-align: center;
    margin: 32px 0 0 0;
}

.nav-below a {
    background: #e94f37;
    color: #fff;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 24px;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 2px 8px #0001;
    transition: background 0.2s;
}

.nav-below a:hover {
    background: #222;
}




.main-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
}





.intro-text {
    font-size: 1.15rem;
    margin-bottom: 24px;
    max-width: 400px;
}

.contact-icons {
    display: flex;
    gap: 18px;
    margin-bottom: 32px;
}

.contact-icons a {
    text-decoration: none;
    color: #e94f37;
    font-size: 1.6rem;
    transition: color 0.2s;
}

.contact-icons a:hover {
    color: #222;
}

.section-title {
    font-family: 'Georgia', serif;
    color: #e94f37;
    font-size: 2rem;
    margin-bottom: 18px;
    margin-top: 0;
}

.section-title.exp {
    font-family: 'Okine';
}

.section-title.skills {
    font-family: 'Okine';
}

.section-title.edu {
    font-family: 'Okine';
}



.section-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.section-list li {
    margin-bottom: 10px;
    font-size: 1.08rem;
    display: flex;
    align-items: center;
}

.star {
    color: #e94f37;
    font-size: 1.1em;
    margin-right: 8px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 10px 24px;
    margin-bottom: 24px;
}

.skill-item {
    display: flex;
    align-items: center;
    font-size: 1.08rem;
}

.skill-star {
    color: #e94f37;
    margin-right: 8px;
    font-size: 1.1em;
}

.nav-below {
    width: 100%;
    text-align: center;
    margin: 32px 0 0 0;
}

.nav-below a {
    background: #e94f37;
    color: #fff;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 24px;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 2px 8px #0001;
    transition: background 0.2s;
}

.nav-below a:hover {
    background: #222;
}



header {
    width: 100%;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 10;
    min-height: 64px;
    position: relative;
}

.logo {
    font-family: 'Klore', 'Modak', cursive;
    font-size: 2rem;
    color: #e94f37;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 12px 0;
}

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    transition: right 0.3s;
}

.menu li a {
    text-decoration: none;
    color: #222;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 18px;
    transition: background 0.2s, color 0.2s;
}

.menu li a:hover {
    background: #e94f37;
    color: #fff;
}



@media (max-width: 900px) {
    header {
        min-height: 48px !important;
        padding: 3px 12px !important;
        position: relative;
    }

    .logo img {
        max-height: 32px;
        width: auto;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}





.portfolio {

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;

    padding: 40px;
    border-radius: 16px;
}

.texto {
    flex: 1;
    min-width: 280px;
}

.imgbv {
    width: 100%;
    max-width: 450px;
    margin-bottom: 20px;
    border-bottom: 2px solid #000;
    display: inline-block;
    padding-bottom: 20px;
}

.projetos {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding-bottom: 25px;
}

.contate img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.texto p {

    font-size: 1.1rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 20px;
}

.btn {
    padding: 10px 20px;
    background-color: #e94f37;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #cb3d27;
}

.imagem {
    width: 370px;
    min-width: 280px;
}

.imagem img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .portfolio {
        flex-direction: column;
        align-items: center;
        /* Centraliza o conteúdo */
    }

    .portfolio .imagem {
        order: -1;
        width: 75%;
        /* Aqui define 75% da largura da tela */
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
    }

    .portfolio .imagem img {
        width: 75%;
        /* Faz a imagem ocupar os 75% definidos no container */
        height: auto;
        object-fit: cover;
    }

    .portfolio .texto {
        order: 1;
        text-align: center;
        padding: 0 20px;
    }
}





/* ............... SOBRE ................ */

.container {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    padding: 40px 0;
}

.left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-left: 60px;
    gap: 30px;
}

.right {
    flex: 1;
    padding: 0 60px;
    border-left: 2px solid #d9cfc2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section {
    margin-bottom: 2px;
}

.section-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2.5rem;
    color: #e94f3a;
    margin-bottom: 10px;
}

.item {
    margin-bottom: 12px;
}

.item-title {
    color: #e94f3a;
    font-weight: bold;
}

.star {
    color: #222;
    font-size: 1.2em;
    margin-right: 8px;
}

hr {
    border: none;
    border-top: 2px solid #d9cfc2;
    margin: 30px 0;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
}

.skills-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skills-list li {
    margin-bottom: 10px;
}


.left .imgexperiencias {
    margin-top: 60px;
    width: 450px;
    height: auto;
    display: block;
}

@media screen and (max-width: 900px) {
    .container {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .left {
        padding-left: 0;
        align-items: center;
        margin-bottom: 20px;
    }

    .right {
        padding: 0;
        border-left: none;
        text-align: center;
    }

    .left .imgexperiencias {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .skills-list {
        justify-content: center;
        text-align: center;
    }
}

.projects {
    padding: 50px 20px;
    text-align: center;
}

.projects h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.projects-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.project-item {
    position: relative;
    overflow: hidden;
    width: 360px;
    text-align: center;
}

.project-item img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.project-item img:hover {
    transform: scale(1.05);
}

.project-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;

}

.project-item:hover .project-hover {
    opacity: 1;
}

.project-item p {
    font-size: 1rem;
    margin-top: 10px;
    font-size: 1.1rem;
    color: #333;
    margin-top: 10px;
    text-decoration: none;
    /* Remove underline */
}

.project-description {
    text-decoration: none !important;
    /* Force removal of underline */
    color: #333;
    font-size: 1.1rem;
    margin-top: 10px;
}

.projects h2 {
    font-size: 5rem;
    font-family: 'Klore', serif;
    color: #e94f37;
    margin-bottom: 40px;
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer p {
    margin: 0;
    font-size: 1rem;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #f9a825;
}

.contact-section {
    padding: 50px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    color: #e94f37;
}

.contact-item i {
    margin-right: 10px;
    font-size: 1.5rem;
    color: #e94f37;
}

.contact-item a {
    text-decoration: none;
    color: #000000;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #e94f37;
}

.contact-section h2 {
    font-size: 4.5rem;
    font-family: 'Klore', serif;
    color: #e94f37;
    margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
    header {
        flex-wrap: wrap;
        padding: 10px 20px;
    }

    .logo img {
        width: 150px;
    }

    .menu {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }

    .menu li a {
        font-size: 1rem;
        padding: 10px 15px;
    }

    .portfolio {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .texto {
        text-align: center;
    }

    .imagem img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .container {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .left {
        padding: 0;
        align-items: center;
        margin-bottom: 20px;
    }

    .right {
        padding: 0;
        border-left: none;
    }

    .projects-container {
        flex-direction: column;
        gap: 20px;
    }

    .project-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .contact-section {
        padding: 20px;
    }

    .contact-item {
        font-size: 1rem;
    }

    .contact-item i {
        font-size: 1.2rem;
    }

    .footer {
        padding: 10px;
    }

    .texto p {
        line-height: 1.8;
        /* Aumentar o espaçamento entre linhas */
        margin-bottom: 20px;
        /* Garantir espaçamento entre parágrafos */
    }

    .section-list li {
        line-height: 1.6;
        /* Ajustar espaçamento entre itens da lista */
        margin-bottom: 15px;
        /* Garantir espaçamento entre itens */
    }

    .skills-list ul li {
        line-height: 1.6;
        /* Ajustar espaçamento entre itens de habilidades */
        margin-bottom: 15px;
        /* Garantir espaçamento entre itens */
    }
}

@media screen and (max-width: 480px) {
    .menu li a {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .portfolio {
        padding: 10px;
    }

    .texto p {
        font-size: 0.9rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .projects-container {
        gap: 15px;
    }

    .project-item {
        max-width: 250px;
    }

    .contact-item {
        font-size: 0.9rem;
    }

    .footer p {
        font-size: 0.8rem;
    }
}

.imgbv {
    width: 100%;
    max-width: 450px;
    margin-bottom: 20px;
    border-bottom: 2px solid #000;
    display: inline-block;
}

.projects-section {
    width: 100%;
    text-align: center;
    padding: 40px 20px;
}

.projetos {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding-bottom: 25px;
    display: block;
}

.contate img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding-bottom: 50px;
}

@media screen and (max-width: 768px) {
    .imgbv {
        max-width: 300px;
    }

    .projects-section {
        padding: 30px 15px;
    }

    .projetos {
        max-width: 280px;
    }

    .contate img {
        max-width: 200px;
    }
}

@media screen and (max-width: 480px) {
    .imgbv {
        max-width: 200px;
    }

    .projects-section {
        padding: 25px 10px;
    }

    .projetos {
        max-width: 220px;
    }

    .contate img {
        max-width: 150px;
    }
}

@media (max-width: 769px) {
    .center-icons {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-bottom: 16px;
    }
}


        .project-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        @media (max-width: 768px) {
            .project-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .modal {
                width: 95%;
                max-height: 85vh;
            }
            
            .modal-header {
                padding: 15px 20px;
            }
            
            .modal-footer {
                padding: 15px 20px;
            }
        }

        @media (max-width: 1024px) and (min-width: 769px) {
            .project-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        .project-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-5px);
        }

        .project-preview {
            width: 100%;
            height: 200px;
            object-fit: cover;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .project-preview:hover {
            opacity: 0.8;
        }

        .project-info {
            padding: 20px;
        }

        .project-title {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }

        .project-description {
            color: #666;
            font-size: 14px;
        }

        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal {
            background: white;
            border-radius: 15px;
            padding: 0;
            max-width: 800px;
            width: 90%;
            max-height: 90vh;
            position: relative;
            transform: scale(0.7);
            transition: all 0.3s ease;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            overflow: hidden;
        }

        .modal-overlay.active .modal {
            transform: scale(1);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
            border-bottom: 2px solid #f0f0f0;
            background: white;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .modal-title {
            font-size: 24px;
            color: #333;
            font-weight: bold;
        }

        .btn-close {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #999;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .btn-close:hover {
            background: #f0f0f0;
            color: #333;
        }

        .modal-body {
            max-height: 60vh;
            overflow-y: auto;
            padding: 0;
        }

        .website-preview {
            width: 100%;
            height: auto;
            display: block;
        }

        .modal-footer {
            display: flex;
            gap: 15px;
            justify-content: center;
            padding: 20px 30px;
            background: white;
            border-top: 2px solid #f0f0f0;
        }

        .btn {
            padding: 12px 25px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        @media (max-width: 480px) {
            .btn {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .modal-title {
                font-size: 20px;
            }
            
            .project-title {
                font-size: 16px;
            }
            
            .project-description {
                font-size: 13px;
            }
        }

        .btn-visit {
            background-color: #cb3d27;
            color: white;
        }

        .btn-secondary {
            background: #f8f9fa;
            color: #6c757d;
            border: 1px solid #dee2e6;
        }

        .btn:hover {
            transform: translateY(-1px);
            color: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }