﻿/* Header Styles */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid hsl(var(--border) / 0.4);
    background-color: hsl(var(--background) / 0.6);
    backdrop-filter: blur(8px);
    
}

.header-container {
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-branding img {
    height: 4rem;
    width: auto;
}

.site-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: hsl(var(--primary));
}

.menu-item-has-children > .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    position: relative;
    padding-right: 24px;
}

.menu-item-has-children > .nav-link::after {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    transition: transform 0.2s ease;
    margin-top: 0;
    position: absolute;
    right: 0px;
    top: 4px;
}

.menu-item-has-children:hover > .nav-link::after,
.menu-item-has-children:focus-within > .nav-link::after {
    transform: rotate(135deg);
    top: 8px;
}

.desktop-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    margin: 0;
    padding: 0.75rem 0;
    list-style: none;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(12px);
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    z-index: 20;
}

.desktop-nav .sub-menu .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: hsl(var(--muted-foreground));
    border-radius: 0;
}

.desktop-nav .sub-menu .nav-link:hover {
    background: hsl(var(--accent));
    color: hsl(var(--foreground));
}

.desktop-nav .menu-item-has-children:hover > .sub-menu,
.desktop-nav .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

/* CTA Button */
.desktop-cta {
    display: none;
}

.btn {
    /* display: inline-block; */
    padding: 0.625rem 1.5rem;
    font-weight: 500;
    text-align: center;
    border-radius: var(--radius);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 16px;
    line-height: 1.6;
}

.btn-primary {
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: var(--transition-smooth);
}

.mobile-menu-toggle:hover {
    background-color: hsl(var(--accent));
}

.hamburger-icon {
    position: relative;
    width: 1.5rem;
    height: 2px;
    background-color: hsl(var(--foreground));
    transition: var(--transition-smooth);
}

.hamburger-icon::before,
.hamburger-icon::after {
    left: 0;
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: hsl(var(--foreground));
    transition: var(--transition-smooth);
}

.hamburger-icon::before {
    top: -6px;
}

.hamburger-icon::after {
    bottom: -6px;
}

.mobile-nav {
    display: none;
    padding: 1rem 0 2rem 0;
    width: 100%;
    border-top: 1px solid hsl(var(--border) / 0.4);
    background-color: hsl(var(--background));
    box-shadow: var(--shadow-soft)
}

.mobile-nav.active {
    display: block;
    animation: fade-in 0.3s ease-out;
    top:96px;
    left: 0;
    position: absolute;
}

.mobile-menu {
    list-style: none;
    margin: 0;
}

.mobile-menu .menu-item-has-children > .nav-link {
    position: relative;
}

.mobile-menu .menu-item-has-children > .nav-link::after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 0.45rem;
    height: 0.45rem;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(-45deg);
    transition: transform 0.2s ease;
}

.mobile-menu .menu-item-has-children.open > .nav-link::after {
    transform: translateY(-50%) rotate(135deg);
}

.mobile-menu .sub-menu {
    display: none;
    margin: 0.5rem 0 0 0;
    padding: 0 1rem 0.5rem 1rem;
    list-style: none;
    /* border-left: 2px solid hsl(var(--accent)); */
}

.mobile-menu .sub-menu .nav-link {
    padding: 0.5rem 0.75rem;
}

.mobile-menu .menu-item-has-children.open > .sub-menu {
    display: block;
}

.mobile-menu .nav-item {
    margin-bottom: 0.5rem;
}

.mobile-menu .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    transition: var(--transition-smooth);
}

.mobile-menu .nav-link:hover {
    background-color: hsl(var(--accent) / 0.5);
}

.mobile-cta {
    padding: 1rem;
    margin-top: 1rem;
}

.mobile-cta .btn {
    width: 100%;
}

/* Brands Section */
.brands-section {
    background: hsl(var(--muted) / 0.4);
}

