/* Variables */
:root {
    --primary-color: #ff9bb3;
    --primary-light: #ffc2d1;
    --primary-dark: #e77a96;
    --secondary-color: #f8e1eb;
    --accent-color: #d162a4;
    --text-color: #333333;
    --light-text: #777777;
    --white: #ffffff;
    --black: #000000;
    --bg-color: #fef9fb;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 10rem 0;
    position: relative;
}

/* Cursor removido */

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 3rem;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1.6rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 155, 179, 0.3);
}

.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 155, 179, 0.4);
}

.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 155, 179, 0.4);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3.6rem;
    position: relative;
    display: inline-block;
    margin-bottom: 5rem;
    color: var(--text-color);
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1rem;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(254, 249, 251, 0.9);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
}

.logo h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0;
}

.logo h1 span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
    padding-bottom: 0.5rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, rgba(255, 194, 209, 0.3) 0%, rgba(248, 225, 235, 0.3) 100%);
    overflow: hidden;
    padding: 0 20px;
    padding-top: 8rem;
    position: relative;
}

.emoji-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    text-align: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-text {
    position: relative;
    z-index: 5;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.hero-text h1 {
    font-size: 5.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-text h1 span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-text h1 span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 12px;
    background-color: rgba(255, 155, 179, 0.3);
    z-index: -1;
}

.hero-text h2 {
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-text p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--light-text);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.blob-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blob {
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-animation 8s ease-in-out infinite;
    left: 50%;
    transform: translateX(-50%);
}

.profile-img {
    position: relative;
    width: 90%;
    max-width: 400px;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

@keyframes blob-animation {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Reveal Text Animation */
.reveal-text {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: reveal 0.8s forwards;
}

.reveal-text:nth-child(1) {
    animation-delay: 0.2s;
}

.reveal-text:nth-child(2) {
    animation-delay: 0.4s;
}

.reveal-text:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 5px solid var(--primary-color);
    border-right: none;
    border-bottom: none;
    z-index: -1;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 5px solid var(--primary-color);
    border-left: none;
    border-top: none;
    z-index: -1;
}

.about-image img {
    border-radius: 15px;
    transition: var(--transition);
    filter: brightness(0.95);
}

.about-image img:hover {
    transform: scale(1.02);
    filter: brightness(1);
}

.about-text h3 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.about-text p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.stats {
    display: flex;
    gap: 4rem;
    margin: 3rem 0;
}

.stat {
    text-align: center;
}

.counter {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1.4rem;
    margin-bottom: 0;
}

/* Projects Section */
.project-filters {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: none;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--light-text);
    padding: 0.8rem 2rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 3rem;
}

.filter-btn.active, .filter-btn:hover {
    color: var(--white);
    background-color: var(--primary-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in 1s forwards 0.5s;
}

@keyframes fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 155, 179, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-item:hover .project-overlay {
    opacity: 1;
    transform: scale(1);
}

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

.project-info {
    text-align: center;
    padding: 2rem;
    color: var(--white);
}

.project-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.project-info p {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.project-info .project-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-height: 80px;
    overflow-y: auto;
    opacity: 0.9;
}

.project-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid var(--white);
    color: var(--white);
    border-radius: 3rem;
    transition: var(--transition);
}

.project-link:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Skills Section */
.skills {
    background-color: var(--secondary-color);
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 5rem;
}

.skill-category h3 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

.skill-item {
    margin-bottom: 3rem;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.skill-info p {
    font-size: 1.6rem;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    animation: progress-animation 1.5s ease-in-out forwards;
    transform-origin: left;
    transform: scaleX(0);
}

@keyframes progress-animation {
    to {
        transform: scaleX(1);
    }
}

/* Testimonials */
.testimonials {
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 350px;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.testimonial-content {
    background-color: var(--white);
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 1rem;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 2rem;
}

.quote {
    font-size: 1.8rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 3rem;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-size: 2.5rem;
}

.client-info h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.client-info p {
    font-size: 1.4rem;
    color: var(--light-text);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    gap: 2rem;
}

.prev-btn, .next-btn {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    color: var(--accent-color);
}

.slider-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-light);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info {
    padding-right: 2rem;
}

.contact-info h3 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.contact-info p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    color: var(--light-text);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 2rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 155, 179, 0.1);
    border-radius: 50%;
}

.contact-form {
    background-color: var(--white);
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    animation: form-in 1s forwards 0.5s;
    opacity: 0;
}

@keyframes form-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1.5rem 2rem;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    transition: var(--transition);
    background-color: #f9f9f9;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 155, 179, 0.2);
    background-color: var(--white);
}

.form-group textarea {
    resize: none;
}

/* Footer */
footer {
    background-color: #fce4ec;
    padding: 6rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-logo h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.footer-logo p {
    font-size: 1.6rem;
    color: var(--light-text);
}

.footer-logo h2 span {
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 1.6rem;
    color: var(--text-color);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-bottom p {
    font-size: 1.4rem;
    color: var(--light-text);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-image {
        margin: 0 auto;
        max-width: 500px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .hero-container {
        flex-direction: column;
    }
    
    .hero-text {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .cta-buttons, .social-icons {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 55%;
    }
    
    .nav-links {
        position: absolute;
        top: 8rem;
        right: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
        z-index: -1;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .burger {
        display: block;
    }
    
    .burger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger.active .line2 {
        opacity: 0;
    }
    
    .burger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media screen and (max-width: 576px) {
    html {
        font-size: 50%;
    }
    
    .hero-text h1 {
        font-size: 4.5rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .testimonial-content {
        padding: 3rem 2rem;
    }
    
    .project-filters {
        gap: 1rem;
    }
    
    .filter-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1.4rem;
    }
    
    .contact-form {
        padding: 3rem 2rem;
    }
}

/* Featured Project */
.featured-project {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.featured-project-image {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.featured-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.featured-project-info {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-category {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-project-info h3 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.featured-project-info p {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    color: var(--light-text);
    line-height: 1.8;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.project-tags span {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--primary-dark);
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Updated Projects Section */
.projects {
    padding-top: 8rem;
    background-color: #fefafc;
}

.projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3.5rem;
}

.project-item {
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.project-img {
    height: 300px;
    border-radius: var(--border-radius);
}

.project-info h3 {
    font-size: 2.2rem;
}

/* Responsive Featured Project */
@media screen and (max-width: 992px) {
    .featured-project {
        grid-template-columns: 1fr;
    }
    
    .featured-project-image {
        height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .featured-project-info {
        padding: 3rem;
    }
    
    .featured-project-info h3 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 576px) {
    .featured-project-image {
        height: 300px;
    }
    
    .featured-project-info {
        padding: 2rem;
    }
    
    .project-img {
        height: 250px;
    }
}

/* Cherry Emoji Animation Styles */
.cherry-emoji {
    position: absolute;
    font-size: 24px;
    animation: floatDiagonal 15s linear forwards;
    z-index: 2;
    user-select: none;
    filter: drop-shadow(0 0 2px rgba(255, 192, 203, 0.3));
}

@keyframes floatDiagonal {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    2% {
        opacity: var(--cherry-opacity, 0.15);
    }
    90% {
        opacity: var(--cherry-opacity, 0.15);
    }
    100% {
        transform: translate(var(--translate-x, 100vw), var(--translate-y, 100vh)) rotate(360deg);
        opacity: 0;
    }
} 