/* Estilos da pÃ¡gina */

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #d4af37; /* Dourado */
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

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

/* Header e NavegaÃ§Ã£o */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 100;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-image {
    max-height: 60px;
    width: auto;
    transform: scale(0.9); /* Reduzindo para 90% do tamanho */
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* SeÃ§Ã£o Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    max-width: 1000px;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-logo-icon {
    margin-bottom: 2rem;
}

.logo-circle-image {
    width: 160px;
    height: auto;
}

.circle-icon {
    display: none;
}

.inner-circle {
    display: none;
}

.y-icon {
    display: none;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.hero .tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--secondary-color);
    opacity: 0.9;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
    margin-bottom: 3rem;
    display: inline-block;
    text-decoration: none;
}

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

.contact-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-icon span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.contact-icon:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Hero wave removed as requested */

/* SeÃ§Ã£o A ClÃ­nica */
.about-section {
    padding: 5rem 0;
    background-color: var(--secondary-color); /* Branco */
}

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

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-divider {
    height: 2px;
    width: 60px;
    background: var(--accent-color);
    margin: 0 auto;
}

.section-subtitle {
    color: var(--text-color);
    margin-top: 1rem;
    font-size: 1.1rem;
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.05rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-features {
    flex: 1;
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feature:last-child {
    margin-bottom: 0;
}

.feature i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.feature span {
    font-weight: 500;
    color: var(--primary-color);
}

/* SeÃ§Ã£o Especialidades */
.specialties-section {
    padding: 5rem 0;
    background-color: var(--light-gray); /* Cinza claro */
}

.specialties-tabs {
    margin-top: 3rem;
}

/* Mensagem de instruÃ§Ã£o para rolagem em dispositivos mÃ³veis */
@media (max-width: 768px) {
    .specialties-tabs::before {
        content: 'Deslize para ver mais especialidades âž”';
        display: block;
        text-align: center;
        margin-bottom: 10px;
        color: var(--accent-color);
        font-size: 0.8rem;
        font-weight: 500;
        opacity: 0.8;
    }
}


.tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 1rem;
    background-color: var(--secondary-color);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.tab-btn:hover::after {
    width: 80%;
    background-color: var(--accent-color);
}

.tab-btn.active::after {
    width: 100%;
    background-color: var(--accent-color);
}

.tab-btn i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.tab-btn span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
}

.tab-btn:hover {
    transform: translateY(-2px);
}

.tab-btn:active {
    transform: translateY(0);
}

.tab-btn.active {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tab-btn.active i,
.tab-btn.active span {
    color: var(--accent-color);
}

.tabs-content {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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


.tab-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.tab-content p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    list-style: none;
}

.services-list li {
    padding: 0.8rem 1rem;
    background-color: var(--light-gray);
    border-radius: 6px;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 2rem;
}

.services-list li::before {
    content: '\f0da';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0.8rem;
}

.services-list li:hover {
    background-color: #f0f0f0;
    transform: translateX(5px);
}

/* SeÃ§Ã£o de Profissionais */
.team-section {
    padding: 5rem 0;
    background-color: var(--secondary-color); /* Branco */
}

.team-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.team-image {
    flex: 1;
    min-width: 300px;
}

.team-photo {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-info {
    flex: 1;
    min-width: 300px;
}

.team-member {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--medium-gray);
}

.team-member:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.team-member h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.member-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.member-social {
    margin-top: 0.8rem;
    font-size: 0.9rem;
}

.member-social a {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.member-social i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Responsividade para a seÃ§Ã£o de equipe */
@media (max-width: 768px) {
    .team-content {
        flex-direction: column;
    }
    
    .team-image, .team-info {
        width: 100%;
    }
}


/* Responsividade */
@media (max-width: 992px) {
    .about-content {
        gap: 2rem;
    }
    
    .services-list {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}


@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .tagline {
        font-size: 1.2rem;
    }
    
    .contact-icons {
        gap: 1rem;
    }
    
    .about-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .tabs-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 1rem;
        position: relative;
        scrollbar-width: thin;
        scrollbar-color: var(--accent-color) var(--light-gray);
        -webkit-overflow-scrolling: touch;
    }
    
    /* Estilizando a barra de rolagem para tornÃ¡-la mais visÃ­vel */
    .tabs-nav::-webkit-scrollbar {
        height: 5px;
    }
    
    .tabs-nav::-webkit-scrollbar-track {
        background: var(--light-gray);
        border-radius: 10px;
    }
    
    .tabs-nav::-webkit-scrollbar-thumb {
        background-color: var(--accent-color);
        border-radius: 10px;
    }
    
    /* Indicador visual de que hÃ¡ mais conteÃºdo */
    .tabs-nav::after {
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.8);
        padding: 5px;
        border-radius: 50%;
        color: var(--accent-color);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        animation: pulseRight 1.5s infinite;
        z-index: 5;
    }
    
    @keyframes pulseRight {
        0%, 100% {
            opacity: 0.7;
            transform: translateY(-50%);
        }
        50% {
            opacity: 1;
            transform: translateY(-50%) translateX(3px);
        }
    }
    
    .tab-btn {
        min-width: 100px;
        flex-shrink: 0;
    }
    
    .tabs-content {
        padding: 1.5rem;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
    }
    
    .circle-icon {
        width: 100px;
        height: 100px;
    }
    
    .inner-circle {
        width: 80px;
        height: 80px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero .tagline {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-icons {
        gap: 0.5rem;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .contact-icon span {
        font-size: 0.6rem;
    }
    
    .about-features {
        padding: 1.5rem;
    }
    
    .tab-content h3 {
        font-size: 1.5rem;
    }
}


/* SeÃ§Ã£o de Contato */
.contact-section {
    padding: 5rem 0;
    background-color: var(--secondary-color); /* Alterado para branco para manter o padrÃ£o de alternÃ¢ncia */
}

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

.contact-card {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-card p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--accent-color);
}

/* Responsividade para a seÃ§Ã£o de contato */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}


@media (max-width: 576px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}


/* SeÃ§Ã£o de Depoimentos */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--light-gray); /* Cinza claro - alterado para manter o padrÃ£o de alternÃ¢ncia */
}

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