.brands-display {
    position: relative;
    margin-top: 2.5rem;
}

.brands-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
    min-height: 120px;
}

.brand-item img {
    max-width: 160px;
    max-height: 70px;
    width: auto;
    height: auto;
    filter: saturate(0.9);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.brand-item img:hover {
    transform: scale(1.04);
    filter: saturate(1.1);
}

.brands-nav {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: none;
    background: hsl(var(--background));
    box-shadow: var(--shadow-soft);
    color: hsl(var(--foreground));
    cursor: pointer;
    transition: var(--transition-smooth);
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.brands-nav:hover {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: var(--shadow-medium);
}

.brands-nav--prev {
    left: -1.25rem;
}

.brands-nav--next {
    right: -1.25rem;
}

.brands-display.has-slider .brands-nav {
    display: inline-flex;
}

.brands-display.has-slider .brands-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.brands-display.has-slider .brands-track::-webkit-scrollbar {
    display: none;
}

.brands-display.has-slider .brands-track {
    scrollbar-width: none;
}

.brands-display.has-slider .brand-item {
    min-width: clamp(160px, 22vw, 220px);
    flex: 0 0 auto;
    scroll-snap-align: center;
}

.about-highlight {
    position: relative;
    overflow: hidden;
    background: rgba(10, 18, 64, 0.85);
    padding: clamp(5rem, 5vw, 10rem) 0!important;
}

.about-highlight .container {
    position: relative;
    z-index: 2;
}

.about-highlight__grid {
    display: flex;
    justify-content: flex-end;
}

.about-highlight__content {
    max-width: min(620px, 50%);
    padding: clamp(3.5rem, 7vw, 4.5rem) 0;
    text-align: right;
    color: #fff;
}

.about-highlight__title {
    font-size: clamp(2rem, 5vw, 3.0rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.about-highlight__description p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-highlight__description p:last-child {
    margin-bottom: 0;
}

.about-highlight__media {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.about-highlight__media-inner {
    position: absolute;
    inset: 0;
}

.about-highlight__media-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
}

.about-highlight__media-inner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .desktop-nav,
    .desktop-cta {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .mobile-nav {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .brands-track {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        gap: 1.5rem;
    }

    .brands-display.has-slider {
        padding: 0 2.5rem;
    }

    .brands-display.has-slider .brands-nav {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }

    .brands-nav--prev {
        left: 0;
    }

    .brands-nav--next {
        right: 0;
    }
}

@media (min-width: 992px) {
    .about-highlight__content {
        margin-right: clamp(2rem, 6vw, 4.5rem);
    }
}

@media (max-width: 767px) {
    .about-highlight__content {
        padding: 1.75rem;
    }

    .about-highlight__media {
        position: absolute;
        inset: 0;
    }

    .about-highlight__media-inner {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .about-highlight__content {
        max-width: none;
        text-align: left;
    }
}


/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-section {
        min-height: 700px;
    }
}

.hero-section .hero-background {
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    z-index: -1;
}
.hero-section .hero-background::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    top:0;
    left: 0;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0.73+100 */
    background: linear-gradient(135deg,  rgba(255,255,255,1) 0%,rgba(255,255,255,0.6) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.hero-section .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-section .hero-text {
    max-width: 700px;
    margin-bottom: 3rem;
}

.hero-section .hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-section .hero-title span{
    color: hsl(var(--primary));
}

@media (min-width: 768px) {
    .hero-section .hero-title {
        font-size: 3.5rem;
    }
}

.hero-section .hero-description {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-section .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.btn-lg {
    padding: 0.575rem 2rem;
    font-size: 1rem;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    background-color: white;
    border: 2px solid hsl(var(--muted-foreground) / 0.2);
    color: hsl(var(--foreground));
    padding: 0.445rem 2rem;
}

.btn-outline:hover {
    background: white;
    color: hsl(var(--primary));
    opacity: 0.9;
    transform: translateY(-1px);
}


.btn-contato{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 700px;
    border-top: 1px solid hsl(var(--muted-foreground) / 0.1);
    padding-top: 2rem;
}

.stat-item {
    color: hsl(var(--muted-foreground));
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: hsl(var(--primary));
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Section Common Styles */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-size: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
}

/* Services Display */
.services-display {
    position: relative;
    margin-top: 2.5rem;
    --services-gap: 2rem;
}

.services-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--services-gap);
}

@media (min-width: 768px) {
    .services-track {
        grid-template-columns: repeat(4, 1fr);
    }
}

.services-display.has-slider .services-track {
    display: flex;
    gap: var(--services-gap);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-padding: 1rem;
    padding-bottom: 0.5rem;
}

.services-display.has-slider .services-track::-webkit-scrollbar {
    display: none;
}

.services-display.has-slider .services-track {
    scrollbar-width: none;
}

.services-display.has-slider .service-card {
    flex: 0 0 calc((100% - (3 * var(--services-gap))) / 4);
    max-width: calc((100% - (3 * var(--services-gap))) / 4);
    scroll-snap-align: start;
}

.services-nav {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--background));
    color: hsl(var(--primary));
    box-shadow: var(--shadow-small);
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-weight: 600;
    font-size: 1.25rem;
}

.services-nav:hover {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: var(--shadow-medium);
}

.services-nav--prev {
    left: -1.25rem;
}

.services-nav--next {
    right: -1.25rem;
}

.services-display.has-slider .services-nav {
    display: inline-flex;
}

.brands-nav[disabled],
.services-nav[disabled] {
    opacity: 0.4;
    pointer-events: none;
    cursor: default;
    background: hsl(var(--muted) / 0.6);
    color: hsl(var(--muted-foreground));
    border-color: hsl(var(--border) / 0.6);
    box-shadow: none;
}

@media (max-width: 1199px) {
    .services-display {
        --services-gap: 1.5rem;
    }

    .services-display.has-slider .service-card {
        flex: 0 0 calc((100% - var(--services-gap)) / 2);
        max-width: calc((100% - var(--services-gap)) / 2);
    }
}

@media (max-width: 991px) {
    .services-track {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-track {
        grid-template-columns: 1fr;
    }

    .services-display.has-slider {
        padding: 0 1.5rem;
    }

    .services-display.has-slider .service-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .services-display.has-slider .services-nav {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }

    .services-nav--prev {
        left: 0;
    }

    .services-nav--next {
        right: 0;
    }
}

.service-card {
    background: hsl(var(--card));
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid hsl(var(--border) / 0.6);
}

.service-card:hover {
    box-shadow: var(--shadow-medium);
}

.service-image {
    height: 160px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.35rem;
}

.service-title {
    font-size: clamp(1rem, calc(1.75rem - 1vw), 1.2rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    min-height: auto;
}

.service-excerpt {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.875rem;
    font-size: clamp(0.875rem, calc(1.75rem - 1vw), 1rem);
    min-height: auto;
}

@media (min-width: 768px) {
    .service-excerpt {
        min-height: 132px;
    }
    .service-title {
        min-height: 56px;
    }
}

.service-link {
    font-weight: 500;
    text-align: center;
    border: 1px solid hsl(var(--border) / 1);
    color: hsl(var(--foreground));
    padding: 0.445rem 2rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
    margin-top: 1rem;
    padding: 0.5rem 1rem;
}

.service-link svg{
    width: 16px;
    height: 16px;
    transition: var(--transition-smooth);
}

.service-link-wrapper:hover .service-link {
    background: hsl(var(--primary) / 0.05);
    color: hsl(var(--primary));
}

.service-link-wrapper:hover .service-link svg {
    transform: translateX(4px);
}

/* Differentials Grid */
.diferenciais-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .diferenciais-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.diferenciais-grid .diferencial-item {
    padding: 1.5rem;
    background: hsl(var(--card));
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.diferenciais-grid .diferencial-item:hover {
    box-shadow: var(--shadow-medium);
}

.diferencial-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    width: 4rem;
    height: 4rem;
}

.diferencial-icon svg {
    width: 2rem;
    height: 2rem;
    stroke: #fff;
}

.diferencial-icon.icon-1{
    background: linear-gradient(135deg,  rgba(59,130,246,1) 0%,rgba(6,182,212,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.diferencial-icon.icon-2{
    background: linear-gradient(135deg,  rgba(6,182,212,1) 0%,rgba(20,184,166,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.diferencial-icon.icon-3{
    background: linear-gradient(135deg,  rgba(20,184,166,1) 0%,rgba(34,197,94,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.diferencial-icon.icon-4{
    background: linear-gradient(135deg,  rgba(34,197,94,1) 0%,rgba(59,130,246,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}


.diferencial-title {
    font-size: 2.225rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    line-height: 1;
    margin: 1rem 0 0.5rem 0;
}

.diferencial-description {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    font-weight: 500;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: hsl(var(--card));
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid hsl(var(--border) / 1);
}

.testimonial-quote {
    margin-bottom: 1rem;
}

.testimonial-content {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: hsl(var(--foreground));
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}



/* Hero Section */
.service-hero {
    position: relative;
    padding: 5rem 0 8rem;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.service-hero .hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.service-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, 
        hsl(var(--background) / 0.95), 
        hsl(var(--background) / 0.7)
    );
}

.service-hero .hero-content {
    position: relative;
    z-index: 10;
}

.service-hero .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.service-hero .back-link:hover {
    color: hsl(var(--primary));
}

.service-hero .hero-text {
    max-width: 48rem;
}

.service-hero .service-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fade-in 0.6s ease-out;
}

.service-hero .service-description {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    animation: fade-in 0.6s ease-out 0.2s backwards;
}

/* Benefits Section */
 .benefits-section {
    padding: 4rem 0;
    background: hsl(var(--muted) / 0.3);
}


.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: hsl(var(--background));
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    animation: scale-in 0.5s ease-out backwards;
}

.benefit-icon {
    color: hsl(var(--primary));
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.benefit-card span {
    color: hsl(var(--muted-foreground));
}

/* Details Section */
.details-section {
    padding: 5rem 0 8rem;
}

.details-content {
    max-width: 56rem;
    margin: 0 auto;
}

.details-content h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.service-content {
    color: hsl(var(--muted-foreground));
    font-size: 1.125rem;
    line-height: 1.75;
}

.service-content p {
    margin-bottom: 1.5rem;
}

/* CTA Box */
.cta-box {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, 
        hsl(var(--primary) / 0.1), 
        hsl(var(--primary) / 0.05)
    );
    border-radius: 0.5rem;
}

.cta-box h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-box p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .service-hero {
        padding: 3rem 0 5rem;
    }
    
    .service-hero .service-title {
        font-size: 2rem;
    }
    
    .service-hero .service-description {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .details-section {
        padding: 3rem 0 5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .service-hero .service-title {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}




.about-page {
    display: block;
}

.about-page .about-hero {
    padding-top: clamp(5rem, 8vw, 7rem);
    padding-bottom: clamp(5rem, 8vw, 7rem);
    background: linear-gradient(180deg, hsl(var(--secondary)) 0%, hsl(var(--background)) 100%);
    text-align: center;
}

.about-page .about-hero__content {
    max-width: 720px;
    margin: 0 auto;
}

.about-page .about-hero__title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.about-page .about-hero__subtitle {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
}

.about-page .about-stats {
    background: hsl(var(--muted) / .3);
    padding: clamp(3.5rem, 1vw, 5rem) 0;
}

.about-page .about-stats__grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-page .about-stats__card {
    text-align: center;
}

.about-page .about-stats__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary)) 70%, hsl(var(--primary)) 100%);
    color: #fff;
}

.about-page .about-stats__icon svg {
    width: 1.75rem;
    height: 1.75rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
}

.about-page .about-stats__number {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.about-page .about-stats__label {
    font-size: 0.95rem;
    color: hsl(var(--muted-foreground));
}

.about-page .about-history__card {
    padding: 0 clamp(0rem, 5vw, 4rem);
}

.about-page .about-history__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
}

.about-page .about-history__content p {
    font-size: 1rem;
    line-height: 1.8;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.about-page .about-history__content p:last-child {
    margin-bottom: 0;
}


.about-page .about-pillars{
    padding: 0;
    padding-bottom: clamp(8rem, 5vw, 5rem);
}

.about-page .about-pillars__grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.about-page .about-pillars__wrapper {
  padding: 0 clamp(0rem, 5vw, 5rem);
}

.about-page .about-pillars__card,
.about-page .about-values__card {
    background: hsl(var(--muted));
    border-radius: var(--radius);
    padding: clamp(1.75rem, 4vw, 2.5rem);
}


.about-page .about-pillars__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(var(--primary));
    margin-bottom: 1rem;
}

.about-page .about-pillars__text p {
    color: hsl(var(--muted-foreground));
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-page .about-pillars__text p:last-child {
    margin-bottom: 0;
}

.about-page .about-values__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.about-page .about-values__list li {
    position: relative;
    padding-left: 1.75rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.about-page .about-values__list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    color: hsl(213 94% 45%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

@media (min-width: 768px) {

    .about-page .about-stats__grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .about-page .about-values__list {
        column-count: 2;
        column-gap: 2rem;
    }
}


/* Blog Hero Section */
.blog-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(to bottom, hsl(var(--primary) / 0.05), hsl(var(--background)));
    animation: fade-in 0.6s ease-out;
}

.blog-hero-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.blog-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
}

@media (min-width: 768px) {
    .blog-hero-title {
        font-size: 3.75rem;
    }
}

.blog-hero-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
}

/* Search Form */
.blog-search-wrapper {
    max-width: 36rem;
    margin: 0 auto;
}

.blog-search-form {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(var(--muted-foreground));
    pointer-events: none;
}

.blog-search-input {
    width: 100%;
    height: 3rem;
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.blog-search-input:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

/* Categories Section */
.blog-categories {
    padding: 2rem 0;
    background: hsl(var(--muted) / 0.3);
}

.categories-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    transition: var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
}

.category-badge:hover {
    background: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
}

.category-badge.active {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border-color: hsl(var(--primary));
}

/* Blog Section Styles */
.blog-section {
    padding: 5rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: hsl(var(--card));
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    animation: scale-in 0.4s ease-out forwards;
    opacity: 0;
}

.blog-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.blog-card-category .category-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: hsl(var(--foreground));
    transition: var(--transition-smooth);
    text-decoration: none;
}

.blog-card-title a:hover {
    color: hsl(var(--primary));
}

.blog-card-excerpt {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--primary));
    font-weight: 500;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.read-more-link:hover {
    gap: 0.75rem;
}

/* Load More Button */
.blog-load-more {
    text-align: center;
    margin-top: 3rem;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-load-more:hover {
    background: hsl(var(--primary) / 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-load-more:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-load-more.loading .load-more-icon {
    animation: spin 1s linear infinite;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 5rem 0;
}

.no-results h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.no-results p {
    color: hsl(var(--muted-foreground));
    font-size: 1.125rem;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}





/* Single Post Styles */
article.single-post {
    padding: 0 0 5rem 0;
}

.post-header {
    padding: 5rem 0 3rem;
    background: linear-gradient(to bottom, hsl(var(--primary) / 0.05), hsl(var(--background)));
}

.post-header-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: left;
}

.post-header-content .post-header__wrapper {
    display: flex;
    align-item: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--muted-foreground));
    transition: var(--transition-smooth);
}

.back-link:hover {
    color: hsl(var(--primary));
}

.post-category {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .post-title {
        font-size: 3rem;
    }
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    color: hsl(var(--muted-foreground));
    padding-bottom: 2rem;
    border-bottom: 1px solid hsl(var(--border));
    margin-bottom: 2rem;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-featured-image {
    margin-bottom: 3rem;
}

.post-featured-image .container {
    max-width: 64rem;
}

.featured-image {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: var(--radius);
}

.post-content-wrapper {
    max-width: 64rem;
    margin: 0 auto;
}

.post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: hsl(var(--muted-foreground));
}

.post-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin: 3rem 0 1rem;
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 2rem 0 0.75rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content strong {
    color: hsl(var(--foreground));
}

.post-content a {
    color: hsl(var(--primary));
    text-decoration: underline;
}

.post-content ul,
.post-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid hsl(var(--border));
}

.tags-label {
    display: inline-block;
    font-weight: 600;
    margin-right: 0.5rem;
}

.post-tags a {
    display: inline-block;
    background: hsl(var(--muted));
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    margin: 0.25rem;
    transition: var(--transition-smooth);
}

.post-tags a:hover {
    background: var(--gradient-primary);
    color: white;
}

.post-share {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid hsl(var(--border));
}

.post-share h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.post-share p {
    color: hsl(var(--muted-foreground));
}

.related-posts {
    margin-top: 4rem;
}

.related-posts h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.related-post-card {
    padding: 1.5rem;
    background: hsl(var(--muted) / 0.3);
    border-radius: var(--radius);
    transition: var(--transition-smooth);
}

.related-post-card:hover {
    box-shadow: var(--shadow-soft);
}

.related-category {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.related-post-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.related-post-card h4 a {
    color: hsl(var(--foreground));
    transition: var(--transition-smooth);
}

.related-post-card h4 a:hover {
    color: hsl(var(--primary));
}

.related-post-card p {
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
}





#mensagem-sucesso{
    padding: 4rem 0 10rem 0;
    text-align: center;
    display: none;
}

#mensagem-sucesso .titulo{
    color: hsl(var(--foreground));
    line-height: 1.4;
    font-size: clamp(1.5rem, 5vw, 2rem);
}
#mensagem-sucesso .paragrafo{
    color: hsl(var(--muted-foreground));
    margin: 2rem 0;
}

#mensagem-sucesso .icone svg{
    color: hsl(var(--primary));
    width: 42px;
    height: 42px;
    stroke-width: 4px;
}
.wpcf7-response-output{
   display: none; 
}
.wpcf7-spinner::before {
     content: none; 
}
.wpcf7-spinner {
    position: absolute;
    left: -3%;
    top: -3%;
    width: 106%;
    height: 106%;
    border-radius: var(--radius);
    background: rgba(0,0,0,0.2);
    margin: 0;
    display: block;
}

.spinner {
    height: 42px;
    width: 42px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -24px 0 0 -24px; 
    -webkit-animation: rotation 1s infinite linear;
    -moz-animation: rotation 1s infinite linear;
    -o-animation: rotation 1s infinite linear;
    animation: rotation 1s infinite linear;
    border: 6px solid rgba(0,0,0,.2);
    border-radius: 100%;
}

.spinner::before {
    content: "";
    display: block;
    position: absolute;
    left: -5px;
    top: -5px;
    height: 100%;
    width: 100%;
    border-top: 4px solid hsl(var(--primary));
    border-left: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-right: 4px solid transparent;
    border-radius: 100%;
    z-index: 9;
} 



@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

@-moz-keyframes rotation {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(359deg);
    }
}

@-o-keyframes rotation {
    from {
        -o-transform: rotate(0deg);
    }

    to {
        -o-transform: rotate(359deg);
    }
}
@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}





.page-template-page-contato .contact-hero {
    padding-top: clamp(5rem, 8vw, 7rem);
    padding-bottom: clamp(5rem, 8vw, 7rem);
    background: linear-gradient(180deg, hsl(var(--secondary)) 0%, hsl(var(--background)) 100%);
    text-align: center;
}

.page-template-page-contato .contact-hero-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    animation: fade-in 0.6s ease-out;
}

.page-template-page-contato .contact-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.page-template-page-contato .contact-hero-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
}

.page-template-page-contato .contact-info-section {
    padding: 4rem 0 0 0;
    background: hsl(var(--muted) / 0.3);
}

.page-template-page-contato .contact-info-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

.page-template-page-contato .info-card {
    background: hsl(var(--background));
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 80%;
    width: 100%;
    margin: 0 auto;
}

.page-template-page-contato .info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 9999px;
    background: var(--gradient-primary);
    color: white;
}

