/* Start custom CSS *//* ========================================================================== */
/*           CSS Personalizado para Elementor - Instituto Maria Amélia        */
/* ========================================================================== */

/* Cole este CSS em: Elementor > Configurações do Site > CSS Personalizado */
/* OU em: Aparência > Personalizar > CSS Adicional */

/* ========================================================================== */
/*                              Estilos Base                                  */
/* ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

/* Importar Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ========================================================================== */
/*                            Classes Utilitárias                             */
/* ========================================================================== */

.ima-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ima-btn {
    display: inline-block;
    background-color: #6b8e23;
    color: #ffffff !important;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.ima-btn:hover {
    background-color: #4a6b1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 142, 35, 0.3);
}

.ima-btn-cta {
    background-color: #a0522d;
}

.ima-btn-cta:hover {
    background-color: #8d4727;
}

/* ========================================================================== */
/*                                Header                                      */
/* ========================================================================== */

.ima-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.ima-header.sticky {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.ima-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.ima-logo img {
    height: 50px;
    width: auto;
}

.ima-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.ima-menu li {
    margin: 0;
}

.ima-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.ima-menu a:hover {
    color: #6b8e23;
}

.ima-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #6b8e23;
    transition: width 0.3s ease;
}

.ima-menu a:hover::after {
    width: 100%;
}

.ima-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.ima-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #6b8e23;
    transition: all 0.3s ease;
}

.ima-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.ima-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.ima-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ========================================================================== */
/*                                Top Bar                                     */
/* ========================================================================== */

.ima-top-bar {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 10px 0;
    font-size: 0.9em;
}

.ima-top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.ima-top-bar-left {
    display: flex;
    gap: 30px;
    align-items: center;
}

.ima-top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ima-top-bar-item i {
    color: #8dc63f;
}

.ima-btn-top-bar {
    background-color: #a0522d;
    color: #ffffff !important;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.ima-btn-top-bar:hover {
    background-color: #8d4727;
}

/* ========================================================================== */
/*                                Hero Section                                */
/* ========================================================================== */

.ima-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.ima-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.ima-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.ima-hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: #f8f8f8;
    transform: skewY(-3deg);
    transform-origin: bottom right;
    z-index: 3;
}

.ima-hero-content {
    position: relative;
    z-index: 4;
    max-width: 800px;
    padding: 0 20px;
}

.ima-hero-subtitle {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #8dc63f;
}

