/* ============================================
   AEAB - Home CSS
   Estilos específicos para a página inicial (index.html)
   Nota: Estilos comuns (header, footer, etc.) estão em base-public.css
   ============================================ */

/* ============================================
   HERO SECTION - INDEX
   ============================================ */
.corporate-hero {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(121, 31, 83, 0.65) 0%, rgba(0, 98, 57, 0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    padding: 0 2rem;
    margin: -25rem auto 0;
}

.hero-text {
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary {
    background: white;
    color: #791F53;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #791F53;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   QUICK ACCESS SECTION
   ============================================ */
.quick-access-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 2rem;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}

.quick-access-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.quick-access-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.quick-access-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(121, 31, 83, 0.15);
    border-color: #791F53;
}

.quick-access-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #791F53 0%, #006239 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.quick-access-card:hover .quick-access-icon {
    transform: scale(1.1) rotate(5deg);
}

.quick-access-content h3 {
    font-size: 1.6rem;
    color: #791F53;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.quick-access-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.quick-btn-primary {
    background: linear-gradient(135deg, #791F53 0%, #006239 100%);
    color: white;
}

.quick-btn-primary:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(121, 31, 83, 0.3);
}

.quick-btn-secondary {
    background: linear-gradient(135deg, #006239 0%, #791F53 100%);
    color: white;
}

.quick-btn-secondary:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 98, 57, 0.3);
}

.qr-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.qr-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #f8f9fa;
    color: #791F53;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #791F53;
}

.qr-link:hover {
    background: #791F53;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(121, 31, 83, 0.3);
}

.qr-link i {
    font-size: 0.9rem;
}

/* ============================================
   HERO SECTION - ÓRGÃOS SOCIAIS
   ============================================ */
.orgaos-hero {
    background: linear-gradient(135deg, #791F53 0%, #006239 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    margin-bottom: 0;
}

.orgaos-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.orgaos-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.8;
}

/* ============================================
   SEÇÕES CORPORATIVAS
   ============================================ */
.corporate-section {
    padding: 1.25rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #791F53;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro h2 {
    font-size: 2.5rem;
    color: #791F53;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-intro p {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #791F53 0%, #006239 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(121, 31, 83, 0.15);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #791F53 0%, #006239 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.3rem;
    color: #791F53;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Service Card Expansion Effect */
.service-card {
    cursor: pointer;
    height: auto;
    min-height: 150px;
}

.service-description {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    margin-top: 0;
}

.service-description p {
    margin: 0;
    padding-top: 0;
}

/* Desktop: Expand on hover */
@media (min-width: 769px) {
    .service-card:hover .service-description {
        max-height: 200px;
        opacity: 1;
        margin-top: 1rem;
    }
}

/* Mobile: Expand on click */
@media (max-width: 768px) {
    .service-card.expanded .service-description {
        max-height: 200px;
        opacity: 1;
        margin-top: 1rem;
    }
    
    .service-card.expanded {
        background: #f8f9fa;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: #f8f9fa;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.about-card h3 {
    font-size: 1.5rem;
    color: #791F53;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
}

.about-card h3 i {
    font-size: 1.3rem;
}

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

.about-image {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    display: block;
    margin: 0 auto;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, #791F53 0%, #006239 100%);
    color: white;
    padding: 2.5rem 2rem;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-box {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: #f8f9fa;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-card h3 {
    font-size: 1.8rem;
    color: #791F53;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon-box {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #791F53 0%, #006239 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info h4 {
    color: #791F53;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-info a {
    color: #791F53;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* ============================================
   ÓRGÃOS SOCIAIS SECTION
   ============================================ */
.orgaos-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: #f8f9fa;
}

.orgaos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.orgao-card {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border-top: 5px solid #791F53;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.orgao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(121, 31, 83, 0.05) 0%, rgba(0, 98, 57, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.orgao-card:hover::before {
    opacity: 1;
}

.orgao-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(121, 31, 83, 0.15);
    border-top-color: #006239;
}

.orgao-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.orgao-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #791F53;
    box-shadow: 0 8px 20px rgba(121, 31, 83, 0.2);
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.orgao-card:hover img {
    border-color: #006239;
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 98, 57, 0.3);
}

.orgao-icon {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #791F53 0%, #006239 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 2;
}

.orgao-card h3 {
    color: #791F53;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.orgao-card .cargo {
    color: #006239;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.orgao-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.orgao-card .contact-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.orgao-card .contact-info a {
    color: #791F53;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.orgao-card .contact-info a:hover {
    color: #006239;
}

/* ============================================
   FOOTER CORPORATIVO
   Nota: Estilos do footer estão em base-public.css
   ============================================ */
.corporate-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 2.5rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.4rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #791F53 0%, #006239 100%);
}

