/* Reset e Variáveis */
:root {
    --primary-color: #10b981;
    --text-color: #333;
    --bg-color: #fff;
    --secondary-bg: #f8f9fa;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    font-weight: 400;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    /* padding: 1rem 0; */
}

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

.logo h1 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
}

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

.nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--text-color);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #059669 100%);
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
    background: linear-gradient(135deg, #059669 0%, var(--primary-color) 100%);
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 20%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #059669 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-color) 0%, #4b5563 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    color: #4b5563;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

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

.stat-label {
    font-size: 1rem;
    color: #4b5563;
    font-weight: 500;
}

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

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

    .hero-cta {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 80px;
    }

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

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 0.5rem;
    }
}

/* Serviços Section */
.servicos {
    padding: 100px 0;
    background: var(--secondary-bg);
}

.servicos h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.servicos-intro {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    text-align: center;
    font-size: 1.2rem;
    color: #4b5563;
}

.novo-servicos {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.servico-card.novo {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.08), 0 1.5px 6px rgba(0,0,0,0.04);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 340px;
    min-width: 260px;
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}

.servico-card.novo:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.15), 0 2px 8px rgba(0,0,0,0.06);
    border-color: var(--primary-color);
}

.servico-icone.novo {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color) 60%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.12);
}

.servico-icone.novo i {
    color: #fff;
    font-size: 2rem;
}

.servico-card.novo h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.servico-card.novo p {
    color: #4b5563;
    font-size: 1.05rem;
    text-align: center;
}

