/*
    Theme Name: Laudo TDAH E AUTISMO
    Description: Tema WordPress - Laudo TDAH E AUTISMO
    Version: 1.0
    Author: Gaiek da costa
*/ 

:root {
    --primary: #FFBF23;
    --secondary: #181818;
    --tertiary: #fac849;
    --nav-height: 76px;
}

body {
    font-family: 'Montserrat', system-ui, sans-serif;
    scroll-behavior: smooth;
    background: white;
    color:var(--secondary);
}

html {
    scroll-behavior: smooth;
}


.active {
    color: var(--secondary) !important;
}

nav a {
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

nav a.active {
    color: #181818;
    border-bottom: 2px solid #181818;
}


.credentials h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.credentials ul {
    list-style: none;
}

.credentials li {
    position: relative;
    padding-left: 1.2rem; /* cria espaço para a bolinha */
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.credentials li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
}

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

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ddd, transparent);
    z-index: 1;
}

.section-divider span {
    background: var(--white);
    padding: 0 2rem;
    color: #666;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    z-index: 2; /* Evita sobreposição da linha */
}

.more-testimonials {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-items: center; /* centraliza */
    gap: 1.5rem;
}

.testimonial-platform {
    background: var(--white);
    border-radius: 20px;
    padding: 1.8rem;           /* menos espaçado */
    max-width: 500px;          /* deixa mais fino */
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-platform::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
    opacity: 0;
    transition: var(--transition);
}

.testimonial-platform.google::before {
    background: linear-gradient(90deg, #4285f4, #1a73e8);
    opacity: 1;
}

.testimonial-platform.doctoralia::before {
    background: linear-gradient(90deg, #00b4a6, #008a7f);
    opacity: 1;
}

.platform-logo {
    width: 65px;
    height: 65px;
    position: relative;
}

.platform-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #333;
}

.platform-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.platform-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
}

.rating-star {
    color: #ffd700;
    font-size: 1.1rem;
}

.rating-text {
    font-weight: 600;
    color: #333;
    margin-left: 0.4rem;
}

.platform-button {
    background: transparent;
    border: 2px solid;
    color: var(--primary);
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 180px;
    justify-content: center;
    margin-top: auto;
}

.platform-button.google {
    border-color: #4285f4;
    color: #4285f4;
}

.platform-button.google:hover {
    background: #4285f4;
    color: white;
    transform: scale(1.05);
}

.platform-button.doctoralia {
    border-color: #00b4a6;
    color: #00b4a6;
}

.platform-button.doctoralia:hover {
    background: #00b4a6;
    color: white;
    transform: scale(1.05);
}

.button-icon {
    font-size: 1.1rem;
}

.testimonial-button.google {
    background: linear-gradient(135deg, #4285f4 0%, #1a73e8 100%);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.testimonial-button.google:hover {
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

.testimonial-button.doctoralia {
    background: linear-gradient(135deg, #00b4a6 0%, #008a7f 100%);
    box-shadow: 0 4px 15px rgba(0, 180, 166, 0.3);
}

.testimonial-button.doctoralia:hover {
    box-shadow: 0 8px 25px rgba(0, 180, 166, 0.4);
}

.rating-decoration {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.star {
    color: #ffd700;
    font-size: 2rem;
}

@media (max-width: 768px) {
	.more-testimonials {
        grid-template-columns: 1fr;
        gap: 1.5rem;
		padding: 1rem 0.5rem 0 0.5rem
    }

}