.ima-hero-title {
    font-size: 3.5em;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* ========================================================================== */
/*                             Quem Somos Section                             */
/* ========================================================================== */

.ima-quem-somos {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.ima-quem-somos-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.ima-quem-somos-text {
    flex: 1;
}

.ima-section-badge {
    display: inline-block;
    background-color: #a0522d;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    margin-bottom: 10px;
}

.ima-section-title {
    font-size: 2.5em;
    color: #6b8e23;
    margin-bottom: 15px;
    line-height: 1.2;
}

.ima-quem-somos-image {
    flex: 1;
}

.ima-image-frame {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ima-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.ima-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(107, 142, 35, 0.3);
    z-index: 1;
    border-radius: 10px;
}

.ima-image-frame:hover img {
    filter: grayscale(0%);
}

/* ========================================================================== */
/*                               Cursos Section                               */
/* ========================================================================== */

.ima-cursos {
    padding: 80px 0;
    background-color: #6b8e23;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.ima-cursos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.ima-cursos-content {
    position: relative;
    z-index: 2;
}

.ima-section-title-white {
    font-size: 2.5em;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
    text-align: center;
}

.ima-section-description-white {
    font-size: 1.1em;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.ima-cursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ima-curso-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ima-curso-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.ima-curso-icon {
    background-color: #8dc63f;
    color: #ffffff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    margin: 0 auto 20px;
}

.ima-curso-title {
    font-size: 1.5em;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.ima-curso-subtitle {
    font-size: 0.9em;
    color: #757575;
    margin-bottom: 15px;
}

.ima-curso-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
}

/* ========================================================================== */
/*                              Impacto Section                               */
/* ========================================================================== */

.ima-impacto {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.ima-impacto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.ima-impacto-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.ima-impacto-card:hover {
    transform: translateY(-10px);
}

.ima-impacto-icon {
    color: #6b8e23;
    font-size: 3em;
    margin-bottom: 15px;
}

.ima-impacto-number {
    font-size: 2.5em;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.ima-impacto-label {
    font-size: 1.1em;
    color: #666;
}

/* ========================================================================== */
/*                               Galeria Section                              */
/* ========================================================================== */

.ima-galeria {
    padding: 80px 0;
    background-color: #ffffff;
}

.ima-galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.ima-galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.ima-galeria-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ima-galeria-item:hover img {
    transform: scale(1.05);
}

.ima-galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(107, 142, 35, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ima-galeria-item:hover .ima-galeria-overlay {
    opacity: 1;
}

.ima-galeria-overlay i {
    color: #ffffff;
    font-size: 2em;
}

/* ========================================================================== */
/*                                CTA Section                                 */
/* ========================================================================== */

.ima-cta {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.ima-cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ima-cta-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* ========================================================================== */
/*                             Feedback Section                               */
/* ========================================================================== */

.ima-feedback {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.ima-feedback-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 350px;
    margin: 0 auto;
}

.ima-feedback-stars {
    color: #f39c12;
    margin: 10px 0;
}

/* ========================================================================== */
/*                              Contato Section                               */
/* ========================================================================== */

.ima-contato {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 0;
}

.ima-contato-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.ima-contato-info {
    flex: 1;
}

.ima-contato-title {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.ima-contato-form {
    flex: 1;
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 10px;
}

.ima-form-group {
    margin-bottom: 20px;
}

.ima-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.ima-form-group input,
.ima-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #3a3a3a;
    color: #ffffff;
    font-size: 1em;
}

.ima-form-group input:focus,
.ima-form-group textarea:focus {
    outline: none;
    border-color: #6b8e23;
}

/* ========================================================================== */
/*                              Doações Section                               */
/* ========================================================================== */

.ima-doacoes {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.ima-doacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ima-doacao-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.ima-doacao-card:hover {
    transform: translateY(-10px);
}

.ima-doacao-icon {
    color: #6b8e23;
    font-size: 3em;
    margin-bottom: 15px;
}

.ima-doacao-title {
    font-size: 1.5em;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.ima-qrcode {
    max-width: 150px;
    margin: 20px auto;
}

.ima-pix-key {
    background-color: #e0e0e0;
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
    word-break: break-all;
}

.ima-bank-info {
    text-align: left;
    margin-top: 20px;
}

.ima-bank-info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95em;
}

/* ========================================================================== */
/*                                Footer                                      */
/* ========================================================================== */

.ima-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.ima-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.ima-footer-col h4 {
    color: #8dc63f;
    margin-bottom: 20px;
}

.ima-footer a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ima-footer a:hover {
    color: #ffffff;
}

.ima-social-icons {
    display: flex;
    gap: 15px;
}

.ima-social-icons a {
    font-size: 1.5em;
}

.ima-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* ========================================================================== */
/*                             Botões Flutuantes                              */
/* ========================================================================== */

.ima-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.ima-whatsapp-float:hover {
    transform: translateY(-5px);
    background-color: #1da851;
}

.ima-back-to-top {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background-color: #6b8e23;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.ima-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.ima-back-to-top:hover {
    transform: translateY(-5px);
}

/* ========================================================================== */
/*                          Animações Simples                                 */
/* ========================================================================== */

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].ima-animated {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].ima-animated {
    transform: scale(1);
}

/* ========================================================================== */
/*                              Responsividade                                */
/* ========================================================================== */

@media (max-width: 992px) {
    .ima-hero-title {
        font-size: 2.5em;
    }
    
    .ima-quem-somos-content {
        flex-direction: column;
    }
    
    .ima-contato-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .ima-top-bar {
        display: none;
    }
    
    .ima-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .ima-menu.active {
        display: flex;
    }
    
    .ima-menu-toggle {
        display: flex;
    }
    
    .ima-hero {
        height: 60vh;
    }
    
    .ima-hero-title {
        font-size: 2em;
    }
    
    .ima-section-title,
    .ima-section-title-white,
    .ima-cta-title,
    .ima-contato-title {
        font-size: 2em;
    }
    
    .ima-cursos-grid,
    .ima-doacoes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ima-hero-title {
        font-size: 1.8em;
    }
    
    .ima-section-title,
    .ima-section-title-white {
        font-size: 1.8em;
    }
}/* End custom CSS */