@media (max-width: 1024px) {
    .novo-servicos {
        gap: 1.5rem;
    }
    .servico-card.novo {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .novo-servicos {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .servico-card.novo {
        width: 100%;
        min-width: unset;
    }
}

/* Sobre Section */
.sobre {
    padding: 100px 0;
}

.sobre-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sobre h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
}

/* Sobre Section Novo */
.sobre.novo-sobre {
    background: var(--primary-color);
    padding: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.sobre-content.novo {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 5rem 2rem 4rem 2rem;
    width: 100%;
}

.sobre-content.novo h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
}

.sobre-content.novo p {
    font-size: 1.25rem;
    color: #e0f7ef;
    line-height: 1.7;
    font-weight: 400;
}

span.leia-mais {
    display: none;
}

@media (max-width: 768px) {
    .sobre-content.novo {
        padding: 3rem 1rem 2.5rem 1rem;
        max-width: 95vw;
    }
    .sobre-content.novo h2 {
        font-size: 2rem;
    }
    .sobre-content.novo p {
        font-size: 1.05rem;
    }
    .sobre.novo-sobre {
        min-height: 40vh;
    }

    span.leia-mais {
        display: block;
    }
}

.case-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.case-card h3 {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Contato Section */
.contato {
    padding: 100px 0;
}

.contato h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contato-form input,
.contato-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contato-form textarea {
    height: 150px;
    resize: vertical;
}

.contato-info {
    padding: 2rem;
    background: var(--secondary-bg);
    border-radius: 10px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.social-links {
    margin-bottom: 2rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: var(--transition);
}

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

/* Responsividade */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
    }
    
    .servicos-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.cta-button.sobre-cta {
    margin-top: 2.5rem;
    display: inline-block;
    background: #fff;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    cursor: pointer;
}
.cta-button.sobre-cta:hover {
    background: #21342e;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 24px rgba(16,185,129,0.15);
}

/* Cases Section Novo */
.cases.novo-cases {
    background: #f8f9fa;
    padding: 100px 0;
}

.cases.novo-cases h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.cases-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.case-card.novo {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(16, 185, 129, 0.06);
    padding: 2rem 2.5rem;
    gap: 2.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.case-card.novo:hover {
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.12);
    transform: translateY(-4px) scale(1.02);
}

.case-img-placeholder {
    width: 140px;
    height: 140px;
    background: var(--primary-color);
    border-radius: 16px;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(16,185,129,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.case-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
}

.case-info p {
    color: #374151;
    font-size: 1.08rem;
    line-height: 1.5;
    text-align: justify;
}

.case-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.3s ease;
}

.case-card.novo:hover .case-img-placeholder img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .cases-list {
        max-width: 100vw;
        padding: 0 1rem;
    }
    .case-card.novo {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .case-card.novo {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 1.2rem 0.7rem;
        gap: 1rem;
    }
    .case-img-placeholder {
        width: 100%;
        max-width: 220px;
        height: 90px;
        border-radius: 12px;
        border-width: 1.5px;
    }
    .case-img-placeholder img {
        border-radius: 10px;
    }
}

.case-link {
    display: inline-block;
    margin-top: 1.2rem;
    color: #4b5563;
    background: transparent;
    padding: 0.2rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: underline;
    transition: color 0.2s, background 0.2s;
}
.case-link:hover {
    color: var(--primary-color);
    background: #e0f7ef;
    text-decoration: underline;
}

.cases-vermais-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}
.cases-vermais-btn {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-decoration: none;
    cursor: pointer;
}
.cases-vermais-btn:hover {
    background: #059669;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

.contato.novo-contato {
    background: #fff;
    padding: 100px 0 80px 0;
}

.contato-split {
    display: flex;
    align-items: stretch;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contato-img-placeholder {
    flex: 1 1 45%;
    min-width: 280px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #059669 100%);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    max-height: 520px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.contato-img-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2);
}

.contato-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.5s ease;
}

.contato-img-placeholder:hover img {
    transform: scale(1.05);
}

.contato-form-wrapper {
    flex: 1 1 55%;
    background: #f8f9fa;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(16, 185, 129, 0.06);
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contato-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    text-align: left;
}

.contato-subtitle {
    color: #4b5563;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.whatsapp-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #25D366;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
}

.whatsapp-button i {
    font-size: 1.8rem;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.3);
    background: #22c55e;
}

.whatsapp-info {
    color: #6b7280;
    font-size: 0.95rem;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 900px) {
    .contato-split {
        flex-direction: column;
        gap: 2rem;
        max-width: 100vw;
        padding: 0 1rem;
    }
    .contato-img-placeholder {
        min-height: 240px;
        max-height: 280px;
        border-radius: 20px;
    }
    .contato-img-placeholder img {
        border-radius: 20px;
    }
    .contato-form-wrapper {
        padding: 2rem 1.5rem;
    }
    .whatsapp-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .contato-form-wrapper {
        padding: 1.5rem 1rem;
    }
    .whatsapp-button {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    .whatsapp-button i {
        font-size: 1.5rem;
    }
    .whatsapp-info {
        font-size: 0.9rem;
    }
}

.footer.novo-footer {
    background: #f8f9fa;
    color: #222;
    padding: 0;
    border-top: 1.5px solid #e5e7eb;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-social i {
    font-size: 1.5rem;
    color: #222;
    transition: color 0.2s;
}

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

.footer-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 1.5rem 0 0.5rem 0;
}

.footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 0.5rem 0;
}

.footer-logo-block {
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.footer-addresses-right {
    flex: 2 1 350px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.7rem;
}

.footer-address-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    color: #222;
}

.footer-address-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-phone-block {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    color: #222;
    margin-top: 0.5rem;
}

.footer-phone-block i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
        text-align: center;
    }
    .footer-logo-block {
        justify-content: center;
    }
    .footer-addresses-right {
        align-items: center;
    }
}

