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

:root {
    --primary-color: #6B8E7F;
    --secondary-color: #4A6B5E;
    --accent-color: #D4A574;
    --accent-light: #E8D5C4;
    --text-color: #333;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;
    --gradient-1: linear-gradient(135deg, #6B8E7F 0%, #4A6B5E 100%);
    --gradient-2: linear-gradient(135deg, #D4A574 0%, #C89968 100%);
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-color);
}

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


header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s;
    font-size: 1rem;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}


.hero {
    position: relative;
    background: var(--gradient-1);
    color: var(--white);
    padding: 150px 0 100px;
    margin-top: 70px;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--white);
    top: -100px;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    bottom: -50px;
    left: -50px;
    animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--white);
    top: 50%;
    left: 10%;
    animation: float 18s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(20px, 20px) rotate(3deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-wrapper {
    text-align: left;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image {
    position: relative;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 500px;
    margin: 0 auto;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: #FFFFFF;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}


.sobre {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.sobre-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.sobre-image {
    position: relative;
}

.organic-shape {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 550px;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    background: var(--gradient-2);
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
    25% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    50% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; }
    75% { border-radius: 70% 30% 50% 50% / 30% 54% 46% 70%; }
}

.organic-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-element {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    font-style: italic;
    color: var(--secondary-color);
    font-size: 1rem;
    max-width: 200px;
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.sobre-content h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 400;
    position: relative;
    display: inline-block;
}

.sobre-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.sobre-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: #555;
}


.atuacao {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.atuacao-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.circle-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -200px;
    right: -100px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    bottom: -150px;
    left: -100px;
}

.atuacao .container {
    position: relative;
    z-index: 1;
}

.atuacao h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-weight: 400;
}

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

.card-artistic:nth-child(4) {
    grid-column: 1 / 2;
}

.card-artistic:nth-child(5) {
    grid-column: 2 / 3;
}

.card-artistic {
    position: relative;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease;
}

.card-artistic:hover {
    transform: translateY(-8px);
}

.card-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    z-index: 0;
    min-height: 100%;
}

.card-artistic:hover .card-shape {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.card-content {
    position: relative;
    z-index: 1;
    padding: 4rem 4rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-wide .card-content {
    padding: 5rem 5rem;
}

.card-content h3,
.card-content h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 500;
}

.atuacao-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
    position: relative;
}

.category-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.card-wide {
    grid-column: 1 / -1;
}

.cards-palestras {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.cards-palestras .card-content {
    text-align: center;
    padding: 2rem 1.5rem;
}

.cards-palestras .card-content h4 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.card-content p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}


.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.faq-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-bg);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e8e8e8;
}

.faq-question h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 500;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.8;
}


.contato {
    padding: 80px 0;
    background: var(--light-bg);
}

.contato h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.contato-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contato-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
}

@media (max-width: 968px) {
    .contato-info {
        grid-template-columns: 1fr;
    }
}

.info-item.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-between;
    height: 100%;
}

.contact-cta {
    margin-top: auto;
    padding-top: 1rem;
}

.contact-cta .btn-primary {
    width: 100%;
    text-align: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}

.contact-item p {
    font-size: 1.1rem;
}

.map-container {
    margin-top: 1rem;
}

.map-container iframe {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.info-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-item p {
    line-height: 1.6;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: var(--accent-color);
}

.contact-cta .btn-primary {
    color: #FFFFFF !important;
}

.contact-cta .btn-primary:hover {
    color: #FFFFFF !important;
}




footer {
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}


@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .image-frame {
        max-width: 350px;
    }

    .sobre-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .organic-shape {
        margin: 0 auto;
        max-width: 350px;
        height: 450px;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-artistic:nth-child(4),
    .card-artistic:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .image-frame {
        max-width: 300px;
        height: 400px;
    }

    .sobre-content h2 {
        font-size: 2.2rem;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .card-artistic:nth-child(4),
    .card-artistic:nth-child(5) {
        grid-column: span 1;
    }

    .floating-element {
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
    }
}