.testimonial-card {
    background-color: var(--secondary-color);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

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

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 1rem;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

.testimonial-date {
    font-size: 0.8rem;
    color: #777;
}

.google-icon {
    margin-left: auto;
}

.testimonial-stars {
    color: #fbbc05;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 0;
}

.testimonials-footer {
    text-align: center;
    margin-top: 3rem;
}

.view-more-btn {
    display: inline-block;
    background-color: var(--light-gray);
    color: var(--primary-color);
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.view-more-btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsividade para a seÃ§Ã£o de depoimentos */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}


@media (max-width: 576px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}


/* Estilo para o botÃ£o de tentar novamente */
.retry-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.retry-button:hover {
    background-color: #005a87;
}

/* Estilo para o indicador de carregamento */
.loading-reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    grid-column: 1 / -1;
    text-align: center;
}

.loading-reviews i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.loading-reviews p {
    color: var(--text-color);
    font-size: 1rem;
}

/* Estilo para a nota sobre a API */
.api-note {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #6c757d;
}

/* Estilo para mensagem de erro */
.error-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    grid-column: 1 / -1;
    text-align: center;
    background-color: #fff3f3;
    border-radius: 8px;
    border: 1px solid #ffcdd2;
}

.error-message i {
    font-size: 2rem;
    color: #f44336;
    margin-bottom: 1rem;
}

.error-message p {
    color: #d32f2f;
    font-size: 1rem;
}

/* Estilo para a nota sobre avaliaÃ§Ãµes estÃ¡ticas */
.reviews-note {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
}

/* Estilo para mensagem de informaÃ§Ã£o */
.info-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    grid-column: 1 / -1;
    text-align: center;
    background-color: #e8f4fd;
    border-radius: 8px;
    border: 1px solid #b3e0ff;
}

.info-message i {
    font-size: 2rem;
    color: #0288d1;
    margin-bottom: 1rem;
}

.info-message p {
    color: #01579b;
    font-size: 1rem;
}

/* Estilos para a seÃ§Ã£o de Tecnologias */
.technologies-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

/* Estilos para a seÃ§Ã£o de Depoimentos */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--secondary-color);
}

/* Estilos para a seÃ§Ã£o de Contato */
.contact-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

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

.technology-card {
    background-color: var(--secondary-color);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.technology-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.technology-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.technology-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
}

/* Responsividade para a seÃ§Ã£o de tecnologias */
@media (max-width: 768px) {
    .technologies-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}


@media (max-width: 576px) {
    .technologies-grid {
        grid-template-columns: 1fr;
    }
}