.footer-bottom {
    text-align: center;
    color: #6b7280;
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

@media (max-width: 600px) {
    .footer-main {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    .footer-logo-block {
        font-size: 1.3rem;
    }
    .footer-logo {
        font-size: 1.3rem;
    }
    .footer-addresses {
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom {
        font-size: 0.95rem;
    }
}

.footer-addresses-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.5rem;
    display: block;
    text-align: right;
}

.footer-logo-desc {
    display: block;
    font-size: 1rem;
    color: #374151;
    font-weight: 400;
    margin-top: 0.3rem;
    max-width: 220px;
    line-height: 1.5;
    text-align: left;
} 

/* Felipe */

a {
    text-decoration: none;
}

/* Portfólio Section */
.portfolio.novo-portfolio {
    padding: 100px 0;
    background-color: var(--secondary-bg);
    position: relative;
}

.portfolio.novo-portfolio h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.portfolio-intro {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    text-align: center;
    font-size: 1.2rem;
    color: #4b5563;
}

.portfolio-swiper {
    margin-top: 40px;
    padding: 20px 0 60px 0;
}

.portfolio-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(16, 185, 129, 0.06);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: var(--secondary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.portfolio-image picture {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-image picture img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.portfolio-image-mobile {
    display: none;
}

@media (max-width: 768px) {
    .portfolio-image picture:not(.portfolio-image-mobile) {
        /* display: none; */
    }
    
    .portfolio-image-mobile {
        display: block;
        width: 100%;
        height: 100%;
    }
    
    .portfolio-image-mobile img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.portfolio-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.portfolio-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.portfolio-tech span {
    background: var(--secondary-bg);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.portfolio-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Swiper Navigation */
.portfolio-swiper .swiper-button-next,
.portfolio-swiper .swiper-button-prev {
    color: var(--primary-color);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.portfolio-swiper .swiper-button-next:after,
.portfolio-swiper .swiper-button-prev:after {
    font-size: 1.5rem;
}

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

.portfolio-swiper .swiper-pagination {
    bottom: 20px;
}

.portfolio-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    opacity: 0.5;
}

.portfolio-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 1024px) {
    .portfolio-item {
        gap: 30px;
    }

    .portfolio-content {
        padding: 30px 30px 30px 0;
    }

    .portfolio-content h3 {
        font-size: 1.8rem;
    }

    .portfolio-image {
        min-height: 350px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .portfolio-item {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .portfolio-image {
        min-height: 250px;
        padding: 20px;
    }

    .portfolio-content {
        padding: 30px;
    }

    .portfolio-content h3 {
        font-size: 1.5rem;
    }

    .portfolio-swiper .swiper-button-next,
    .portfolio-swiper .swiper-button-prev {
        display: none;
    }
}

/* Modal de Estágio */
.modal-estagio-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(34, 34, 34, 0.55);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.modal-estagio-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(16, 185, 129, 0.13);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 700px;
    width: 95vw;
    position: relative;
    text-align: center;
    animation: fadeInModal 0.3s;
}

@keyframes fadeInModal {
    from { opacity: 0; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
}

.modal-estagio-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #374151;
    cursor: pointer;
    transition: color 0.2s;
}
.modal-estagio-close:hover {
    color: var(--primary-color);
}

.modal-estagio-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2.2rem;
}

.modal-estagio-opcoes {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-estagio-card {
    background: #f8f9fa;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.07);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.modal-estagio-card:hover {
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.13);
    transform: translateY(-4px) scale(1.03);
}

.modal-estagio-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.modal-estagio-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
}

.modal-estagio-card p {
    color: #374151;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.modal-estagio-btn {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.modal-estagio-btn:hover {
    background: #059669;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

@media (max-width: 900px) {
    .modal-estagio-overlay {
        align-items: stretch;
        justify-content: stretch;
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
    }
    .modal-estagio-content {
        width: 100vw;
        height: 100vh;
        max-width: 100vw;
        max-height: 100vh;
        border-radius: 0;
        box-shadow: none;
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow-y: auto;
    }
    .modal-estagio-close {
        top: 12px;
        right: 16px;
        font-size: 2.2rem;
    }
    .modal-estagio-opcoes {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
    .modal-estagio-card {
        min-width: 0;
        max-width: 100%;
        width: 100%;
        padding: 1.2rem 0.7rem 1rem 0.7rem;
        font-size: 1rem;
    }
    .modal-estagio-content h2 {
        font-size: 1.2rem;
    }
    .modal-estagio-emoji {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .modal-estagio-overlay {
        align-items: stretch;
        justify-content: stretch;
    }
    .modal-estagio-content {
        width: 100vw;
        height: 100vh;
        max-width: 100vw;
        max-height: 100vh;
        border-radius: 0;
        box-shadow: none;
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .modal-estagio-close {
        top: 12px;
        right: 16px;
        font-size: 2.2rem;
    }
    .modal-estagio-opcoes {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
    .modal-estagio-card {
        min-width: 0;
        max-width: 100%;
        width: 100%;
        padding: 1.2rem 0.7rem 1rem 0.7rem;
        font-size: 1rem;
    }
    .modal-estagio-content h2 {
        font-size: 1.2rem;
    }
    .modal-estagio-emoji {
        font-size: 2rem;
    }
}

/* Depoimentos Section */
.depoimentos-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.depoimento-card.novo {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(16, 185, 129, 0.06);
  padding: 2rem 2.5rem;
  gap: 2.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.depoimento-card.novo:hover {
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.12);
  transform: translateY(-4px) scale(1.02);
}

.depoimento-img-placeholder {
  width: 140px;
  height: 140px;
  background: var(--primary-color);
  border-radius: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(16,185,129,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--primary-color);
}

.depoimento-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.3s ease;
}

.depoimento-card.novo:hover .depoimento-img-placeholder img {
  transform: scale(1.05);
}

.depoimento-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--primary-color);
}

.depoimento-cargo {
  display: block;
  font-size: 1.05rem;
  color: #374151;
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.depoimento-info p {
  color: #374151;
  font-size: 1.08rem;
  line-height: 1.5;
  text-align: justify;
  font-style: italic;
}

.depoimento-nome-cargo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0.7rem;
  margin-bottom: 0.2rem;
}

.depoimento-nome-cargo h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 0.2rem 0;
  text-align: center;
}

.depoimento-nome-cargo .depoimento-cargo {
  font-size: 0.98rem;
  color: #374151;
  font-weight: 500;
  text-align: center;
  margin: 0;
}

.depoimento-foto-bloco {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 140px;
  margin-right: 1.5rem;
}

@media (max-width: 900px) {
  .depoimentos-list {
    max-width: 100vw;
    padding: 0 1rem;
  }
  .depoimento-card.novo {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .depoimento-card.novo {
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding: 1.2rem 0.7rem;
    gap: 1rem;
  }
  .depoimento-foto-bloco {
    margin-right: 0;
    margin-bottom: 0.7rem;
  }
  .depoimento-img-placeholder {
    width: 100%;
    max-width: 110px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 12px;
    border-width: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin:auto
  }

  .depoimento-info h3 {
    text-align: center;
  }

  .depoimento-cargo {
    text-align: center;
  }
  .depoimento-img-placeholder img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 1/1;
  }
  .depoimentos h2, #depoimentos-titulo {
    font-size: 1.5rem;
  }
}

.depoimentos h2, #depoimentos-titulo {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

@media (max-width: 600px) {
  .texto-limitado {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    max-height: 7.5em;
    text-overflow: ellipsis;
  }
  .texto-limitado.expandido {
    display: block;
    max-height: none;
    -webkit-line-clamp: unset;
  }
  .leia-mais {
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    margin-top: 0.5em;
    font-size: 1rem;
  }
}

/* Time Section */
.time.novo-time {
    margin-top: 50px;
    position: relative;
    width: 100vw;
    height: 100vh;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.time-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.time-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.time-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.time-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
    color: #fff;
    width: 100%;
}

.time-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.time-text {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #fff;
    font-weight: 400;
}

@media (max-width: 768px) {
    .time-content {
        padding: 3rem 1.5rem;
    }
    
    .time-content h2 {
        font-size: 2.2rem;
    }
    
    .time-text {
        font-size: 1.2rem;
    }
}