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

:root {
    --gold: #E3C088;
    --navy: #061C2B;
    --bronze: #AD8551;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-600: #6c757d;
    
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--navy);
}

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


.portfolio-header {
    background-color: var(--navy);
    border-bottom: 2px solid var(--bronze);
    padding: 2rem 0 4rem;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.logo h2 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.logo p {
    color: var(--gold);
    font-size: 0.9rem;
}

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

.nav-links a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.hero-content {
    text-align: center;
}

.portfolio-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.gold-text {
    color: var(--gold);
}

.portfolio-subtitle {
    font-size: 1.2rem;
    color: var(--gold);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Portfolio Content */
.portfolio-content {
    padding: 4rem 0;
    background-color: var(--navy);
}

.portfolio-section {
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-divider {
    width: 100px;
    height: 4px;
    background-color: var(--bronze);
    margin: 0 auto;
}

/* Pure CSS Carousel */
.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 80px; /* Space for buttons outside */
}

/* Hide radio buttons */
.carousel-container input[type="radio"] {
    display: none;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 200%; /* 2 slides */
}

.carousel-slide {
    display: flex;
    gap: 1rem;
    width: 50%;
    flex-shrink: 0;
}

/* Default state - show first slide */
.carousel-track {
    transform: translateX(0);
}

/* When second radio button is checked, show second slide */
.carousel-container input[type="radio"]:nth-of-type(2):checked ~ .carousel-wrapper .carousel-track {
    transform: translateX(-50%);
}

.carousel-slide .project-card {
    flex: 1;
    min-width: 0;
}

/* Navigation buttons as labels */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--gold);
    color: var(--navy);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.carousel-btn:hover {
    background-color: var(--bronze);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* Show/hide navigation buttons based on current slide */
.carousel-container input[type="radio"]:nth-of-type(1):checked ~ .carousel-prev {
    display: none;
}

.carousel-container input[type="radio"]:nth-of-type(2):checked ~ .carousel-next {
    display: none;
}

/* Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(227, 192, 136, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.indicator:hover {
    background-color: var(--bronze);
}

/* Active indicator based on checked radio */
.carousel-container input[type="radio"]:nth-of-type(1):checked ~ .carousel-indicators .indicator:nth-of-type(1),
.carousel-container input[type="radio"]:nth-of-type(2):checked ~ .carousel-indicators .indicator:nth-of-type(2) {
    background-color: var(--gold);
    transform: scale(1.2);
}

/* Project Cards */
.project-card {
    background-color: rgba(6, 28, 43, 0.8);
    border: 2px solid var(--bronze);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
    border-color: var(--gold);
}

.project-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

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

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

.project-content {
    padding: 0.8rem;
}

.project-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.project-description {
    color: rgba(227, 192, 136, 0.9);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.project-location-info {
    color: var(--bronze);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    color: var(--bronze);
    transform: translateX(4px);
}

/* Call to Action */
.cta-section {
    background-color: rgba(6, 28, 43, 0.95);
    border-top: 2px solid var(--bronze);
    padding: 4rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--gold);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-btn, .contact-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background-color: #25D366;
    color: var(--white);
}

.whatsapp-btn:hover {
    background-color: #1da851;
    transform: translateY(-2px);
}

.contact-btn {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.contact-btn:hover {
    background-color: var(--gold);
    color: var(--navy);
}

/* Footer */
.footer {
    background-color: var(--black);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--gray-600);
}

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

.footer-links a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(108, 117, 125, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-600);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .carousel-container {
        padding: 0 60px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .carousel-slide {
        flex-direction: column;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .portfolio-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .carousel-container {
        padding: 0 50px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .project-content {
        padding: 1rem;
    }
    
}
.imagemdecima {
    height: 90px; 
    width: auto;
  
  }
  .imagemdebaixo {
    height: 200px;
    width: auto;
    margin-bottom: 0.5rem; }