
    .quote-container {
        max-width: 1090px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        display:grid;
        grid-template-columns: 1fr 1fr;
        margin: 60px auto;
        min-height: 400px;
        height: auto;
    }
    
    
    .image-section {
        height: 420px;
        position: relative;
        overflow: hidden;
        min-height: 100%;
    }
    
    .image-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .quote-section {
        flex: 1.5;
        padding: 40px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .quote-text {
        font-size: 1.25rem;
        line-height: 1.6;
        color: #333;
        margin-bottom: 20px;
        position: relative;
        font-style: italic;
        font-weight: 700;
    }
    
    .quote-text::before {
        content: '"';
        font-size: 5rem;
        color: #e0e0e0;
        position: absolute;
        top: -65px;
        left: -20px;
        z-index: 0;
        opacity: 0.7;
    }
    
    .author-name {
        font-size: 1.2rem;
        font-weight: 400;
        color: #111;
        margin-bottom: 5px;
    }
    
    .author-title {
        font-size: 0.9rem;
        color: #666;
    }
    
    .divider {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #00777D, #024248);
        margin: 15px 0;
    }
    
    .quote-container:hover .image-section img {
        transform: scale(1.05);
    }
    
    /* Temas de cores */
    .quote-container.blue {
        background-color: #f0f8ff;
    }
    
    .quote-container.blue .divider {
        background: linear-gradient(90deg, #1a237e, #0277bd);
    }
    
    .quote-container.green {
        background-color: #f1f8e9;
    }
    
    .quote-container.green .divider {
        background: linear-gradient(90deg, #2e7d32, #00bfa5);
    }


    @media (max-width: 767px) {
        .quote-container {
            max-width: 90vw;
            grid-template-columns: 1fr;
            height: auto;
        }
    }