/* Global Styles */
:root {
    --primary-color: #C46776;
    --primary-light: #ff8e8e;
    --primary-dark: #e05555;
    --secondary-color: #4ecdc4;
    --accent-color: #ffe66d;
    --light-color: #f7fff7;
    --dark-color: #49363D;
    --gray-light: #f1f1f1;
    --gray-medium: #d1d1d1;
    --gray-dark: #777;
    --success-color: #6bff6b;
    --warning-color: #ffcc5c;
    --danger-color: #ff6b6b;
    --font-primary: 'Poppins', sans-serif;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.6;
    background-color: #f9f9f9;
}

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

section {
    padding: 80px 0;
}

h1,
h2,
h3,
h4 {
    margin-bottom: 15px;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

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

a {
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Navbar Styles */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.brand span {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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


.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

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

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

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    background-color: white;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    flex-direction: column;
    gap: 15px;
    transform: translateY(-150%);
    transition: var(--transition);
}

.mobile-menu.active {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    background-color: #EEE8EE;
    padding: 150px 0 100px;
    margin-top: 80px;
}

.hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.hero-btn {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--gray-dark);
}

/* Features Section */
.features-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.features-header .destaque {
    display: inline-block;
    margin-bottom: 10px;
}

.features-header .section-title {
    margin-bottom: 15px;
}

.features-header .feature-subtitle {
    text-align: center;
    margin-top: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);

    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-cta {
    margin-top: auto;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);

}

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


.feature-card:hover .card-cta {
    transform: translateX(5px);
}


.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
}

/* palestras e ações */
.actions {
    background-color: #f5f5f5;
}

.action-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.action {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.action.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.action-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.action-content img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--primary-light);
}

.action-content p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.action-content p::before,
.action-content p::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-light);
    opacity: 0.5;
}

.action-content h4 {
    color: var(--primary-color);
}

.action-content span {
    color: white;
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.slider-prev,
.slider-next {
    background-color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--primary-color);
    color: white;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

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

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

/* PORTFÓLIO DE AÇÕES */
.portfolio-actions {
    padding: 80px 0;
}

/* Card */
.action-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    transition: transform 0.3s ease;
}

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

/* Imagem grande */
.action-image {
    height: 100%;
}

.action-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Conteúdo */
.action-content {
    padding: 40px;
    text-align: left;
}

.action-tag {
    display: inline-block;
    background-color: var(--primary-light);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.action-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.action-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--gray-dark);
}

/* Meta info */
.action-meta {
    list-style: none;
    padding: 0;
    margin: 0;
}

.action-meta li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--gray-dark);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .action-card {
        grid-template-columns: 1fr;
    }

    .action-image {
        height: 260px;
    }

    .action-content {
        padding: 25px;
    }
}

/* About Section */
.about .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    color: var(--gray-medium);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--gray-medium);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

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

/* Footer Link Styling */
.footer-bottom p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    text-align: center;
}

.footer-bottom a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: var(--transition);
    margin: 0 2px;
}

/* Specific style for the site name link */
.footer-bottom .site-link {
    font-weight: 600;
    color: var(--primary-light);
}

.footer-bottom a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Separator styling */
.footer-bottom p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p::before,
.footer-bottom p::after {
    content: "|";
    color: var(--gray-medium);
    opacity: 0.5;
}

.tab-btn {
    flex: 1;
    padding: 15px;
    text-align: center;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-dark);
    transition: var(--transition);
    position: relative;
}

.destaque {
    color: var(--primary-color);
}


/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .about .container {
        flex-direction: column;
    }

    .about-content {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .mobile-menu {
        display: flex;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 120px 0 80px;
    }

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

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

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

    .feature-card {
        padding: 20px;
    }

    .action-content {
        padding: 30px 20px;
    }
}

/* como ajudar */
.como-ajudar-pix {
    background-color: #F5EAED;
    max-width: 700px;
    height: auto;
    margin: 40px auto 0;
    padding: 28px 24px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.como-ajudar-pix:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.como-ajudar-pix h3 {
    margin-bottom: 8px;
    font-size: 1.4rem;
    font-weight: 600;
}

.como-ajudar-pix p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #555;
}

.como-ajudar-pix .pix-chave {
    background-color: #fff;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
    word-break: break-all;
}

.como-ajudar-pix button {
    border: none;
    background-color: #BA4F61;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.como-ajudar-pix button:hover {
    background-color: #a92f4b;
    transform: scale(1.03);
}

.wrapper-destaque {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    text-align: center;
}

.problem-detail {
    max-width: 800px;
    margin: 70px auto 0;
    padding: 45px 40px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    line-height: 1.8;

    border-top: 6px solid var(--primary-color); /* destaque elegante */
}

.problem-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.problem-detail p {
    font-size: 1.05rem;
    color: var(--gray-dark);
}

.problem-references {
    max-width: 800px;
    margin: 30px auto 0;
    padding: 20px 30px;
    background-color: #f8f6f7;
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.problem-references h4 {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--primary-color);
    text-align: center;
}

.problem-references ul {
    list-style: none;
    padding: 0;
}

.problem-references li {
    margin-bottom: 8px;
}