* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #1b3b2f !important;
    color: #fff;
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    background: transparent;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #2ca89a;
}

.contact-info {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    align-items: center;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}

.contact-info i {
    font-size: 1.1rem;
    color: #2ca89a;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .contact-info {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .contact-info.active {
        display: flex;
    }

    nav {
        padding: 0.5rem 0;
    }

    .logo img {
        height: 35px;
    }
}

/* Estilos específicos que não podem ser feitos com Tailwind */

/* Animações do menu mobile */
.nav-links.active {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1rem 0;
}

.contact-info.active {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1rem 0;
}

/* Ajustes específicos para mobile */
@media (max-width: 1024px) {
    .nav-links.active li {
        margin: 10px 0;
    }
    .nav-links.active a {
        display: block;
        border: 2px solid #2ca89a;
        border-radius: 12px;
        padding: 10px 18px;
        background: #79b17e;
        color: #1b3b2f !important;
        font-weight: bold;
        transition: background 0.2s, color 0.2s, border 0.2s;
        box-shadow: 0 2px 8px #1b3b2f11;
        margin-left: auto;
        margin-right: auto;
        width: 320px;
    }
    .nav-links.active a:hover {
        background: #2ca89a;
        color: #fff !important;
        border-color: #1b3b2f;
    }
    .mobile-logo {
        display: flex !important;
    }
    .company-name-mobile {
        display: block !important;
        text-align: center;
        color: #1b3b2f;
        font-family: 'Bebas Neue Bold', Arial, sans-serif;
        font-size: 1.5rem;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }
}

.company-name-mobile {
    display: none;
}

@media (min-width: 1025px) {
    .company-name-desktop {
        display: none !important;
    }
}

/* Carrossel */
.carousel-container {
    padding-top: 80px;
    height: calc(100vh - 0px);
    box-sizing: border-box;
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #1b3b2f;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-text {
    position: absolute;
    top: calc(50% + 0px);
    left: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    width: 90%;
    max-width: 800px;
    text-shadow: 2px 2px 8px #1b3b2f;
    background: rgba(35, 64, 56, 0.85);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 24px rgba(35, 64, 56, 0.25);
}

.carousel-text h2 {
    font-family: 'Bebas Neue Bold', Arial, sans-serif;
    color: #1b3b2f;
    text-shadow: 1px 2px 8px #5c616034, 0 2px 12px #0002;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 3rem;
}

.carousel-text p {
    color: #1b3b2f;
    font-size: 1.7rem;
    font-family: 'Arial', sans-serif;
    text-transform: none;
}

.carousel-text.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.03);
}

.carousel-text.no-bg {
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #2ca89a;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background 0.3s, transform 0.2s;
    z-index: 20;
    box-shadow: 0 2px 8px rgba(35, 64, 56, 0.2);
}