.page-template-page-contato .info-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.page-template-page-contato .info-text {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.page-template-page-contato .info-link {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    transition: color 0.2s;
}

.page-template-page-contato .info-link:hover {
    color: hsl(var(--primary));
}

.page-template-page-contato .contact-form-section {
    padding: 4rem 0;
    background: hsl(var(--muted) / 0.3);
}

.page-template-page-contato .contact-form-grid {
    display: grid;
    gap: 3rem;
    max-width: 64rem;
    margin: 0 auto;
}

.page-template-page-contato .contact-details {
    animation: fade-in 0.6s ease-out;
}

.page-template-page-contato .contact-details .section-title {
    text-align: left;
}

.page-template-page-contato .section-description {
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
}

.page-template-page-contato .contact-detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.page-template-page-contato .contact-detail-item .info-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--gradient-primary);
    color: white;
}


.page-template-page-contato .contact-detail-item svg {
    flex-shrink: 0;
    color: #fff;
}

.page-template-page-contato .contact-detail-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.page-template-page-contato .contact-detail-item p {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
}

.page-template-page-contato .contact-detail-item a {
    color: hsl(var(--muted-foreground));
    text-decoration: none;
}

.page-template-page-contato .contact-detail-item a:hover {
    color: hsl(var(--primary));
}

