/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: #f5f5f7;
    color: #1d1d1f;
    line-height: 1.5;
}

/* Header */
header {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 22px;
    height: 44px;
}

.logo {
    height: 24px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #f5f5f7;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

nav ul li a:hover {
    opacity: 1;
}

.cta-button {
    background-color: #0071e3;
    color: white;
    border: none;
    border-radius: 980px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #0077ed;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #f5f5f7;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
    z-index: 99;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a {
    color: #f5f5f7;
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 10px 0;
}

.mobile-menu.active {
    display: block;
}

/* Hero Section */
.hero {
    background-color: #000;
    color: #f5f5f7;
    text-align: center;
    padding: 120px 20px 60px;
    margin-top: 44px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.hero-buttons .secondary-button {
    background-color: rgba(255, 255, 255, 0.1);
    color: #f5f5f7;
    border: none;
    border-radius: 980px;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-buttons .secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Seções Gerais */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 24px;
    text-align: center;
    margin-bottom: 60px;
    color: #86868b;
}

/* Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background-color: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-content p {
    color: #86868b;
    margin-bottom: 20px;
    font-size: 17px;
}

.service-link {
    color: #0071e3;
    text-decoration: none;
    font-size: 17px;
    display: inline-block;
}

.service-link:hover {
    text-decoration: underline;
}

/* Serviços Detalhados */
.service-detail {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.service-detail-image {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-detail-content p {
    color: #86868b;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.5;
}

.service-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background-color: #0071e3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-weight: bold;
}

.feature-text {
    font-size: 17px;
    color: #1d1d1f;
}

.service-price {
    font-size: 17px;
    color: #86868b;
    margin-bottom: 30px;
}

/* Sobre */
.about-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.mission-image {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.mission-content {
    flex: 1;
}

.mission-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.mission-content p {
    color: #86868b;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.5;
}

.values {
    margin-bottom: 100px;
}

.values h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: white;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: #f5f5f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #0071e3;
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.value-card p {
    color: #86868b;
    font-size: 15px;
}

.team {
    margin-bottom: 80px;
}

.team h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-info p {
    color: #86868b;
    font-size: 15px;
    margin-bottom: 10px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.team-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d1d1f;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
}

.team-social a:hover {
    background-color: #0071e3;
    color: white;
}

/* Clientes */
.clients-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.clients-intro {
    text-align: center;
    margin-bottom: 60px;
}

.clients-intro h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.clients-intro p {
    color: #86868b;
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.5;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.client-logo {
    background-color: white;
    border-radius: 18px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.client-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
}

.case-studies {
    margin-bottom: 80px;
}

.case-studies h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.case-study {
    background-color: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.case-study:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.case-study-content {
    display: flex;
    flex-direction: column;
    padding: 40px;
}

.case-study-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.case-study-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.case-study-logo img {
    max-width: 60%;
    max-height: 60%;
}

.case-study-title h4 {
    font-size: 24px;
    margin-bottom: 5px;
}

.case-study-title p {
    color: #86868b;
    font-size: 15px;
}

.case-study-description {
    color: #1d1d1f;
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.case-study-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.result-item {
    text-align: center;
    padding: 20px;
    background-color: #f5f5f7;
    border-radius: 12px;
}

.result-number {
    font-size: 36px;
    font-weight: 600;
    color: #0071e3;
    margin-bottom: 10px;
}

.result-label {
    font-size: 15px;
    color: #86868b;
}

/* Depoimentos */
.testimonials {
    margin-bottom: 80px;
}

.testimonials h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.testimonial-content {
    font-size: 17px;
    color: #1d1d1f;
    line-height: 1.5;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content::before {
    content: """;
    font-size: 60px;
    color: #0071e3;
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.2;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

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

.author-info h4 {
    font-size: 17px;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: #86868b;
}

/* Blog */
.blog-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-button {
    background-color: transparent;
    border: 1px solid #d2d2d7;
    border-radius: 980px;
    padding: 8px 16px;
    margin: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-button.active {
    background-color: #0071e3;
    color: white;
    border-color: #0071e3;
}

.filter-button:hover:not(.active) {
    background-color: #f5f5f7;
    border-color: #86868b;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.blog-card {
    background-color: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: #86868b;
}

.blog-category {
    background-color: #f5f5f7;
    padding: 4px 10px;
    border-radius: 12px;
}

.blog-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-content p {
    color: #86868b;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.blog-link {
    color: #0071e3;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
}

.blog-link:after {
    content: ">";
    margin-left: 5px;
}

.blog-link:hover {
    text-decoration: underline;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    background-color: white;
    border: 1px solid #d2d2d7;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination-button.active {
    background-color: #0071e3;
    color: white;
    border-color: #0071e3;
}

.pagination-button:hover:not(.active) {
    background-color: #f5f5f7;
    border-color: #86868b;
}

/* Contato */
.contact-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    padding-right: 40px;
}

.contact-info h3 {
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-info p {
    color: #86868b;
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.5;
}

.contact-method {
    margin-bottom: 30px;
}

.contact-method h4 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #1d1d1f;
}

.contact-method p {
    margin-bottom: 5px;
}

.contact-method a {
    color: #0071e3;
    text-decoration: none;
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1d1d1f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #0071e3;
}

/* Formulário */
.contact-form {
    background-color: white;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #1d1d1f;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    font-size: 16px;
    color: #1d1d1f;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #0071e3;
    outline: none;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Newsletter */
.newsletter {
    background-color: #000;
    color: #f5f5f7;
    padding: 80px 20px;
    text-align: center;
}

.newsletter h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.newsletter p {
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #86868b;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 15px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 16px;
}

.newsletter-form button {
    background-color: #0071e3;
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 0 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #0077ed;
}

/* Agendamento */
.scheduling {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.scheduling h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.scheduling p {
    font-size: 21px;
    color: #86868b;
    max-width: 700px;
    margin: 0 auto 40px;
}

.cal-embed {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Call to Action */
.cta {
    padding: 100px 20px;
    text-align: center;
    background-color: #f5f5f7;
}

.cta h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 21px;
    color: #86868b;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Footer */
footer {
    background-color: #f5f5f7;
    padding: 40px 20px;
    color: #86868b;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    color: #1d1d1f;
    margin-bottom: 20px;
    font-size: 14px;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #515154;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #1d1d1f;
}

.copyright {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid #d2d2d7;
    font-size: 12px;
    color: #86868b;
}

/* Responsividade */
@media (max-width: 1024px) {
    .service-detail {
        flex-direction: column;
        gap: 30px;
    }
    
    .mission {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero h2 {
        font-size: 19px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 19px;
    }
    
    .service-detail-content h3 {
        font-size: 24px;
    }
    
    .values h3, .team h3 {
        font-size: 24px;
    }
    
    .clients-intro h3, .case-studies h3, .testimonials h3 {
        font-size: 24px;
    }
    
    .case-study-content {
        padding: 20px;
    }
    
    .case-study-header {
        flex-direction: column;
        text-align: center;
    }
    
    .case-study-logo {
        margin: 0 auto 15px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .cta h2, .scheduling h2 {
        font-size: 32px;
    }
    
    .cta p, .scheduling p {
        font-size: 17px;
    }
    
    .newsletter h3 {
        font-size: 24px;
    }
    
    .newsletter p {
        font-size: 15px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 8px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 8px;
        padding: 15px;
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero h2 {
        font-size: 17px;
    }
    
    .section {
        padding: 60px 15px;
    }
    
    .contact-form {
        padding: 20px;
    }
}
