:root {
    --sage-green: #8BA888;
    --teal: #4A7C59;
    --dark-teal: #2F5233;
    --off-white: #F4F7F5;
    --white: #FFFFFF;
    --text-dark: #2C3E35;
    --text-muted: #5B7065;
    
    --font-main: 'Outfit', sans-serif;
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3 {
    font-weight: 600;
    color: var(--text-dark);
}

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

/* Layout */
.nav-container, .hero-container, .about-container, .services-container, .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--teal);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.2);
}

.btn-primary:hover {
    background-color: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--teal);
    border: 1px solid var(--teal);
}

.btn-outline:hover {
    background-color: var(--sage-green);
    color: var(--white);
    border-color: var(--sage-green);
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-teal);
    letter-spacing: -1px;
}

.logo-img {
    height: 70px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover {
    color: var(--teal);
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    background-color: var(--off-white);
    border-radius: 0 0 40px 40px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--sage-green);
    color: var(--white);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--teal);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-image {
    position: relative;
}

.main-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background-color: var(--white);
    padding: 1.2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.floating-card .icon {
    font-size: 2rem;
}

.floating-card .info {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    color: var(--dark-teal);
}

.floating-card span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* About Section */
.about {
    padding: 8rem 0;
}

.about-container {
    max-width: 800px;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--off-white);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
}

.skill-icon {
    color: var(--white);
    background-color: var(--sage-green);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Services */
.services {
    padding: 6rem 0 8rem;
    background-color: var(--off-white);
    border-radius: 40px;
    margin: 0 1rem;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.card {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
    text-align: center;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background-color: var(--off-white);
    border-radius: 50%;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 6rem 0 2rem;
}

.footer-cta {
    text-align: right;
    background: url('fotocontato.jpeg');
    background-size: cover;
    background-position: center 20%;
    color: var(--white);
    padding: 5rem 150px 5rem 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 4rem;
}

.footer-cta-text {
    transform: translate(30px, -30px);
}

.footer-cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.btn-large {
    background-color: var(--white);
    color: var(--teal);
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.btn-large:hover {
    background-color: var(--sage-green);
    color: var(--white);
}

.btn-whatsapp-icon {
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

.btn-email {
    margin-top: 1rem;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.footer-buttons .btn-large {
    min-width: 260px;
    text-align: left;
}

.btn-email {
    margin-top: 0;
}

.btn-instagram-icon {
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

.btn-gmail-icon {
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 2rem;
    color: var(--text-muted);
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .floating-card {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services {
        padding: 3rem 1rem 4rem;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .about {
        padding: 4rem 0;
    }

    .about h2 {
        font-size: 1.8rem;
    }
    
    .nav-links {
        display: none;
    }

    .footer-cta {
        padding: 3rem 1rem;
        text-align: center;
    }

    .footer-cta h2 {
        font-size: 2rem;
    }

    .footer-cta-text {
        transform: none;
    }

    .footer-buttons {
        align-items: center;
    }

    .footer-buttons .btn-large {
        min-width: 0;
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-content .btn {
        display: block;
        width: 100%;
    }
}
