.elementor-897 .elementor-element.elementor-element-1324359{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-897 .elementor-element.elementor-element-1324359{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-5848a10 *//* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1f2937;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 8.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.logo-text {
    font-size: 1.25rem;
    color: #1f2937;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

@media (min-width: 330px) {
    .btn {
    font-size: 0.7rem;
    }
}

@media (min-width: 748px) {
    .btn {
    font-size: 1rem;
    }
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn svg {
    flex-shrink: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #eff6ff, #ecfeff);
    overflow: hidden;
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .hero {
        padding: 6rem 0;
    }
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #374151;
}

.hero-text {
    font-size: 1.125rem;
    color: #4b5563;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.hero-image {
    position: relative;
}

.hero-image img {
    aspect-ratio: 4/3;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section */
.section {
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .section {
        padding: 6rem 0;
    }
}

.section-alt {
    background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.section-title {
    text-align: center;
    color: #1f2937;
    margin-bottom: 4rem;
}

.section-subtitle {
    text-align: center;
    color: #4b5563;
    margin-bottom: 4rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background: linear-gradient(135deg, #eff6ff, #ecfeff);
    border-radius: 1rem;
    padding: 2rem;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #2563eb;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

/* Two Column Grid */
.two-column-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .two-column-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.two-column-image img {
    aspect-ratio: 4/4;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .two-column-image {
        order: 1;
    }
    
    .two-column-content {
        order: 2;
    }
}

.two-column-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #4b5563;
}

/* Services Grid */
.services-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background: #ffffff;
    border: 2px solid #f3f4f6;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
    width: 2.5rem;
    height: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #eab308;
}

.testimonial-text {
    color: #374151;
    margin-bottom: 1.5rem;
}

.author-name {
    color: #1f2937;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.author-location {
    font-size: 0.875rem;
    color: #6b7280;
}

/* About Section */
.about-text {
    max-width: 64rem;
    margin: 0 auto 4rem;
    color: #4b5563;
}

.values-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    text-align: center;
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background: #2563eb;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #ffffff;
}

.value-card p {
    color: #4b5563;
}

/* Locations */
.locations-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.location-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.location-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.location-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.location-header h3 {
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.location-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.location-company {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #4b5563;
}

.location-info p {
    margin-bottom: 0;
}

.location-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    padding-top: 0.5rem;
}

/* Impact Section */
.impact-section {
    padding: 4rem 0;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
}

@media (min-width: 1024px) {
    .impact-section {
        padding: 6rem 0;
    }
}

.impact-content {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
}

.impact-content svg {
    width: 3rem;
    height: 3rem;
    color: #ffffff;
    margin: 0 auto 1.5rem;
}

.impact-text {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #ffffff;
}

@media (min-width: 1024px) {
    .impact-text {
        font-size: 1.875rem;
    }
}

/* Contact Section */
.contact-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    color: #1f2937;
}

.contact-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .contact-info {
        flex-direction: row;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: #dbeafe;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2563eb;
}

.contact-item > div {
    text-align: left;
}

.contact-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: #1f2937;
    font-weight: 500;
    margin-bottom: 0;
}

.contact-cta {
    padding-top: 1rem;
}

/* Footer */
.footer {
    background: #111827;
    color: #ffffff;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-column h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #9ca3af;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #9ca3af;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-hours {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.footer-column .btn {
    display: inline-flex;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-copyright:last-child {
    margin-bottom: 0;
}

.footer-copyright svg {
    flex-shrink: 0;
}

/* Responsive Utilities */
@media (max-width: 639px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.375rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }
}/* End custom CSS */