.carousel-button:hover {
    background: #1b3b2f;
    color: #8fd3c7;
    transform: scale(1.08);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

@media (max-width: 768px) {
    .carousel-container {
        padding-top: 60px;
    }
    .carousel-text {
        top: calc(50% + 30px);
        padding: 1.2rem 0.5rem;
        font-size: 1rem;
    }
    .carousel-text h2 {
        font-size: 2rem;
    }
    .carousel-text p {
        font-size: 1.1rem;
    }
    .carousel-button {
        display: none !important;
    }
}

@font-face {
    font-family: 'Bebas Neue Bold';
    src: url('../fonts/BebasNeueBold-w1w42_0.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

.carousel-text h2, .carousel-text p {
/*    font-family: 'Bebas Neue Bold', Arial, sans-serif;*/
}

.mobile-logo {
    display: none;
}

@media (max-width: 1024px) {
    .nav-links.active ~ .mobile-logo {
        display: flex !important;
    }
}

.cta-section {
    background: #20c7a7;
    border-bottom: 6px solid #fff;
}
.cta-left img {
    padding: 10px;
    width: 100px;
}
.perfil-img-av {
    background-image: url('../imagens/perfil_av.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    margin-left: -35px;
    margin-top: -45px;
    box-shadow: 0 0 4px #000000c7;    
}
.whatsapp-cta-btn, .whatsapp-cta-btn-footer {
    width: max-content;
    background: #1b3b2f;
    color: #fff !important;
    border-radius: 32px;
    padding: 12px 32px 12px 28px;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 12px #0002;
    border: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.whatsapp-cta-btn-footer {
    background: #25d366 !important;
    color: #1b3b2f !important;
}

.whatsapp-cta-btn i, .whatsapp-cta-btn-footer i {
    transition: transform 0.5s cubic-bezier(.68,-0.55,.27,1.55), color 0.2s;
}
.whatsapp-cta-btn:hover {
    background: #25d366;
    color: #1b3b2f !important;
    box-shadow: 0 4px 20px #1b3b2f33;
}
.whatsapp-cta-btn-footer:hover {
    background: #1b3b2f;
    color: #fff !important;
    box-shadow: 0 4px 20px #1b3b2f33;
}
.whatsapp-cta-btn:hover i, .whatsapp-cta-btn-footer:hover i {
    transform: rotate(360deg) scale(1.2);
    color: #1b3b2f;
}
@media (max-width: 768px) {
    .cta-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    .cta-left, .cta-right {
        width: 100% !important;
        justify-content: center;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    .cta-right {
        margin-bottom: 0;
    }
    .whatsapp-cta-btn {
        width: 100%;
        justify-content: center;
        font-size: 1.1rem;
    }
}

.cta-section-parallax {
    position: relative;
    min-height: 340px;
    border-bottom: 6px solid #fff;
    display: flex;
    align-items: center;
}
.cta-bg-parallax {
    z-index: 1;
    pointer-events: none;
}
.cta-bg-overlay {
    z-index: 2;
    pointer-events: none;
}
.cta-content {
    z-index: 3;
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    min-height: 340px;
    height: 100%;
}
.cta-col {
    padding: 0 1rem;
}
@media (max-width: 1024px) {
    .cta-content {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
    }
    .cta-col {
        width: 100% !important;
        padding: 0;
        margin-bottom: 0;
    }
}

.cta-center .text-lg {
    text-align: justify !important;
}

.servicos-section {
    background: #f6f8f9;
}
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.servico-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e2e8f0;
}
.servico-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.servico-img {
    width: 100%;
    height: 220px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.servico-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}
.servico-info {
    background: #20c7a7;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 180px;
}
.servico-info h3 {
    color: #1b3b2f;
    font-family: 'Bebas Neue Bold', Arial, sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
}
.servico-info p {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}
@media (max-width: 1024px) {
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    .servico-info {
        padding: 1.2rem 1rem;
        min-height: 120px;
    }
    .servico-img {
        height: 160px;
    }
}

.servicos-section h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}
.servico-info h3 {
    font-size: 1.7rem;
    margin-bottom: 0.3rem;
}

.cta-final-section {
    position: relative;
    min-height: 320px;
    background: #222b2e;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-final-bg {
    z-index: 1;
    pointer-events: none;
}
.cta-final-overlay {
    z-index: 2;
    pointer-events: none;
}
.cta-final-content {
    z-index: 3;
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
}
.cta-final-title {
    font-size: 2.7rem;
    color: #fff;
    font-family: 'Bebas Neue Bold', Arial, sans-serif;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}
.cta-final-subtext {
    color: #20c7a7;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}
@media (max-width: 768px) {
    .cta-final-title {
        font-size: 1.5rem;
    }
    .cta-final-content {
        padding: 1.2rem 0.5rem;
    }
}

.perfil-section {
    width: 100%;
    background: #fff;
    padding: 4rem 0;
}
.perfil-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.perfil-info {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.perfil-info h2 {
    color: #1b3b2f;
    font-family: 'Bebas Neue Bold', Arial, sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}
.perfil-info p {
    color: #444;
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
}
.perfil-destaque {
    background: #20c7a7;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}
.perfil-img {
    flex: 1 1 0%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.perfil-img img {
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px #1b3b2f22;
    max-width: 320px;
    width: 100%;
    height: auto;
    object-fit: cover;
}
@media (max-width: 1024px) {
    .perfil-container {
        flex-direction: column;
        gap: 2.5rem;
        padding: 0 1rem;
    }
    .perfil-info, .perfil-img {
        width: 100%;
        max-width: 100%;
    }
    .perfil-img img {
        max-width: 260px;
    }
}

.cta3-section {
    width: 100%;
    background: #20c7a7;
    padding: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta3-citacao {
    color: #fff;
    font-size: 2.3rem;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 900px;
}
.cta3-assinatura {
    color: #1b3b2f;
    opacity: 0.8;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    font-family: Arial, sans-serif;
}
.cta3-section .whatsapp-cta-btn {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
@media (max-width: 768px) {
    .cta3-citacao {
        font-size: 1.3rem;
        padding: 0 0.5rem;
    }
    .cta3-assinatura {
        font-size: 0.95rem;
    }
}

.faq-section {
    background: #fff;
    padding: 4rem 0;
}
.faq-list {
    width: 100%;
}
.faq-item {
    border: 1.5px solid #20c7a7;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    background: #f6f8f9;
    box-shadow: 0 2px 12px #20c7a71a;
    transition: box-shadow 0.2s;
}
.faq-item.open, .faq-item:focus-within {
    box-shadow: 0 4px 24px #20c7a733;
}
.faq-question {
    background: #f6f8f9;
    color: #1b3b2f;
    font-size: 1.15rem;
    font-weight: bold;
    border: none;
    outline: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    transition: background 0.2s;
}
.faq-question:hover {
    background: #e2e8f0;
}
.faq-toggle {
    font-size: 2rem;
    color: #20c7a7;
    margin-left: 1rem;
    transition: transform 0.3s;
}
.faq-answer {
    background: #fff;
    color: #444;
    font-size: 1.05rem;
    padding: 1.2rem 1.5rem;
    border-top: 1px solid #e2e8f0;
    animation: fadeInFaq 0.3s;
}
@keyframes fadeInFaq {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
    .faq-section {
        padding: 2.5rem 0;
    }
    .faq-question, .faq-answer {
        padding: 1rem 1rem;
        font-size: 1rem;
    }
}

.testimonials-section {
    position: relative;
    background: #e6f2ef;
    padding: 4rem 0;
    overflow: hidden;
}
.testimonials-bg {
    z-index: 1;
    pointer-events: none;
}
.testimonials-overlay {
    z-index: 2;
    pointer-events: none;
}
.testimonials-section .container {
    position: relative;
    z-index: 3;
}
.testimonial-card {
    background: rgba(255,255,255,0.7);
    color: #1b3b2f;
}
.testimonial-text {
    color: #1b3b2f;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.testimonial-card {
    background: rgba(255,255,255,0.05);
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px #0002;
    padding: 2.5rem 2rem;
    border: 1.5px solid #20c7a7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 220px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
    box-shadow: 0 8px 32px #20c7a733;
    transform: translateY(-6px) scale(1.03);
}
.testimonial-text {
    color: #fff;
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1.2rem;
    text-align: center;
}
.testimonial-author {
    color: #20c7a7;
    font-size: 1.05rem;
    font-weight: bold;
    text-align: center;
    margin-top: 0.5rem;
}
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .testimonials-section {
        padding: 2.5rem 0;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
}

.footer-section {
    background: #1b3b2f;
    color: #fff;
    width: 100%;
    padding-top: 2.5rem;
    padding-bottom: 0;
}
.footer-main {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 2rem 1.5rem;
}
.footer-logo img {
    height: 56px;
    width: auto;
    margin-bottom: 1rem;
}
.footer-contact {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    font-size: 1rem;
    color: #fff;
}
.footer-address > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    text-align: left;
    margin-bottom: 0.15rem;
}
.footer-address {
    align-items: flex-start !important;
    text-align: left !important;
}
.footer-phone {
    color: #fff;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}
.footer-socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
}
.footer-social-icon {
    color: #fff;
    font-size: 2rem;
    transition: color 0.2s;
}
.footer-social-icon:hover {
    color: #20c7a7;
}
.footer-bar {
    background: #16251e;
    color: #fff;
    width: 100%;
    padding: 1rem 0.5rem;
    font-size: 0.98rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.footer-credit a {
    color: #20c7a7;
    text-decoration: underline;
    transition: color 0.2s;
}
.footer-credit a:hover {
    color: #fff;
}
@media (max-width: 1024px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 0 1rem 2rem 1rem;
    }
    .footer-contact, .footer-logo, .footer-socials {
        width: 100%;
        align-items: center;
        text-align: center;
        justify-content: center;
    }
    .footer-logo img {
        margin-bottom: 0.5rem;
    }
    .footer-address {
        align-items: center !important;
        text-align: center !important;
    }
    .footer-address > div {
        justify-content: center;
        text-align: center;
    }
}

.institucional-section {
    position: relative;
    background: #f6f8f9;
    padding: 4rem 0;
    overflow: hidden;
}
.institucional-bg {
    z-index: 1;
    pointer-events: none;
}
.institucional-overlay {
    z-index: 2;
    pointer-events: none;
}
.institucional-section .container {
    position: relative;
    z-index: 3;
}
.institucional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.institucional-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e2e8f0;
    min-height: 420px;
}
.institucional-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.institucional-img {
    width: 100%;
    height: 220px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.institucional-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}
.institucional-info {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1 1 0%;
}
.institucional-info h3 {
    color: #1b3b2f;
    font-family: 'Bebas Neue Bold', Arial, sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
}
.institucional-info p {
    color: #444;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}
.institucional-btn {
    background: #20c7a7;
    color: #fff;
    font-weight: bold;
    border-radius: 10px;
    padding: 0.7rem 2rem;
    font-size: 1rem;
    box-shadow: 0 2px 8px #20c7a711;
    transition: background 0.2s, color 0.2s;
    text-align: center;
    display: inline-block;
}
.institucional-btn:hover {
    background: #1b3b2f;
    color: #fff;
}
@media (max-width: 1024px) {
    .institucional-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .institucional-section {
        padding: 2.5rem 0;
    }
    .institucional-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .institucional-info {
        padding: 1.2rem 1rem;
    }
    .institucional-img {
        height: 160px;
    }
}

.institucional-tabs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.institucional-tab {
    background: #e6f2ef;
    color: #1b3b2f;
    border: none;
    outline: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.9rem 2.2rem;
    border-radius: 1.2rem 1.2rem 0 0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px #20c7a711;
}
.institucional-tab.active, .institucional-tab:hover {
    background: #20c7a7;
    color: #fff;
}
.institucional-tabs-content {
    background: #fff;
    border-radius: 0 0 1.5rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 2.5rem 2rem;
    min-height: 320px;
}
.institucional-tab-content {
    display: block;
    animation: fadeInTab 0.3s;
}
.institucional-tab-content.hidden {
    display: none;
}
@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 1024px) {
    .institucional-tabs-content {
        padding: 1.5rem 0.5rem;
    }
    .institucional-img {
        height: 180px;
    }
}
@media (max-width: 768px) {
    .institucional-tabs {
        flex-direction: column;
        gap: 0.2rem;
    }
    .institucional-tab {
        border-radius: 1.2rem 1.2rem 0 0;
        width: 100%;
        text-align: center;
        padding: 0.8rem 0.5rem;
        font-size: 1rem;
    }
    .institucional-tabs-content {
        padding: 1rem 0.2rem;
    }
    .institucional-img {
        height: 120px;
    }
}

#backToTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    background: #20c7a7;
    color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 16px #20c7a733;
    padding: 1.1rem 1.2rem;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, background 0.2s, transform 0.2s;
    transform: translateY(40px);
}
#backToTop.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
#backToTop:hover {
    background: #1b3b2f;
    color: #fff;
} 