/ *   E s t i l o s   p a r a   a   s e Ã § Ã £ o   d e   d e p o i m e n t o s   * /  
 . t e s t i m o n i a l s - s e c t i o n   {  
         b a c k g r o u n d - c o l o r :   v a r ( - - l i g h t - g r a y ) ;  
         p a d d i n g :   5 r e m   0 ;  
 }  
  
 . t e s t i m o n i a l s - g r i d   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i l l ,   m i n m a x ( 3 0 0 p x ,   1 f r ) ) ;  
         g a p :   2 r e m ;  
         m a r g i n - t o p :   3 r e m ;  
 }  
  
 . t e s t i m o n i a l - c a r d   {  
         b a c k g r o u n d - c o l o r :   v a r ( - - s e c o n d a r y - c o l o r ) ;  
         b o r d e r - r a d i u s :   1 0 p x ;  
         b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ;  
         p a d d i n g :   1 . 5 r e m ;  
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ,   b o x - s h a d o w   0 . 3 s   e a s e ;  
 }  
  
 . t e s t i m o n i a l - c a r d : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ;  
         b o x - s h a d o w :   0   8 p x   2 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ;  
 }  
  
 . t e s t i m o n i a l - h e a d e r   {  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         m a r g i n - b o t t o m :   1 r e m ;  
 }  
  
 . t e s t i m o n i a l - a v a t a r   {  
         w i d t h :   5 0 p x ;  
         h e i g h t :   5 0 p x ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         o b j e c t - f i t :   c o v e r ;  
         m a r g i n - r i g h t :   1 r e m ;  
 }  
  
 . t e s t i m o n i a l - i n f o   {  
         f l e x - g r o w :   1 ;  
 }  
  
 . t e s t i m o n i a l - i n f o   h 4   {  
         m a r g i n :   0 ;  
         f o n t - s i z e :   1 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
 }  
  
 . t e s t i m o n i a l - d a t e   {  
         f o n t - s i z e :   0 . 8 r e m ;  
         c o l o r :   # 7 7 7 ;  
         m a r g i n - t o p :   0 . 2 r e m ;  
 }  
  
 . g o o g l e - i c o n   {  
         m a r g i n - l e f t :   a u t o ;  
 }  
  
 . t e s t i m o n i a l - s t a r s   {  
         c o l o r :   # F B B C 0 5 ;  
         m a r g i n - b o t t o m :   0 . 8 r e m ;  
 }  
  
 . t e s t i m o n i a l - t e x t   {  
         f o n t - s i z e :   0 . 9 5 r e m ;  
         l i n e - h e i g h t :   1 . 6 ;  
         m a r g i n :   0 ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
 }  
  
 . t e s t i m o n i a l - t e x t . e x p a n d e d   {  
         f o n t - w e i g h t :   5 0 0 ;  
 }  
  
 . t e s t i m o n i a l - t e x t [ d a t a - f u l l - t e x t ] : n o t ( . e x p a n d e d )   {  
         p o s i t i o n :   r e l a t i v e ;  
 }  
  
 . t e s t i m o n i a l - t e x t [ d a t a - f u l l - t e x t ] : n o t ( . e x p a n d e d ) : : a f t e r   {  
         c o n t e n t :   " C l i q u e   p a r a   v e r   m a i s " ;  
         d i s p l a y :   b l o c k ;  
         f o n t - s i z e :   0 . 8 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
         c o l o r :   v a r ( - - a c c e n t - c o l o r ) ;  
         m a r g i n - t o p :   0 . 5 r e m ;  
 }  
  
 . t e s t i m o n i a l s - f o o t e r   {  
         t e x t - a l i g n :   c e n t e r ;  
         m a r g i n - t o p :   3 r e m ;  
 }  
  
 . v i e w - m o r e - b t n   {  
         d i s p l a y :   i n l i n e - b l o c k ;  
         b a c k g r o u n d - c o l o r :   v a r ( - - a c c e n t - c o l o r ) ;  
         c o l o r :   v a r ( - - s e c o n d a r y - c o l o r ) ;  
         p a d d i n g :   0 . 8 r e m   1 . 5 r e m ;  
         b o r d e r - r a d i u s :   3 0 p x ;  
         t e x t - d e c o r a t i o n :   n o n e ;  
         f o n t - w e i g h t :   5 0 0 ;  
         t r a n s i t i o n :   b a c k g r o u n d - c o l o r   0 . 3 s   e a s e ;  
 }  
  
 . v i e w - m o r e - b t n : h o v e r   {  
         b a c k g r o u n d - c o l o r :   # c 1 9 b 2 e ;  
 }  
 