.page-template-page-contato .contact-form-wrapper {
    animation: fade-in 0.8s ease-out;
}

.page-template-page-contato .contact-form {
    background: hsl(var(--background));
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    position: relative;
}

.page-template-page-contato .form-group {
    margin-bottom: 1rem;
}

.page-template-page-contato .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
}

.page-template-page-contato .form-group input,
.page-template-page-contato .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.2s;
}

.page-template-page-contato .form-group textarea {
    height: 120px;
}

.page-template-page-contato .form-group input:focus,
.page-template-page-contato .form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: var(--shadow-soft);
}
.page-template-page-contato .wpcf7-form{
    position: relative;
}
.page-template-page-contato .wpcf7-form .btn {
    width: 100%;
}

@media (min-width: 768px) {

    .page-template-page-contato .contact-form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .page-template-page-contato .contact-details .section-description {
        max-width: 60%;
    }

    .page-template-page-contato .info-card {
        max-width: 100%;
        margin: 0;
    }
}

@media (min-width: 1024px) {
    .page-template-page-contato .contact-info-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Footer Styles */
.site-footer {
    background-color: hsl(var(--card));
    border-top: 1px solid hsl(var(--border));
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 4rem;
    width: auto;
}

.footer-description {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius);
    background-color: hsl(var(--muted));
    color: hsl(var(--foreground));
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: hsl(var(--primary));
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer-contact svg {
    flex-shrink: 0;
    color: hsl(var(--primary));
    margin-top: 0.125rem;
}

.footer-contact span,
.footer-contact a {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
}

.footer-contact a:hover {
    color: hsl(var(--primary));
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid hsl(var(--border));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    text-align: center;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: hsl(var(--primary));
}