.footer-about {
    padding-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-about p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column a:hover {
    color: white;
    padding-left: 5px;
}

.footer-column a i.fa-chevron-right {
    font-size: 0.7rem;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: rgba(255,255,255,0.8);
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact i {
    color: #791F53;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-contact span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact strong {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-contact .contact-hours,
.footer-contact .response-time {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #791F53 0%, #006239 100%);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(121, 31, 83, 0.4);
}

/* Newsletter Section in Footer */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: center;
}

.newsletter-content h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    outline: none;
}

.btn-newsletter {
    padding: 0.9rem 2rem;
    background: white;
    color: #791F53;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-newsletter:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.newsletter-feedback {
    margin-top: 0.8rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: none;
}

.newsletter-feedback.success {
    display: block;
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.newsletter-feedback.error {
    display: block;
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-links span {
    color: rgba(255,255,255,0.4);
}

.footer-credits {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-credits i {
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.footer-column h4 i {
    margin-right: 0.5rem;
    color: #791F53;
    font-size: 1rem;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ============================================
   MODAL RETIRAR SENHA
   Nota: Estilos do modal estão em base-public.css
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    border-radius: 24px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    border: none;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close:hover {
    background: #791F53;
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(135deg, #791F53 0%, #006239 100%);
    color: white;
    border-radius: 24px 24px 0 0;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.modal-body {
    padding: 2.5rem;
}

.escola-options {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.escola-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.escola-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #791F53 0%, #006239 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.escola-card:hover::before {
    transform: scaleY(1);
}

.escola-card:hover {
    background: white;
    border-color: #791F53;
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(121, 31, 83, 0.15);
}

.escola-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #791F53 0%, #006239 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.escola-card:hover .escola-icon {
    transform: scale(1.1) rotate(5deg);
}

.escola-card h3 {
    font-size: 1.5rem;
    color: #791F53;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.escola-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.escola-arrow {
    margin-left: auto;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #791F53;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.escola-card:hover .escola-arrow {
    background: #791F53;
    color: white;
    transform: translateX(5px);
}

.modal-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.modal-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e0e0e0;
}

.modal-divider span {
    background: white;
    padding: 0 1rem;
    color: #999;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.qr-code-option {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 16px;
}

.qr-code-option h4 {
    font-size: 1.3rem;
    color: #791F53;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.qr-code-option p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.qr-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    background: white;
    color: #791F53;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid #791F53;
    transition: all 0.3s ease;
}

.qr-btn:hover {
    background: #791F53;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(121, 31, 83, 0.3);
}

/* ============================================
   RESPONSIVO
   ============================================ */

/* Tablet e Desktop pequeno (968px) */
@media (max-width: 968px) {
    .header-container {
        padding: 0 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1002;
        position: relative;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: linear-gradient(135deg, #791F53 0%, #006239 100%);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
        overflow-y: auto;
        z-index: 1001;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 5rem 1.5rem 2rem;
        height: auto;
        min-height: 100%;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .main-nav .nav-menu.active {
        right: 0;
    }
    
    body.menu-open .main-nav {
        right: 0;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1000;
        animation: fadeIn 0.3s ease;
        backdrop-filter: blur(2px);
    }
    
    /* Melhorias no menu mobile */
    .main-nav.active {
        right: 0 !important;
    }
    
    /* Scroll suave no menu mobile */
    .main-nav {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(255,255,255,0.3) transparent;
    }
    
    .main-nav::-webkit-scrollbar {
        width: 6px;
    }
    
    .main-nav::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .main-nav::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.3);
        border-radius: 3px;
    }
    
    .main-nav::-webkit-scrollbar-thumb:hover {
        background: rgba(255,255,255,0.5);
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        margin: 0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu li.nav-divider {
        display: none;
    }
    
    .nav-menu li.nav-highlight {
        margin-left: 0;
        border-bottom: none;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255,255,255,0.2);
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
        width: 100%;
    }
    
    .nav-highlight {
        width: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255,255,255,0.2);
    }
    
    .nav-highlight a {
        padding: 0.9rem 1.2rem !important;
        justify-content: center;
        width: 100%;
        border-radius: 8px;
        font-size: 0.95rem;
        margin: 0;
    }
    
    .btn-senha {
        background: rgba(255,255,255,0.2);
    }
    
    .btn-fila {
        background: rgba(255,255,255,0.2);
        margin-top: 0.5rem;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .corporate-hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .orgaos-hero h1 {
        font-size: 2.2rem;
    }
    
    .orgaos-hero p {
        font-size: 1.1rem;
    }
    
    .corporate-section,
    .orgaos-section {
        padding: 3rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-intro h2 {
        font-size: 2rem;
    }
    
    .about-section {
        padding: 2.5rem 1.5rem;
    }
    
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    .about-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .about-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .quick-access-section {
        padding: 3rem 1.5rem;
    }
    
    .quick-access-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quick-access-card {
        padding: 2rem;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: center;
    }
    
    .footer-about .footer-logo {
        justify-content: center;
    }
    
    .footer-about .footer-social {
        justify-content: center;
    }
    
    .footer-newsletter {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-bottom-content {
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        padding: 2rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .btn-newsletter {
        width: 100%;
        justify-content: center;
    }
    
    .orgaos-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 2rem;
    }
    
    .orgao-card {
        padding: 2.5rem 1.5rem;
    }
}

/* Mobile (600px) */
@media (max-width: 600px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .logo-section img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .main-nav {
        width: 280px;
        max-width: 85vw;
        right: -100%;
    }
    
    /* Garantir que o header não seja coberto pelo menu */
    .corporate-header {
        z-index: 1002;
    }
    
    .mobile-menu-toggle {
        z-index: 1003;
    }
    
    .corporate-hero {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-content {
        padding: 0 1rem;
        margin: -15rem auto 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .scroll-indicator {
        bottom: 1rem;
        font-size: 1.3rem;
    }
    
    .quick-access-section {
        padding: 2rem 1rem;
        margin-top: -1rem;
    }
    
    .quick-access-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .quick-access-content h3 {
        font-size: 1.2rem;
    }
    
    .quick-access-content p {
        font-size: 0.9rem;
    }
    
    .quick-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .qr-links {
        flex-direction: column;
        width: 100%;
    }
    
    .qr-link {
        width: 100%;
        justify-content: center;
    }
    
    .orgaos-hero {
        padding: 2rem 1rem;
    }
    
    .orgaos-hero h1 {
        font-size: 1.6rem;
    }
    
    .orgaos-hero p {
        font-size: 0.9rem;
    }
    
    .corporate-section,
    .orgaos-section {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .section-intro h2 {
        font-size: 1.6rem;
    }
    
    .section-intro p {
        font-size: 0.9rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin: 0 auto 0.75rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .stats-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
    
    .stat-box {
        padding: 1rem 0.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .contact-container {
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-about {
        grid-column: 1;
    }
    
    .footer-column h4 {
        text-align: center;
        font-size: 1rem;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-column ul {
        text-align: center;
    }
    
    .footer-column ul li {
        margin-bottom: 0.4rem;
    }
    
    .footer-column a {
        font-size: 0.85rem;
    }
    
    .footer-contact li {
        flex-direction: column;
        text-align: center;
        align-items: center;
        margin-bottom: 1rem;
        font-size: 0.85rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .btn-newsletter {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 1rem;
        right: 1rem;
        font-size: 1rem;
    }
    
    .orgaos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .orgao-card {
        padding: 1.5rem 1rem;
    }
    
    .orgao-card img {
        width: 110px;
        height: 110px;
    }
    
    .orgao-card h3 {
        font-size: 1.3rem;
    }
    
    .orgao-card .cargo {
        font-size: 0.85rem;
    }
    
    .orgao-card p {
        font-size: 0.95rem;
    }
    
    .orgao-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile (400px) */
@media (max-width: 400px) {
    .header-container {
        padding: 0 0.75rem;
    }
    
    .logo-section img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .main-nav {
        width: 260px;
        max-width: 90vw;
    }
    
    .nav-menu {
        padding: 4.5rem 1.2rem 1.5rem;
    }
    
    .nav-menu a {
        font-size: 0.95rem;
        padding: 0.9rem 0;
    }
    
    .nav-highlight a {
        padding: 0.8rem 1rem !important;
        font-size: 0.9rem;
    }
    
    .mobile-menu-toggle {
        padding: 6px;
    }
    
    .mobile-menu-toggle span {
        width: 24px;
        height: 2.5px;
    }
    
    .corporate-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content {
        margin: -12rem auto 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .btn {
        padding: 0.65rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    .corporate-section,
    .orgaos-section {
        padding: 1.5rem 0.75rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(4, 1fr) !important; /* 4 colunas lado a lado */
        gap: 0.5rem;
    }
    
    .stat-box {
        padding: 0.75rem 0.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .service-card {
        padding: 1.25rem 0.75rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .service-card h3 {
        font-size: 1rem;
    }
    
    .service-card p {
        font-size: 0.8rem;
    }
    
    .quick-access-section {
        padding: 1.5rem 0.75rem;
    }
    
    .quick-access-card {
        padding: 1.5rem 1rem;
    }
    
    .quick-access-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .quick-access-content h3 {
        font-size: 1.1rem;
    }
    
    .quick-access-content p {
        font-size: 0.85rem;
    }
}


/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: white;
    padding: 5rem 2rem;
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto 2rem;
    overflow: hidden;
    padding: 0 60px;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    position: relative;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #791F53;
    box-shadow: 0 12px 40px rgba(121, 31, 83, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #791F53;
    box-shadow: 0 4px 15px rgba(121, 31, 83, 0.2);
}

.testimonial-photo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #791F53 0%, #006239 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    border: 3px solid #791F53;
    box-shadow: 0 4px 15px rgba(121, 31, 83, 0.2);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.3rem;
}

.testimonial-course {
    font-size: 0.95rem;
    color: #791F53;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.testimonial-school {
    font-size: 0.9rem;
    color: #666;
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #FFA500;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    position: relative;
    padding-left: 2rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: #791F53;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-quote-icon {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: #791F53;
    opacity: 0.1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #791F53;
    color: #791F53;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.carousel-btn:hover {
    background: #791F53;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(121, 31, 83, 0.3);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: #791F53;
    transform: scale(1.2);
}

.carousel-dot.active {
    background: #791F53;
    width: 30px;
    border-radius: 6px;
}

.testimonials-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: #999;
}

.testimonials-empty i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
    color: #791F53;
}

.testimonials-empty p {
    font-size: 1.1rem;
}

/* Responsive Design for Testimonials */
@media (max-width: 968px) {
    .testimonials-section {
        padding: 2.5rem 1rem;
    }
    
    .testimonials-carousel {
        padding: 0 45px;
        margin: 2rem auto 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .testimonials-section {
        padding: 2rem 1rem;
    }
    
    .testimonials-carousel {
        padding: 0 35px;
        margin: 1.5rem auto 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-photo,
    .testimonial-photo-placeholder {
        width: 65px;
        height: 65px;
    }
    
    .testimonial-name {
        font-size: 1.05rem;
    }
    
    .testimonial-course {
        font-size: 0.85rem;
    }
    
    .testimonial-school {
        font-size: 0.8rem;
    }
    
    .testimonial-rating {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .testimonial-rating i {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        padding-left: 1.25rem;
        line-height: 1.6;
    }
    
    .testimonial-text::before {
        font-size: 2.5rem;
        top: -5px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carousel-prev {
        left: -5px;
    }
    
    .carousel-next {
        right: -5px;
    }
    
    .testimonial-quote-icon {
        font-size: 1.8rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    .carousel-dots {
        margin-top: 1.5rem;
        gap: 0.6rem;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .carousel-dot.active {
        width: 25px;
    }
}

/* ============================================
   NEWS AND EVENTS SECTION
   ============================================ */
.news-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.news-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e0e0e0;
    background: white;
    color: #666;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-tab:hover {
    border-color: #791F53;
    color: #791F53;
    transform: translateY(-2px);
}

.filter-tab.active {
    background: linear-gradient(135deg, #791F53 0%, #006239 100%);
    color: white;
    border-color: transparent;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.news-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-image-placeholder {
    background: linear-gradient(135deg, #791F53 0%, #006239 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image-placeholder i {
    font-size: 4rem;
    color: rgba(255,255,255,0.3);
}

.news-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-noticia {
    background: #791F53;
    color: white;
}

.badge-evento {
    background: #006239;
    color: white;
}

.badge-anuncio {
    background: #FFA500;
    color: white;
}

.news-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.news-date,
.news-event-date {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.news-date i,
.news-event-date i {
    color: #791F53;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #791F53;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-link:hover {
    gap: 0.8rem;
    color: #006239;
}

.news-link i {
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(4px);
}

.news-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #999;
}

.news-empty i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.news-empty p {
    font-size: 1.1rem;
}

.news-more {
    text-align: center;
    margin-top: 3rem;
}

.news-more .btn {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

/* Filter Animation */
.news-card {
    animation: fadeIn 0.5s ease;
}

.news-card.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for News Section */
@media (max-width: 768px) {
    .news-section {
        padding: 2rem 1rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .news-filter-tabs {
        gap: 0.5rem;
        margin: 1.5rem 0 2rem;
    }
    
    .filter-tab {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .news-image {
        height: 180px;
    }
    
    .news-content {
        padding: 1.25rem;
    }
    
    .news-title {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }
    
    .news-excerpt {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .news-meta {
        font-size: 0.8rem;
    }
    
    .news-link {
        font-size: 0.9rem;
    }
}


/* ============================================
   PAGE HERO (for internal pages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, #791F53 0%, #006239 100%);
    padding: 4rem 2rem 3rem;
    text-align: center;
    color: white;
}

.page-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ============================================
   ARTICLE DETAILS PAGE
   ============================================ */
.article-container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.article-header {
    margin-bottom: 2rem;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.article-breadcrumb a {
    color: #791F53;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-breadcrumb a:hover {
    color: #006239;
}

.article-breadcrumb i {
    font-size: 0.7rem;
}

.article-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.article-date,
.article-event-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.article-date i,
.article-event-date i {
    color: #791F53;
}

.article-image {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.article-content {
    margin: 3rem 0;
}

.article-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid #791F53;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.related-news-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.related-news-section .news-grid {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.pagination li a,
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination li a:hover {
    border-color: #791F53;
    color: #791F53;
    transform: translateY(-2px);
}

.pagination li.active span {
    background: linear-gradient(135deg, #791F53 0%, #006239 100%);
    color: white;
    border-color: transparent;
}

.pagination li.ellipsis span {
    border: none;
    color: #999;
}

/* Responsive Design for Article Page */
@media (max-width: 768px) {
    .page-hero {
        padding: 2rem 1rem !important;
        min-height: auto !important;
    }
    
    .page-hero .hero-content {
        padding: 1.25rem 1.5rem !important;
    }
    
    .page-hero .hero-title {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .page-hero .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }
    
    .page-hero-content h1 {
        font-size: 1.6rem;
    }
    
    .page-hero-content p {
        font-size: 1rem;
    }
    
    .article-container {
        margin: 2rem auto;
        padding: 0 1rem;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .article-lead {
        font-size: 1rem;
        padding-left: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .article-body {
        font-size: 0.95rem;
    }
    
    .article-body p {
        margin-bottom: 1rem;
    }
    
    .pagination li a,
    .pagination li span {
        min-width: 35px;
        height: 35px;
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners-section {
    background: #f8f9fa;
}

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

.partners-category:last-of-type {
    margin-bottom: 2rem;
}

.partners-category-title {
    font-size: 1.5rem;
    color: #791F53;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(121, 31, 83, 0.15);
}

.partner-logo {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo img {
    transform: scale(1.05);
}

.partner-logo-placeholder {
    background: linear-gradient(135deg, #791F53 0%, #006239 100%);
    color: white;
}

.partner-logo-placeholder i {
    font-size: 3rem;
}

.partner-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.partner-name {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.partner-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #791F53;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.partner-link:hover {
    color: #006239;
    gap: 0.75rem;
}

.partner-link i {
    font-size: 0.85rem;
}

/* Become a Partner CTA */
.become-partner {
    background: linear-gradient(135deg, #791F53 0%, #006239 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(121, 31, 83, 0.2);
}

.become-partner-content {
    max-width: 700px;
    margin: 0 auto;
}

.become-partner i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.become-partner h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.become-partner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.become-partner .btn {
    background: white;
    color: #791F53;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.become-partner .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .partners-section {
        padding: 2rem 1rem;
    }
    
    .partners-category {
        margin-bottom: 2.5rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .partners-category-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .partner-card {
        padding: 1.25rem;
    }
    
    .partner-logo {
        width: 90px;
        height: 90px;
        margin-bottom: 1rem;
    }
    
    .partner-name {
        font-size: 1.1rem;
    }
    
    .partner-description {
        font-size: 0.85rem;
    }
    
    .become-partner {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }
    
    .become-partner i {
        font-size: 2.5rem;
    }
    
    .become-partner h3 {
        font-size: 1.4rem;
    }
    
    .become-partner p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .become-partner .btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .partner-name {
        font-size: 1.1rem;
    }
    
    .partner-description {
        font-size: 0.9rem;
    }
    
    .become-partner i {
        font-size: 2.5rem;
    }
}


/* ============================================
   MOBILE OPTIMIZATIONS - TOUCH & PERFORMANCE
   ============================================ */

/* Melhorar área de toque para elementos interativos em mobile */
@media (max-width: 768px) {
    /* Aumentar área de toque para links e botões */
    a, button, .btn, .filter-tab, .nav-menu a {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Remover hover effects em touch devices */
    @media (hover: none) {
        .service-card:hover,
        .news-card:hover,
        .partner-card:hover,
        .orgao-card:hover {
            transform: none;
        }
        
        /* Ativar efeitos apenas no tap */
        .service-card:active,
        .news-card:active,
        .partner-card:active,
        .orgao-card:active {
            transform: scale(0.98);
        }
    }
    
    /* Otimizar imagens para mobile */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Melhorar legibilidade de texto em mobile */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    /* Prevenir zoom acidental em inputs */
    input, select, textarea {
        font-size: 16px !important;
    }
    
    /* Melhorar scroll em mobile */
    * {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Otimizar animações para mobile */
    * {
        animation-duration: 0.3s !important;
        transition-duration: 0.3s !important;
    }
    
    /* Hero section mobile-first */
    .corporate-hero {
        background-attachment: scroll;
    }
    
    .hero-background {
        animation: none;
    }
    
    /* Melhorar espaçamento entre seções */
    .corporate-section {
        padding: 2.5rem 1rem;
    }
    
    /* Cards mais compactos em mobile */
    .news-card,
    .service-card,
    .partner-card {
        margin-bottom: 0;
    }
    
    /* Melhorar footer em mobile */
    .footer-content {
        gap: 2rem;
    }
    
    .footer-column {
        padding: 0;
    }
    
    /* Otimizar modal para mobile */
    .modal-container {
        max-height: 95vh;
        margin: 1rem;
        border-radius: 16px;
    }
    
    .modal-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    /* Melhorar navegação por tabs em mobile */
    .news-filter-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0.5rem 0;
    }
    
    .news-filter-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .filter-tab {
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    /* Melhorar carrossel de depoimentos */
    .testimonials-carousel {
        padding: 0 35px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    /* Otimizar grid de parceiros */
    .partners-grid {
        gap: 1.5rem;
    }
    
    /* Melhorar about section */
    .about-container {
        gap: 2rem;
    }
    
    .about-image img {
        max-width: 100%;
        border-radius: 8px;
    }
    
    /* Otimizar quick access cards */
    .quick-access-container {
        gap: 1.5rem;
    }
    
    .quick-access-card {
        padding: 2rem 1.5rem;
    }
}

/* Otimizações específicas para landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .corporate-hero {
        height: auto;
        min-height: 400px;
        padding: 3rem 0;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Melhorias para tablets em portrait */
@media (min-width: 601px) and (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Otimizações para performance em mobile */
@media (max-width: 768px) {
    /* Reduzir complexidade de sombras */
    .service-card,
    .news-card,
    .partner-card,
    .orgao-card {
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    /* Simplificar gradientes */
    .corporate-header,
    .stats-section,
    .page-hero {
        background: #791F53;
    }
    
    /* Reduzir blur effects */
    .modal-overlay {
        backdrop-filter: none;
    }
}

/* Acessibilidade em mobile */
@media (max-width: 768px) {
    /* Melhorar contraste */
    .hero-subtitle {
        opacity: 1;
        color: rgba(255, 255, 255, 0.95);
    }
    
    /* Aumentar espaçamento entre elementos clicáveis */
    .nav-menu li {
        margin-bottom: 0.5rem;
    }
    
    /* Melhorar feedback visual */
    button:active,
    a:active,
    .btn:active {
        opacity: 0.8;
    }
}


/* ============================================
   OTIMIZAÇÕES ESPECÍFICAS - FOOTER E SERVIÇOS MOBILE
   ============================================ */

@media (max-width: 600px) {
    /* FOOTER - Muito mais compacto */
    .corporate-footer {
        padding: 1.5rem 1rem 0.75rem !important;
    }
    
    .footer-container {
        padding: 0;
    }
    
    .footer-content {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
        margin-bottom: 1.25rem !important;
        grid-template-columns: none !important; /* Desativar grid */
    }
    
    /* Mantém 'Sobre a AEAB' sozinho em cima */
    .footer-about {
        width: 100% !important;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        margin-bottom: 0.75rem;
        flex: 0 0 100% !important;
    }
    
    /* As outras 2 colunas (Links Rápidos e Serviços) divididas igualmente - FORÇAR 2 COLUNAS LADO A LADO */
    .footer-column:not(.footer-about) {
        width: calc(50% - 0.5rem) !important; /* 2 lado a lado */
        min-width: 140px !important;
        max-width: calc(50% - 0.5rem) !important;
        padding: 0 !important;
        flex: 0 0 calc(50% - 0.5rem) !important;
        display: block !important; /* Garantir que apareçam */
    }
    
    /* Garantir que não apareçam mais de 2 colunas */
    .footer-column:not(.footer-about):nth-child(n+4) {
        display: none !important;
    }
    
    /* Forçar que as 2 primeiras colunas (após footer-about) apareçam lado a lado */
    .footer-column:not(.footer-about):nth-child(2),
    .footer-column:not(.footer-about):nth-child(3) {
        display: block !important;
        width: calc(50% - 0.5rem) !important;
        flex: 0 0 calc(50% - 0.5rem) !important;
    }
    
    .footer-logo {
        margin-bottom: 0.5rem;
    }
    
    .footer-logo img {
        height: 30px;
    }
    
    .footer-logo span {
        font-size: 1.2rem;
    }
    
    .footer-about p {
        font-size: 0.8rem !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.4;
    }
    
    .footer-column h4 {
        font-size: 0.95rem !important;
        margin-bottom: 0.75rem !important;
        padding-bottom: 0.3rem;
    }
    
    .footer-column h4::after {
        width: 30px;
        height: 2px;
    }
    
    .footer-column ul li {
        margin-bottom: 0.35rem !important;
    }
    
    .footer-column a {
        font-size: 0.8rem !important;
        padding: 0.15rem 0;
    }
    
    .footer-column a i.fa-chevron-right {
        font-size: 0.6rem;
    }
    
    /* Footer Contact - Muito compacto */
    .footer-contact li {
        margin-bottom: 0.75rem !important;
        font-size: 0.8rem !important;
    }
    
    .footer-contact i {
        font-size: 0.9rem !important;
        margin-top: 2px;
    }
    
    .footer-contact strong {
        font-size: 0.85rem !important;
    }
    
    .footer-contact span {
        font-size: 0.75rem !important;
        line-height: 1.3;
    }
    
    .footer-contact .contact-hours,
    .footer-contact .response-time {
        font-size: 0.7rem !important;
        margin-top: 0.1rem;
    }
    
    .footer-contact a {
        font-size: 0.8rem !important;
    }
    
    /* Footer Social */
    .footer-social {
        gap: 0.5rem;
        margin-top: 0.75rem;
    }
    
    .footer-social a {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.85rem !important;
    }
    
    /* Newsletter - Compacto */
    .footer-newsletter {
        padding: 1.5rem 1rem !important;
        gap: 1rem !important;
        margin-bottom: 1.25rem !important;
        border-radius: 8px;
    }
    
    .newsletter-content h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.3rem;
    }
    
    .newsletter-content h3 i {
        font-size: 0.95rem;
    }
    
    .newsletter-content p {
        font-size: 0.8rem !important;
        line-height: 1.3;
    }
    
    .newsletter-form input[type="email"] {
        padding: 0.7rem 1rem !important;
        font-size: 0.85rem !important;
    }
    
    .btn-newsletter {
        padding: 0.7rem 1.25rem !important;
        font-size: 0.85rem !important;
    }
    
    .btn-newsletter i {
        font-size: 0.8rem;
    }
    
    /* Footer Bottom - Compacto */
    .footer-bottom {
        padding-top: 0.75rem !important;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .footer-bottom-content {
        gap: 0.5rem !important;
    }
    
    .footer-bottom p {
        font-size: 0.75rem !important;
        line-height: 1.3;
        margin: 0;
    }
    
    .footer-links {
        font-size: 0.75rem !important;
        gap: 0.5rem !important;
    }
    
    .footer-links a {
        font-size: 0.75rem !important;
    }
    
    .footer-credits {
        font-size: 0.7rem !important;
        margin-top: 0.25rem !important;
    }
    
    /* SERVIÇOS - Muito mais compacto */
    .services-section {
        padding: 1.75rem 1rem !important;
    }
    
    .services-section .section-header {
        margin-bottom: 1.25rem !important;
    }
    
    .services-section .section-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .services-section .section-subtitle {
        font-size: 0.85rem !important;
        line-height: 1.4;
    }
    
    .services-grid {
        gap: 0.75rem !important;
        margin-top: 1rem !important;
    }
    
    .service-card {
        padding: 1.25rem 1rem !important;
        border-radius: 10px;
    }
    
    .service-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
        margin: 0 auto 0.6rem !important;
        border-radius: 10px;
    }
    
    .service-card h3 {
        font-size: 1.05rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .service-card p,
    .service-description p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    
    .service-description {
        margin-top: 0.5rem !important;
    }
    
    /* Expandir service cards em mobile */
    .service-card.expanded .service-description {
        max-height: 150px !important;
        margin-top: 0.5rem !important;
    }
}

/* Extra small mobile - ainda mais compacto */
@media (max-width: 400px) {
    .corporate-footer {
        padding: 1.25rem 0.75rem 0.5rem !important;
    }
    
    .footer-content {
        gap: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Em telas muito pequenas, as 2 colunas continuam lado a lado */
    .footer-column:not(.footer-about) {
        width: calc(50% - 0.5rem) !important;
        min-width: 100px;
    }
    
    .footer-column h4 {
        font-size: 0.9rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    .footer-column a,
    .footer-contact li {
        font-size: 0.75rem !important;
    }
    
    .footer-contact strong {
        font-size: 0.8rem !important;
    }
    
    .footer-contact span {
        font-size: 0.7rem !important;
    }
    
    .footer-newsletter {
        padding: 1.25rem 0.75rem !important;
    }
    
    .newsletter-content h3 {
        font-size: 1rem !important;
    }
    
    .newsletter-content p {
        font-size: 0.75rem !important;
    }
    
    .footer-bottom p,
    .footer-links,
    .footer-links a {
        font-size: 0.7rem !important;
    }
    
    .footer-credits {
        font-size: 0.65rem !important;
    }
    
    /* Serviços ainda mais compacto */
    .services-section {
        padding: 1.5rem 0.75rem !important;
    }
    
    .services-section .section-title {
        font-size: 1.35rem !important;
    }
    
    .services-section .section-subtitle {
        font-size: 0.8rem !important;
    }
    
    .services-grid {
        gap: 0.6rem !important;
    }
    
    .service-card {
        padding: 1rem 0.75rem !important;
    }
    
    .service-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .service-card h3 {
        font-size: 0.95rem !important;
        margin-bottom: 0.35rem !important;
    }
    
    .service-card p,
    .service-description p {
        font-size: 0.75rem !important;
    }
}

/* Ocultar elementos menos importantes em mobile para economizar espaço */
@media (max-width: 600px) {
    /* Ocultar horários de contacto se necessário */
    .footer-contact .contact-hours,
    .footer-contact .response-time {
        display: none;
    }
    
    /* Simplificar newsletter em mobile muito pequeno */
    @media (max-width: 400px) {
        .newsletter-content p {
            display: none;
        }
        
        .btn-newsletter span {
            display: none;
        }
        
        .btn-newsletter {
            padding: 0.7rem 1rem !important;
        }
    }
}


/* ============================================
   OTIMIZAÇÕES ADICIONAIS - TODAS AS SEÇÕES MOBILE
   ============================================ */

@media (max-width: 600px) {
    /* About Section - Compacto */
    .about-section {
        padding: 1.75rem 1rem !important;
    }
    
    .about-section .section-header {
        margin-bottom: 1.25rem !important;
    }
    
    .about-container {
        gap: 1rem !important;
    }
    
    .about-card {
        padding: 1.25rem !important;
        border-radius: 10px;
    }
    
    .about-card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    .about-card h3 i {
        font-size: 1.1rem;
    }
    
    .about-card p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }
    
    .about-image {
        margin-top: 0.5rem;
    }
    
    .about-image img {
        border-radius: 8px;
    }
    
    /* Stats Section - Compacto */
    .stats-section {
        padding: 1.5rem 1rem !important;
    }
    
    .stats-container {
        grid-template-columns: repeat(4, 1fr) !important; /* 4 colunas lado a lado */
        gap: 0.5rem !important;
    }
    
    .stat-box {
        padding: 0.75rem 0.5rem !important;
    }
    
    .stat-number {
        font-size: 1.8rem !important;
        margin-bottom: 0.2rem !important;
    }
    
    .stat-label {
        font-size: 0.8rem !important;
    }
    
    /* News Section - Compacto */
    .news-section {
        padding: 1.75rem 1rem !important;
    }
    
    .news-section .section-header {
        margin-bottom: 1.25rem !important;
    }
    
    .news-filter-tabs {
        margin: 1.25rem 0 1.5rem !important;
        padding: 0.25rem 0;
    }
    
    .news-grid {
        gap: 0.85rem !important;
    }
    
    .news-card {
        border-radius: 10px;
    }
    
    .news-image {
        height: 160px !important;
    }
    
    .news-content {
        padding: 1rem !important;
    }
    
    .news-meta {
        margin-bottom: 0.6rem !important;
        gap: 0.75rem;
    }
    
    .news-date,
    .news-event-date {
        font-size: 0.75rem !important;
    }
    
    .news-title {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.3;
    }
    
    .news-excerpt {
        font-size: 0.85rem !important;
        margin-bottom: 0.85rem !important;
        line-height: 1.5;
    }
    
    .news-link {
        font-size: 0.85rem !important;
    }
    
    .news-badge {
        padding: 0.3rem 0.75rem !important;
        font-size: 0.7rem !important;
        top: 0.75rem;
        right: 0.75rem;
    }
    
    .news-more {
        margin-top: 1.5rem !important;
    }
    
    .news-more .btn {
        padding: 0.75rem 1.75rem !important;
        font-size: 0.9rem !important;
    }
    
    /* Testimonials - Compacto */
    .testimonials-section {
        padding: 1.75rem 1rem !important;
    }
    
    .testimonials-section .section-header {
        margin-bottom: 1rem !important;
    }
    
    .testimonials-carousel {
        margin: 1.25rem auto 1rem !important;
    }
    
    .testimonial-card {
        padding: 1.25rem !important;
        border-radius: 12px;
    }
    
    .testimonial-header {
        margin-bottom: 0.85rem !important;
    }
    
    .testimonial-rating {
        margin-bottom: 0.85rem !important;
    }
    
    .carousel-dots {
        margin-top: 1.25rem !important;
    }
    
    /* Partners Section - Compacto */
    .partners-section {
        padding: 1.75rem 1rem !important;
    }
    
    .partners-category {
        margin-bottom: 2rem !important;
    }
    
    .partners-category-title {
        font-size: 1.15rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .partners-grid {
        gap: 0.85rem !important;
    }
    
    .partner-card {
        padding: 1.25rem !important;
        border-radius: 10px;
    }
    
    .partner-logo {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 0.85rem !important;
    }
    
    .partner-name {
        font-size: 1.05rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .partner-description {
        font-size: 0.8rem !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.5;
    }
    
    .partner-link {
        font-size: 0.8rem !important;
    }
    
    .become-partner {
        padding: 1.75rem 1rem !important;
        margin-top: 1.5rem !important;
        border-radius: 12px;
    }
    
    .become-partner i {
        font-size: 2.25rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .become-partner h3 {
        font-size: 1.3rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    .become-partner p {
        font-size: 0.9rem !important;
        margin-bottom: 1.25rem !important;
        line-height: 1.5;
    }
    
    .become-partner .btn {
        padding: 0.7rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
    
    /* Orgãos Sociais - Compacto */
    .orgaos-section {
        padding: 1.75rem 1rem !important;
    }
    
    .orgaos-hero {
        padding: 1.75rem 1rem !important;
    }
    
    .orgaos-hero h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    .orgaos-hero p {
        font-size: 0.85rem !important;
        line-height: 1.5;
    }
    
    .orgaos-grid {
        gap: 0.85rem !important;
        margin-top: 1.5rem !important;
    }
    
    .orgao-card {
        padding: 1.25rem 1rem !important;
        border-radius: 12px;
    }
    
    .orgao-card img {
        width: 100px !important;
        height: 100px !important;
        border-width: 4px;
    }
    
    .orgao-image-wrapper {
        margin-bottom: 1rem !important;
    }
    
    .orgao-card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .orgao-card .cargo {
        font-size: 0.8rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .orgao-card p {
        font-size: 0.9rem !important;
        line-height: 1.5;
    }
    
    .orgao-card .contact-info {
        margin-top: 1rem !important;
        padding-top: 1rem !important;
    }
    
    .orgao-card .contact-info a {
        font-size: 0.85rem !important;
    }
    
    /* Quick Access - Compacto */
    .quick-access-section {
        padding: 1.75rem 1rem !important;
        margin-top: -0.75rem !important;
    }
    
    .quick-access-container {
        gap: 1rem !important;
    }
    
    .quick-access-card {
        padding: 1.5rem 1.25rem !important;
        border-radius: 16px;
    }
    
    .quick-access-icon {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.6rem !important;
        margin-bottom: 1rem !important;
        border-radius: 14px;
    }
    
    .quick-access-content h3 {
        font-size: 1.15rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .quick-access-content p {
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.5;
    }
    
    .quick-btn {
        padding: 0.7rem 1.4rem !important;
        font-size: 0.85rem !important;
    }
    
    .qr-links {
        gap: 0.75rem !important;
    }
    
    .qr-link {
        padding: 0.65rem 1.25rem !important;
        font-size: 0.85rem !important;
    }
}

/* Extra small - máxima compactação */
@media (max-width: 400px) {
    .about-section,
    .stats-section,
    .news-section,
    .testimonials-section,
    .partners-section,
    .orgaos-section,
    .quick-access-section {
        padding: 1.5rem 0.75rem !important;
    }
    
    .section-header {
        margin-bottom: 1rem !important;
    }
    
    .section-title {
        font-size: 1.3rem !important;
    }
    
    .section-subtitle {
        font-size: 0.8rem !important;
    }
    
    /* Reduzir ainda mais os cards */
    .service-card,
    .news-card,
    .partner-card,
    .orgao-card,
    .about-card {
        padding: 1rem 0.75rem !important;
    }
    
    /* Imagens menores */
    .news-image {
        height: 140px !important;
    }
    
    .orgao-card img {
        width: 90px !important;
        height: 90px !important;
    }
    
    .partner-logo {
        width: 70px !important;
        height: 70px !important;
    }
}

/* ===================================
   Testimonials Section (Home)
   =================================== */

.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 2rem;
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 60px;
}

.testimonials-wrapper {
    overflow: hidden;
    border-radius: 16px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #791F53 0%, #a02868 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-avatar i {
    font-size: 2rem;
    color: white;
}

.testimonial-info h4 {
    margin: 0 0 0.3rem 0;
    color: #333;
    font-size: 1.3rem;
}

.testimonial-course {
    margin: 0;
    color: #666;
    font-size: 1rem;
}

.testimonial-school {
    margin: 0.2rem 0 0 0;
    color: #791F53;
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #FFC107;
    font-size: 1.2rem;
    margin-right: 0.2rem;
}

.testimonial-text {
    position: relative;
    padding-left: 2rem;
}

.quote-icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    color: #791F53;
    opacity: 0.3;
}

.testimonial-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
}

.testimonial-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #791F53;
    color: #791F53;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #791F53;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #791F53;
    width: 30px;
    border-radius: 6px;
}

.no-testimonials {
    text-align: center;
    padding: 4rem 2rem;
    color: #999;
}

.no-testimonials i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.no-testimonials p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.no-testimonials .small {
    font-size: 1rem;
    color: #bbb;
}

.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-cta p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.testimonials-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #791F53 0%, #a02868 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.testimonials-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(121, 31, 83, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 1rem;
    }
    
    .testimonials-carousel {
        padding: 0 50px;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-text {
        padding-left: 0;
    }
    
    .quote-icon {
        position: static;
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .testimonial-badge {
        position: static;
        display: inline-flex;
        margin-top: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ============================================
   MOBILE SUPER COMPACTO (max-width: 600px)
   Versão muito mais reduzida para telas pequenas
   ============================================ */
@media (max-width: 600px) {
    /* GERAL */
    body {
        font-size: 0.85rem !important;
    }

    /* HEADER */
    .corporate-header {
        padding: 0.75rem 0 !important;
    }

    .header-container {
        padding: 0 0.75rem !important;
    }

    .logo-section img {
        height: 35px !important;
    }

    .logo-text {
        font-size: 1.1rem !important;
    }

    /* FOOTER */
    .corporate-footer {
        padding: 1rem 0.75rem !important;
        margin-top: 2rem !important;
    }

    .footer-container {
        padding: 0 0.75rem !important;
    }

    .footer-content {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.75rem !important;
        margin-bottom: 1rem !important;
        grid-template-columns: none !important; /* Desativar grid */
    }
    
    /* Mantém 'Sobre a AEAB' sozinho em cima */
    .footer-about {
        width: 100% !important;
        margin-bottom: 0.5rem !important;
        flex: 0 0 100% !important;
    }
    
    /* As outras 2 colunas (Links Rápidos e Serviços) divididas igualmente - FORÇAR 2 COLUNAS LADO A LADO */
    .footer-column:not(.footer-about) {
        width: calc(50% - 0.4rem) !important; /* 2 lado a lado */
        min-width: 120px !important;
        max-width: calc(50% - 0.4rem) !important;
        flex: 0 0 calc(50% - 0.4rem) !important;
        display: block !important; /* Garantir que apareçam */
    }
    
    /* Garantir que não apareçam mais de 2 colunas */
    .footer-column:not(.footer-about):nth-child(n+4) {
        display: none !important;
    }
    
    /* Forçar que as 2 primeiras colunas (após footer-about) apareçam lado a lado */
    .footer-column:not(.footer-about):nth-child(2),
    .footer-column:not(.footer-about):nth-child(3) {
        display: block !important;
        width: calc(50% - 0.4rem) !important;
        flex: 0 0 calc(50% - 0.4rem) !important;
    }

    .footer-column h4 {
        font-size: 0.85rem !important;
        margin-bottom: 0.4rem !important;
    }

    .footer-column a,
    .footer-contact li,
    .footer-contact span {
        font-size: 0.75rem !important;
    }

    .footer-logo img {
        height: 26px !important;
    }

    .footer-about p {
        font-size: 0.75rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.3 !important;
    }

    .footer-social a {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.8rem !important;
    }

    .footer-newsletter {
        padding: 1rem !important;
        gap: 0.75rem !important;
        margin-bottom: 1rem !important;
    }

    .newsletter-content h3 {
        font-size: 1rem !important;
        margin-bottom: 0.25rem !important;
    }

    .newsletter-content p {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
    }

    .newsletter-form input[type="email"],
    .btn-newsletter {
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem !important;
    }

    .footer-bottom {
        padding-top: 0.5rem !important;
    }

    .footer-bottom p,
    .footer-links a {
        font-size: 0.7rem !important;
    }

    /* SERVIÇOS */
    .services-section {
        padding: 1.25rem 0.75rem !important;
    }

    .services-section .section-title {
        font-size: 1.35rem !important;
        margin-bottom: 0.5rem !important;
    }

    .services-section .section-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 1rem !important;
    }

    .services-grid {
        gap: 0.6rem !important;
    }

    .service-card {
        padding: 1rem 0.75rem !important;
        border-radius: 8px !important;
    }

    .service-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
        margin-bottom: 0.5rem !important;
    }

    .service-card h3 {
        font-size: 0.95rem !important;
        margin-bottom: 0.3rem !important;
    }

    .service-card p,
    .service-description p {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
    }

    .service-description {
        margin-top: 0.4rem !important;
    }

    /* HERO SECTION */
    .corporate-hero {
        height: 60vh !important;
        min-height: 400px !important;
    }

    .hero-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem !important;
    }

    .hero-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
    }

    /* SECTIONS GERAIS */
    .corporate-section {
        padding: 1.5rem 0.75rem !important;
    }

    .section-header {
        margin-bottom: 1rem !important;
    }

    .section-title {
        font-size: 1.4rem !important;
        margin-bottom: 0.4rem !important;
    }

    .section-subtitle {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
    }

    /* NEWS SECTION */
    .news-section {
        padding: 1.5rem 0.75rem !important;
    }

    .news-filter-tabs {
        gap: 0.5rem !important;
        margin-bottom: 1rem !important;
    }

    .filter-tab {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.8rem !important;
    }

    .news-grid {
        gap: 0.75rem !important;
    }

    .news-card {
        padding: 0.75rem !important;
    }

    .news-title {
        font-size: 0.9rem !important;
        margin-bottom: 0.4rem !important;
    }

    .news-excerpt {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
    }

    /* TESTIMONIALS */
    .testimonials-section {
        padding: 1.5rem 0.75rem !important;
    }

    .testimonial-card {
        padding: 1rem 0.75rem !important;
    }

    .testimonial-text p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }

    /* ABOUT SECTION */
    .about-section {
        padding: 1.5rem 0.75rem !important;
    }

    .about-card {
        padding: 1rem 0.75rem !important;
    }

    .about-card h3 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .about-card p {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
    }

    /* STATS SECTION */
    .stats-section {
        padding: 1.5rem 0.75rem !important;
    }

    .stats-container {
        grid-template-columns: repeat(4, 1fr) !important; /* 4 colunas lado a lado */
        gap: 0.5rem !important;
    }

    .stat-box {
        padding: 0.75rem 0.5rem !important;
    }

    .stat-number {
        font-size: 1.8rem !important;
    }

    .stat-label {
        font-size: 0.75rem !important;
    }

    /* BUTTONS */
    .btn {
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem !important;
    }

    .btn-lg {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.85rem !important;
    }

    /* SCROLL TO TOP */
    .scroll-to-top {
        width: 40px !important;
        height: 40px !important;
        bottom: 0.75rem !important;
        right: 0.75rem !important;
        font-size: 0.9rem !important;
    }

    /* PARTNERS SECTION */
    .partners-section {
        padding: 1.25rem 0.75rem !important;
    }

    .partners-category {
        margin-bottom: 1.5rem !important;
    }

    .partners-category-title {
        font-size: 1rem !important;
        margin-bottom: 0.75rem !important;
    }

    .partners-grid {
        gap: 0.6rem !important;
    }

    .partner-card {
        padding: 0.85rem 0.75rem !important;
    }

    .partner-logo {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 0.5rem !important;
    }

    .partner-name {
        font-size: 0.9rem !important;
        margin-bottom: 0.3rem !important;
    }

    .partner-description {
        font-size: 0.7rem !important;
        line-height: 1.3 !important;
    }

    .become-partner {
        padding: 1rem 0.75rem !important;
        margin-top: 1rem !important;
    }

    .become-partner i {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
    }

    .become-partner h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.4rem !important;
    }

    .become-partner p {
        font-size: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    /* CONTACT SECTION */
    .contact-section {
        padding: 1.25rem 0.75rem !important;
    }

    .contact-container {
        gap: 0.75rem !important;
    }

    .contact-card {
        padding: 1rem 0.75rem !important;
    }

    .contact-card h3 {
        font-size: 1rem !important;
        margin-bottom: 0.75rem !important;
    }

    .contact-item {
        margin-bottom: 1rem !important;
    }

    /* PAGE HERO - COMPACTO COM OVERLAY APENAS NO TEXTO */
    .page-hero {
        padding: 1.25rem 0.75rem !important;
        margin-top: 60px !important;
        min-height: auto !important;
    }

    .page-hero .hero-overlay {
        display: none !important;
    }

    .page-hero .hero-content {
        padding: 0.9rem 1.1rem !important;
        background: rgba(0, 0, 0, 0.3) !important;
        border-radius: 8px !important;
        max-width: 95% !important;
    }

    .page-hero .hero-title {
        font-size: 1.3rem !important;
        margin-bottom: 0.4rem !important;
        line-height: 1.2 !important;
    }

    .page-hero .hero-subtitle {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        margin: 0 !important;
    }

    .page-hero-content h1 {
        font-size: 1.2rem !important;
        margin-bottom: 0.3rem !important;
    }

    .page-hero-content p {
        font-size: 0.7rem !important;
        line-height: 1.3 !important;
    }

    /* QUICK ACCESS */
    .quick-access-section {
        padding: 1.25rem 0.75rem !important;
    }

    .quick-access-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
    }

    .quick-access-content h3 {
        font-size: 1rem !important;
    }

    .quick-access-content p {
        font-size: 0.75rem !important;
    }
}
