/* Cores Harmoniosas - Grafite e Verde */
:root {
    --primary-color: #309c25;        /* Verde principal */
    --primary-light: #4fb842;        /* Verde claro */
    --primary-dark: #257a1c;         /* Verde escuro */
    --dark-color: #202020;           /* Grafite escuro */
    --dark-light: #404040;
    --gray: #808080;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

/* Override Bootstrap Colors */
:root {
    --bs-primary: var(--primary-color);
    --bs-primary-rgb: 151, 210, 25;
    --bs-dark: var(--dark-color);
    --bs-dark-rgb: 31, 41, 55;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #202020;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-size: 1rem;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Tipografia Elegante e Suave */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #202020;
    letter-spacing: -0.3px;
    font-family: 'Poppins', sans-serif;
}

h1 { 
    font-size: 3rem; 
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.2;
}
h2 { 
    font-size: 2.5rem; 
    font-weight: 600;
    letter-spacing: -0.4px;
    line-height: 1.3;
}
h3 { 
    font-size: 2rem; 
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 1.3;
}
h4 { 
    font-size: 1.5rem; 
    font-weight: 600;
    letter-spacing: -0.2px;
    line-height: 1.4;
}
h5 { 
    font-size: 1.25rem; 
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 1.4;
}
h6 { 
    font-size: 1.125rem; 
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 1.5;
}

p {
    margin-bottom: 1.5rem;
    color: #202020;
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Textos brancos apenas em fundos escuros */
.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero h5,
.hero h6,
.hero p,
.page-header h1,
.page-header h2,
.page-header h3,
.page-header h4,
.page-header h5,
.page-header h6,
.page-header p,
.portfolio-page h1,
.portfolio-page h2,
.portfolio-page h3,
.portfolio-page h4,
.portfolio-page h5,
.portfolio-page h6,
.portfolio-page p,
.projeto-detail h1,
.projeto-detail h2,
.projeto-detail h3,
.projeto-detail h4,
.projeto-detail h5,
.projeto-detail h6,
.projeto-detail p,
.testimonials h1,
.testimonials h2,
.testimonials h3,
.testimonials h4,
.testimonials h5,
.testimonials h6,
.testimonials p,
.cta h1,
.cta h2,
.cta h3,
.cta h4,
.cta h5,
.cta h6,
.cta p {
    color: var(--white);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Links em listas e áreas com fundo claro */
.list-unstyled a,
ul a,
ol a,
.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.list-unstyled a:hover,
ul a:hover,
ol a:hover,
.contact-info a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Links em áreas com fundo escuro */
.cta a,
.page-header a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.cta a:hover,
.page-header a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Header */
.header {
    position: relative;
    width: 100%;
}

/* Navbar Custom - FIXO */
.navbar {
    transition: var(--transition);
    padding: 1rem 0;
    z-index: 1030 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background-color: var(--white) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar.sticky-top {
    position: fixed !important;
    top: 0 !important;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
}

/* Adicionar padding no body para compensar o menu fixo */
body {
    padding-top: 0;
}

body.has-fixed-nav {
    padding-top: 80px;
}

.navbar-brand {
    font-size: 1.5rem;
    padding: 0;
    display: flex;
    align-items: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.logo {
    height: 75px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: var(--transition);
    display: block;
}

.navbar.scrolled .logo {
    height: 55px;
}

@media (max-width: 991px) {
    .logo {
        height: 65px;
        max-width: 200px;
    }
    
    .navbar.scrolled .logo {
        height: 60px;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
}

@media (max-width: 576px) {
    .logo {
        height: 60px;
        max-width: 180px;
    }
    
    .navbar.scrolled .logo {
        height: 55px;
    }
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    transition: var(--transition);
    position: relative;
    margin: 0 0.5rem;
    display: flex;
    align-items: center;
}

/* Menu Mobile - Alinhar à esquerda */
@media (max-width: 991px) {
    .navbar-nav {
        align-items: flex-start !important;
        padding-left: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 0.75rem 0 !important;
        margin: 0 !important;
        width: 100%;
    }
}

.nav-link i {
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Buttons Custom */
.btn-primary,
.btn-custom {
    background: var(--primary-color);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.navbar .btn-custom {
    padding: 8px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-primary:hover,
.btn-custom:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-dark {
    background: var(--dark-color);
    border: none;
    color: var(--white);
    font-weight: 600;
}

.btn-dark:hover {
    background: #0f1419;
    color: var(--white);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    font-weight: 600;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark-color);
    border-color: var(--white);
}

/* Hero Section - Design Futurista e Elegante */
.hero {
    position: relative;
    padding: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(48, 156, 37, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(32, 32, 32, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #202020 0%, #1a1a1a 50%, #151515 100%);
    color: var(--white);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    box-shadow: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(151, 210, 25, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(151, 210, 25, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    animation: gridMove 20s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(151, 210, 25, 0.05) 60deg,
        transparent 120deg,
        rgba(31, 41, 55, 0.05) 180deg,
        transparent 240deg,
        rgba(151, 210, 25, 0.05) 300deg,
        transparent 360deg
    );
    animation: rotate 30s linear infinite;
    opacity: 0.6;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: calc(100vh - 80px);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0 150px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    margin-top: 0;
    color: var(--white);
    animation: fadeInUp 1s ease;
    text-align: center;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease 0.2s both;
    text-align: center;
    letter-spacing: 0.01em;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.85);
    animation: fadeInUp 1s ease 0.4s both;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons .btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero-buttons .btn:hover::before {
    width: 400px;
    height: 400px;
}

.hero-buttons .btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--white);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
}

.hero-buttons .btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px) scale(1.05);
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: #ffffff;
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
    box-shadow: none;
    filter: none;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}


/* Sections */
section {
    padding: 50px 0;
}

/* Page header não deve ter padding padrão das sections */
section.page-header {
    padding: 0 !important;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    section.page-header {
        padding: 0 !important;
    }
}

/* Alternância elegante de cores nas seções */
section:nth-child(odd) {
    background: var(--white);
}

section:nth-child(even) {
    background: var(--light-gray);
}

/* Page header sempre com fundo escuro, independente da posição */
section.page-header {
    background: var(--dark-color) !important;
}

/* Seções específicas com cores fixas */
.hero {
    background: var(--dark-color) !important;
}

.page-header {
    background: var(--dark-color) !important;
}

.testimonials {
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 30%, #f5f7fa 50%, var(--primary-color) 50%, var(--primary-color) 100%) !important;
    color: var(--white);
    padding: 120px 0 !important;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(32, 32, 32, 0.08);
}

/* Intercalação: Seção 5 (Testimonials) - Verde com Branco */

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, transparent 48%, rgba(255, 255, 255, 0.05) 50%, transparent 52%, transparent 100%),
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(48, 156, 37, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.cta {
    background: #202020 !important;
    padding: 120px 0 !important;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Intercalação: Seção 6 (CTA) - Grafite */

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 35%, rgba(48, 156, 37, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeInDown 0.8s ease;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #202020;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.section-header p {
    font-size: 1.15rem;
    color: #202020;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.01em;
    opacity: 0.85;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 3px;
    animation: scaleIn 0.8s ease 0.3s both;
}

/* Alternância de cor na linha decorativa */
section:nth-child(even) .section-header h2::after {
    background: var(--dark-color);
}

/* About Preview - Design Elegante e Profissional */
.about-preview {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #f5f7fa 50%, #f5f7fa 100%) !important;
    padding: 120px 0 !important;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(32, 32, 32, 0.08);
}

/* Intercalação: Seção 2 (About) - Branco com Cinza */

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, transparent 48%, rgba(48, 156, 37, 0.03) 50%, transparent 52%, transparent 100%),
        radial-gradient(circle at 10% 20%, rgba(48, 156, 37, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(32, 32, 32, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.about-preview .section-header {
    position: relative;
    z-index: 2;
}

.about-preview .section-header h2 {
    color: #202020;
}

.about-preview .section-header p {
    color: #808080;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.about-item {
    text-align: center;
    padding: 3rem 2.5rem;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease backwards;
    opacity: 0;
}

.about-item.visible {
    animation: fadeIn 0.8s ease forwards;
    opacity: 1;
}

.about-item::before {
    display: none;
}

.about-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(151, 210, 25, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.about-item:nth-child(1) { 
    animation-delay: 0.1s;
}

.about-item:nth-child(2) { 
    animation-delay: 0.2s;
    background: var(--light-gray);
}

.about-item:nth-child(3) { 
    animation-delay: 0.3s;
}

.about-item:nth-child(4) { 
    animation-delay: 0.4s;
    background: var(--light-gray);
}

.about-item:hover::before {
    transform: scaleX(1);
}

.about-item:hover::after {
    opacity: 1;
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.about-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: var(--primary-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--white);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.about-item:hover .about-icon::before {
    width: 200px;
    height: 200px;
}

.about-item:hover .about-icon {
    transform: translateY(-5px) scale(1.05);
}

.about-item:nth-child(2) .about-icon {
    background: var(--gray);
}

.about-item:nth-child(3) .about-icon {
    background: var(--primary-color);
}

.about-item:nth-child(4) .about-icon {
    background: var(--gray);
}

.about-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #202020;
    font-weight: 600;
    transition: color 0.3s ease;
    letter-spacing: -0.2px;
    line-height: 1.4;
}

.about-item:hover h3 {
    color: var(--primary-color);
}

.about-item:nth-child(2):hover h3,
.about-item:nth-child(4):hover h3 {
    color: var(--gray);
}

.about-item p {
    color: #202020;
    font-size: 1.05rem;
    line-height: 1.8;
    transition: color 0.3s ease;
}

/* Services - Design Elegante com Intercalação de Cores */
.services {
    background: linear-gradient(135deg, #f5f7fa 0%, #f5f7fa 50%, var(--primary-color) 50%, var(--primary-color) 100%) !important;
    padding: 120px 0 !important;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(32, 32, 32, 0.08);
}

/* Intercalação: Seção 3 (Services) - Cinza Claro com Verde */

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, transparent 48%, rgba(255, 255, 255, 0.05) 50%, transparent 52%, transparent 100%),
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.services .section-header {
    position: relative;
    z-index: 2;
}

.services .section-header h2 {
    color: #202020;
}

.services .section-header p {
    color: #808080;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid rgba(32, 32, 32, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease backwards;
    opacity: 0;
}

.service-card.visible {
    animation: fadeIn 0.8s ease forwards;
    opacity: 1;
}

.service-card::before {
    display: none;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(151, 210, 25, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:nth-child(1) { 
    animation-delay: 0.1s;
}
.service-card:nth-child(2) { 
    animation-delay: 0.2s;
    background: var(--light-gray);
}
.service-card:nth-child(3) { 
    animation-delay: 0.3s;
}
.service-card:nth-child(4) { 
    animation-delay: 0.4s;
    background: var(--light-gray);
}
.service-card:nth-child(5) { 
    animation-delay: 0.5s;
}
.service-card:nth-child(6) { 
    animation-delay: 0.6s;
    background: var(--light-gray);
}

.service-card:nth-child(even)::before {
    background: var(--gray);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #202020;
    font-weight: 600;
    transition: color 0.3s ease;
    letter-spacing: -0.2px;
    line-height: 1.4;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card:nth-child(even):hover h3 {
    color: var(--gray);
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    color: #202020;
    line-height: 1.9;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: var(--primary-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--white);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.service-card:hover .service-icon::before {
    width: 200px;
    height: 200px;
}

.service-card:hover .service-icon {
    transform: translateY(-5px) scale(1.05);
}

.service-card:nth-child(even) .service-icon {
    background: var(--gray);
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* Portfolio - Design Futurista e Tecnológico */
.portfolio-preview {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #e8e9eb 50%, #e8e9eb 100%) !important;
    padding: 120px 0 !important;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(32, 32, 32, 0.08);
}

/* Intercalação: Seção 4 (Portfolio) - Branco com Cinza */

.portfolio-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, transparent 48%, rgba(48, 156, 37, 0.02) 50%, transparent 52%, transparent 100%),
        radial-gradient(circle at 20% 30%, rgba(48, 156, 37, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(48, 156, 37, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio-preview .section-header {
    position: relative;
    z-index: 2;
}

.portfolio-preview .section-header h2 {
    color: #202020;
}

.portfolio-preview .section-header p {
    color: #808080;
}

/* Portfolio items na preview (fundo claro) */
.portfolio-preview .portfolio-item {
    background: var(--white);
    border: 2px solid rgba(151, 210, 25, 0.1);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.portfolio-preview .portfolio-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: var(--primary-color);
}

.portfolio-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #f5f7fa 50%, #ffffff 50%, #ffffff 100%) !important;
    padding: 120px 0 !important;
    position: relative;
    overflow: hidden;
    margin-top: -20px;
}

.portfolio-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, transparent 48%, rgba(48, 156, 37, 0.02) 50%, transparent 52%, transparent 100%),
        radial-gradient(circle at 20% 30%, rgba(48, 156, 37, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(48, 156, 37, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.portfolio-page > .container {
    position: relative;
    z-index: 1;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 3rem 0;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.portfolio-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease backwards;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-item:nth-child(1) { animation-delay: 0.05s; }
.portfolio-item:nth-child(2) { animation-delay: 0.1s; }
.portfolio-item:nth-child(3) { animation-delay: 0.15s; }
.portfolio-item:nth-child(4) { animation-delay: 0.2s; }
.portfolio-item:nth-child(5) { animation-delay: 0.25s; }
.portfolio-item:nth-child(6) { animation-delay: 0.3s; }
.portfolio-item:nth-child(n+7) { animation-delay: 0.35s; }

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f5f7fa;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.5;
    position: relative;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(32, 32, 32, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: var(--white);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
    transform: translateY(15px);
    transition: transform 0.3s ease 0.1s;
}

.portfolio-item:hover .portfolio-overlay h3 {
    transform: translateY(0);
}

.portfolio-overlay p {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease 0.15s;
    color: rgba(255, 255, 255, 0.9);
}

.portfolio-item:hover .portfolio-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-category {
    display: inline-block;
    background: var(--primary-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: translateY(15px);
    transition: all 0.3s ease 0.05s;
}

.portfolio-item:hover .portfolio-category {
    transform: translateY(0);
}

.portfolio-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    transform: translateY(15px);
    transition: transform 0.3s ease 0.2s;
}

.portfolio-item:hover .portfolio-actions {
    transform: translateY(0);
}

.portfolio-actions .btn {
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: none;
}

.portfolio-actions .btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.portfolio-actions .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.portfolio-actions .btn-outline {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.portfolio-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}


/* Testimonials */
.testimonials {
    background: var(--primary-color);
    color: var(--white);
}

.testimonials .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.testimonials .section-header h2 {
    color: #202020;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonials .section-header p {
    color: #808080;
    font-size: 1.1rem;
}

.testimonials .testimonial-card {
    background: var(--white) !important;
    color: #202020 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Card branco para quebrar o verde */
.testimonials .testimonial-card-white {
    background: var(--white) !important;
    color: #202020 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Estilos para textos dos depoimentos */
.testimonials .testimonial-card .testimonial-name,
.testimonials .testimonial-card-white .testimonial-name {
    color: #202020 !important;
}

.testimonials .testimonial-card .testimonial-role,
.testimonials .testimonial-card-white .testimonial-role {
    color: #808080 !important;
}

.testimonials .testimonial-card .testimonial-company,
.testimonials .testimonial-card-white .testimonial-company {
    color: var(--primary-color) !important;
}

.testimonials .testimonial-card .testimonial-text,
.testimonials .testimonial-card-white .testimonial-text {
    color: #202020 !important;
}

.testimonials .testimonial-card .testimonial-content i,
.testimonials .testimonial-card-white .testimonial-content i {
    color: var(--primary-color) !important;
    opacity: 0.3 !important;
}

.testimonials .testimonial-card .testimonial-photo img,
.testimonials .testimonial-card-white .testimonial-photo img {
    border-color: var(--primary-color) !important;
}

.testimonials .testimonial-card:hover,
.testimonials .testimonial-card-white:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
}

.testimonials .btn-primary {
    position: relative;
    z-index: 2;
    background: var(--primary-color);
    border: none;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(48, 156, 37, 0.3);
}

.testimonials .btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(48, 156, 37, 0.4);
    transform: translateY(-2px);
}

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

/* Carrossel de Depoimentos */
.testimonials-carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.testimonials-carousel-container {
    position: relative;
    overflow: hidden;
}

.testimonials-carousel {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 1.334rem);
    min-width: 0;
    box-sizing: border-box;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid rgba(32, 32, 32, 0.1);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(48, 156, 37, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-btn i {
    font-size: 1.2rem;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(32, 32, 32, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(32, 32, 32, 0.4);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .testimonials-carousel-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 100%;
    }
    
    .testimonials-carousel-wrapper {
        padding: 0 45px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn i {
        font-size: 1rem;
    }
}

/* Ajuste para depoimentos em row do Bootstrap */
.row .testimonial-card {
    width: 100%;
    max-width: 100%;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 24px;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    animation: fadeIn 0.8s ease backwards;
    opacity: 0;
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-height: none;
}

/* Depoimentos em fundo branco (fora da seção .testimonials) */
.empresa-content .testimonial-card,
section:not(.testimonials) .testimonial-card {
    background: var(--white) !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    color: #202020 !important;
}

.empresa-content .testimonial-card:hover,
section:not(.testimonials) .testimonial-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
}

.empresa-content .testimonial-content p,
section:not(.testimonials) .testimonial-content p {
    color: #202020 !important;
}

.empresa-content .testimonial-author h4,
section:not(.testimonials) .testimonial-author h4 {
    color: #202020 !important;
}

.empresa-content .testimonial-role,
section:not(.testimonials) .testimonial-role {
    color: #808080 !important;
}

.empresa-content .testimonial-company,
section:not(.testimonials) .testimonial-company {
    color: var(--primary-color) !important;
}

.empresa-content .testimonial-content i,
section:not(.testimonials) .testimonial-content i {
    color: var(--primary-color) !important;
    opacity: 0.3 !important;
}

.empresa-content .testimonial-author img,
section:not(.testimonials) .testimonial-author img {
    border-color: var(--primary-color) !important;
}

.testimonial-card.visible {
    animation: fadeIn 0.8s ease forwards;
    opacity: 1;
}

.testimonial-card::before {
    display: none;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:nth-child(even)::before {
    background: rgba(255, 255, 255, 0.5);
}

.testimonial-card:hover::before {
    transform: scaleY(1);
}

.testimonial-card:hover::after {
    opacity: 1;
}

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

.testimonials .testimonial-card:hover {
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

/* Nova estrutura: Foto no topo, centralizada */
.testimonial-photo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.testimonial-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    margin: 0 auto;
    display: block;
}

.testimonial-photo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--white);
    font-size: 2.5rem;
}

.testimonial-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.testimonial-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #202020 !important;
    word-break: break-word;
    line-height: 1.4;
}

.testimonial-role {
    font-size: 0.95rem;
    color: #808080 !important;
    margin-bottom: 0.25rem;
}

.testimonial-company {
    font-size: 0.95rem;
    color: var(--primary-color) !important;
    font-weight: 500;
    margin-bottom: 0;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    min-height: 0;
    padding: 0;
}

.testimonial-content i {
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-top: 0;
    margin-bottom: 0.25rem;
    padding: 0;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-content i {
    opacity: 0.5;
    transform: scale(1.1);
}

.testimonial-text {
    color: #202020 !important;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.25rem;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0;
}

.btn-read-more {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.25rem;
    margin-bottom: 0;
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: auto;
    text-decoration: none;
    flex-shrink: 0;
}

.btn-read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateX(3px);
}

.testimonial-content p {
    color: #202020 !important;
    font-size: 1.1rem;
    line-height: 1.9;
    font-style: italic;
    font-weight: 500;
    margin-top: 1rem;
    flex: 1;
}

/* Sobrescrever cores para depoimentos na página inicial */
.testimonials .testimonial-card:nth-child(even) .testimonial-content i {
    color: var(--primary-color) !important;
    opacity: 0.2 !important;
}


.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-author img {
    transform: scale(1.05);
}

.testimonial-card:nth-child(even) .testimonial-author img {
    border-color: rgba(255, 255, 255, 0.5);
}

.testimonial-author h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    word-break: break-word;
    line-height: 1.4;
}

/* Sobrescrever para depoimentos na página inicial */
.testimonials .testimonial-card:nth-child(even) .testimonial-author img {
    border-color: var(--primary-color) !important;
}

.testimonial-role {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
}

.testimonial-company {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* CTA Section - Design Futurista */
.cta-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

.cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.cta-content .btn {
    padding: 18px 45px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-content .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-content .btn:hover::before {
    width: 400px;
    height: 400px;
}

.cta-content .btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--white);
}

.cta-content .btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(151, 210, 25, 0.5);
}

/* Page Header - Banner similar ao Hero mas menor */
.page-header {
    position: relative;
    padding: 0 !important;
    background: var(--dark-color) !important;
    color: var(--white);
    overflow: visible;
    display: flex;
    align-items: center;
    min-height: auto;
    height: auto;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Banner de fundo com padrão similar ao hero */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

/* Forma decorativa inferior similar ao hero */
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    height: auto;
    padding: 60px 20px 100px 20px !important;
    box-sizing: border-box;
}

.page-header-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
    padding: 0 0 30px 0;
}

/* Breadcrumb */
.page-header .breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    animation: fadeInDown 0.6s ease;
}

.page-header .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.page-header .breadcrumb a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-header .breadcrumb span {
    margin: 0 8px;
    opacity: 0.6;
    color: rgba(255, 255, 255, 0.6);
}

.page-header .breadcrumb .current {
    color: var(--white);
    font-weight: 600;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    margin-top: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease 0.2s both;
    position: relative;
    z-index: 3;
    color: var(--white);
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.4s both;
    position: relative;
    z-index: 3;
    color: var(--white);
    text-align: center;
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Breadcrumb antigo removido - agora está dentro do page-header */

/* Forms - Já melhorado acima */

/* Páginas Específicas - Melhorias com Animações */
.contato-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #f5f7fa 50%, #ffffff 50%, #ffffff 100%) !important;
    padding: 120px 0 !important;
    position: relative;
    overflow: hidden;
    margin-top: -20px;
}

.contato-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, transparent 48%, rgba(48, 156, 37, 0.02) 50%, transparent 52%, transparent 100%),
        radial-gradient(circle at 20% 30%, rgba(48, 156, 37, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(48, 156, 37, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contato-page > .container {
    position: relative;
    z-index: 1;
}

.portfolio-page, .servico-detail, .projeto-detail, .orcamento-page {
    padding: 2rem 0 4rem;
    position: relative;
    margin-top: -20px;
}

.hospedagem-content {
    background: linear-gradient(135deg, #f5f7fa 0%, #f5f7fa 50%, #ffffff 50%, #ffffff 100%) !important;
    padding: 120px 0 !important;
    position: relative;
    overflow: hidden;
    margin-top: -20px;
}

.hospedagem-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, transparent 48%, rgba(48, 156, 37, 0.03) 50%, transparent 52%, transparent 100%),
        radial-gradient(circle at 20% 30%, rgba(48, 156, 37, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(32, 32, 32, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hospedagem-content > .container {
    position: relative;
    z-index: 1;
}

.hospedagem-content .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
    text-align: center;
}

.hospedagem-content .section-header h2 {
    color: #202020;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.4px;
    margin-bottom: 1rem;
}

.hospedagem-content .section-header p {
    color: #808080;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Seção Uptime - Hospedagem */
.uptime-section {
    margin: 5rem 0;
    position: relative;
    z-index: 2;
}

.uptime-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.uptime-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.uptime-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px rgba(48, 156, 37, 0.25);
}

.uptime-card h3 {
    color: #202020;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.uptime-card p {
    color: #202020;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.uptime-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.uptime-features li {
    padding: 0.75rem 0;
    color: #202020;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.uptime-features i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.uptime-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.uptime-stats .stat-box {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.uptime-stats .stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.uptime-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.uptime-stats .stat-label {
    font-size: 0.9rem;
    color: #202020;
    font-weight: 500;
}

.uptime-icon i.fa-clock {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Pricing Grid - Hospedagem */
.hospedagem-content .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Seção Robustez - Hospedagem */
.robustez-section {
    margin: 5rem 0;
    position: relative;
    z-index: 2;
}

.robustez-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.robustez-features .feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.robustez-features .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.25);
}

.robustez-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 2px solid rgba(245, 158, 11, 0.1);
    position: relative;
    overflow: hidden;
}

.robustez-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.robustez-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.robustez-card h4 {
    color: #202020;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.robustez-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.robustez-card li {
    padding: 0.75rem 0;
    color: #202020;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
}

.robustez-card i {
    color: #f59e0b;
    font-size: 1.1rem;
}

.robustez-features .feature-content h3 {
    color: #202020;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.robustez-features .feature-content p {
    color: #202020;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Seção MySQL - Hospedagem (mantida para compatibilidade) */
.mysql-section {
    margin: 5rem 0;
    position: relative;
    z-index: 2;
}

.mysql-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mysql-features .feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.mysql-features .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(48, 156, 37, 0.25);
}

.mysql-features .feature-content h3 {
    color: #202020;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mysql-features .feature-content p {
    color: #202020;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.mysql-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.mysql-card h4 {
    color: #202020;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.mysql-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mysql-card li {
    padding: 0.75rem 0;
    color: #202020;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
}

.mysql-card i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Seção Segurança - Hospedagem */
.security-section {
    margin: 5rem 0;
    position: relative;
    z-index: 2;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.security-features .feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.security-features .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(48, 156, 37, 0.25);
}

.security-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 2px solid rgba(48, 156, 37, 0.1);
    position: relative;
    overflow: hidden;
}

.security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(48, 156, 37, 0.3);
}

.security-card h4 {
    color: #202020;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.security-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-card li {
    padding: 0.75rem 0;
    color: #202020;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
}

.security-card i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Seção Agilidade - Hospedagem */
.speed-section {
    margin: 5rem 0;
    position: relative;
    z-index: 2;
}

.speed-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.speed-features .feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.speed-features .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25);
}

.speed-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 2px solid rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.speed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.speed-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.speed-card h4 {
    color: #202020;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.speed-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.speed-card li {
    padding: 0.75rem 0;
    color: #202020;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
}

.speed-card i {
    color: #6366f1;
    font-size: 1.1rem;
}

/* Seção Email - Hospedagem */
.email-section {
    margin: 5rem 0;
    position: relative;
    z-index: 2;
}

.email-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.email-features .feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.email-features .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
}

.email-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 2px solid rgba(16, 185, 129, 0.1);
    position: relative;
    overflow: hidden;
}

.email-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
}

.email-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.email-card h4 {
    color: #202020;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.email-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.email-card li {
    padding: 0.75rem 0;
    color: #202020;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
}

.email-card i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Seção Suporte - Hospedagem */
.support-section {
    margin: 5rem 0;
    position: relative;
    z-index: 2;
}

.support-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid rgba(32, 32, 32, 0.05);
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(48, 156, 37, 0.25);
}

.support-card h3 {
    color: #202020;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.support-card p {
    color: #808080;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.email-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.email-features .feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.email-features .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gray);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(128, 128, 128, 0.25);
}

.email-features .feature-content h3 {
    color: #202020;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.email-features .feature-content p {
    color: #202020;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.empresa-content {
    margin-top: -20px;
}

/* Harmonização de cores de background das páginas */
.empresa-content {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #f5f7fa 50%, #f5f7fa 100%) !important;
    padding: 120px 0 !important;
    position: relative;
    overflow: hidden;
}

.empresa-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, transparent 48%, rgba(48, 156, 37, 0.03) 50%, transparent 52%, transparent 100%),
        radial-gradient(circle at 10% 20%, rgba(48, 156, 37, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(32, 32, 32, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.empresa-content > .container {
    position: relative;
    z-index: 1;
}

.empresa-content .section-header {
    position: relative;
    z-index: 2;
}

.empresa-content .section-header h2 {
    color: #202020;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.4px;
    margin-bottom: 1rem;
}

.empresa-content .section-header p {
    color: #808080;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

.services-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #f5f7fa 50%, var(--primary-color) 50%, var(--primary-color) 100%) !important;
    padding: 120px 0 !important;
    position: relative;
    overflow: hidden;
    margin-top: -20px;
}

.services-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, transparent 48%, rgba(255, 255, 255, 0.05) 50%, transparent 52%, transparent 100%),
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.services-page > .container {
    position: relative;
    z-index: 1;
}

.services-page .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.services-page .section-header h2 {
    color: #202020;
}

.services-page .section-header p {
    color: #808080;
}

.portfolio-page {
    background: #ffffff !important;
}

.portfolio-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

.empresa-content .content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .empresa-content .content-wrapper {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 5rem;
    }
}

.empresa-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.empresa-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.empresa-image img, .servico-image img, .projeto-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
    transition: transform 0.4s ease;
}

.empresa-image:hover img {
    transform: scale(1.02);
}

.empresa-text, .servico-content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #202020;
    position: relative;
    z-index: 2;
}

.empresa-text h2,
.empresa-text h3,
.empresa-text h4 {
    color: #202020;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.empresa-text h2:first-child,
.empresa-text h3:first-child,
.empresa-text h4:first-child {
    margin-top: 0;
}

.empresa-text p {
    color: #202020;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--dark-color);
    font-weight: 400;
    animation: fadeInUp 0.8s ease;
}

.projeto-content {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--white);
    font-weight: 400;
    animation: fadeInUp 0.8s ease;
}

.empresa-text strong, .servico-content strong {
    color: var(--dark-color);
    font-weight: 700;
}

.projeto-content strong {
    color: #202020;
    font-weight: 700;
}

.empresa-text em, .servico-content em, .projeto-content em {
    color: var(--primary-color);
    font-style: normal;
    font-weight: 600;
}

/* Links em textos - Contraste Melhorado */
.empresa-text a, 
.servico-content a, 
.projeto-content a,
.servico-full-content a,
.projeto-description a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    padding-bottom: 2px;
}

.empresa-text a:hover, 
.servico-content a:hover, 
.projeto-content a:hover,
.servico-full-content a:hover,
.projeto-description a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-color);
}

.empresa-text h2, .empresa-text h3, .servico-content h2, .servico-content h3 {
    color: var(--dark-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.projeto-content h2, .projeto-content h3 {
    color: #202020;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.empresa-text h2:first-child, .servico-content h2:first-child {
    margin-top: 0;
}

/* Contato - Moderno e Animado */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .contato-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contato-info {
    max-width: 100%;
    animation: fadeInUp 0.8s ease;
}

.contato-info h2 {
    font-size: 2rem;
    color: #202020;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contato-info > p {
    color: #404040;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.contato-form-wrapper {
    max-width: 100%;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.contato-form-wrapper h2 {
    margin-bottom: 2rem;
    color: #202020;
    font-size: 2rem;
    font-weight: 700;
}

.contato-form {
    max-width: 100%;
}

.contato-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

/* Mobile: ícone em cima, conteúdo embaixo */
@media (max-width: 767px) {
    .contato-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .contato-icon {
        margin-bottom: 0.5rem;
    }
    
    .contato-item > div:not(.contato-icon) {
        width: 100%;
        max-width: 100%;
    }
    
    .contato-item p,
    .contato-item a {
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
}

.contato-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.contato-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(48, 156, 37, 0.25);
    transition: all 0.4s ease;
}

.contato-item:hover .contato-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(48, 156, 37, 0.35);
}

.contato-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #202020;
    font-weight: 600;
}

.contato-item p {
    font-size: 1.05rem;
    color: #404040;
    margin-bottom: 0;
    line-height: 1.7;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contato-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    word-break: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}

.contato-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.social-links-large {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.social-links-large h3 {
    font-size: 1.2rem;
    color: #202020;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-btn.facebook { background: #1877f2; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.linkedin { background: #0077b5; }
.social-btn.youtube { background: #ff0000; }

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer * {
    color: var(--white) !important;
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
    color: var(--primary-color) !important;
    margin-bottom: 1.5rem;
}

.footer p,
.footer li,
.footer span,
.footer div {
    color: rgba(255, 255, 255, 0.9) !important;
}

.footer a {
    color: rgba(255, 255, 255, 0.95) !important;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer a:hover {
    color: var(--primary-color) !important;
    text-decoration: underline;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact-info i {
    color: var(--primary-color) !important;
}

.contact-info span,
.contact-info p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: var(--white);
}

/* Social links no footer - dentro da seção de contato */
.footer .social-links {
    margin-top: 1.5rem;
}

.footer .social-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer .social-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.footer .social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9) !important;
}

.footer-bottom * {
    color: rgba(255, 255, 255, 0.9) !important;
}

.footer-bottom i {
    color: var(--primary-color) !important;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.9) !important;
}

.footer-bottom a:hover {
    color: var(--primary-color) !important;
}

.footer-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.footer-logo-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.footer-signature-img {
    max-width: 50px;
    max-height: 50px;
    width: auto;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.footer-logo-link:hover .footer-signature-img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .footer-signature {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .footer-signature-img {
        max-width: 45px;
        max-height: 45px;
        margin-left: 0;
        margin-top: 0.25rem;
    }
}

@media (max-width: 576px) {
    .footer-signature-img {
        max-width: 40px;
        max-height: 40px;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    z-index: 998;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* Alerts */
.alert-success {
    background: rgba(151, 210, 25, 0.1);
    border-color: var(--primary-color);
    color: #065f46;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #991b1b;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state i {
    font-size: 4rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.empty-state p {
    color: var(--gray);
}

.empty-state a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.empty-state a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-color);
}


/* Error Page */
.error-page {
    padding: 80px 0;
    text-align: center;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: #202020;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(48, 156, 37, 0.2);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(48, 156, 37, 0.25);
}

/* Empresa Page */
.empresa-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.value-card:nth-child(even) {
    border-top-color: var(--dark-color);
}

.value-card:nth-child(even) .value-icon {
    background: var(--dark-color);
    box-shadow: 0 4px 15px rgba(31, 41, 55, 0.3);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.empresa-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.stat-item:nth-child(even) {
    background: var(--dark-color);
    box-shadow: 0 4px 15px rgba(31, 41, 55, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

/* Service Card Large - Moderno e Animado */
.service-card-large {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 0;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeIn 0.8s ease backwards;
    opacity: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-large.visible {
    animation: fadeIn 0.8s ease forwards;
    opacity: 1;
}

.service-card-large:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card-large:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card-large:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card-large:nth-child(4) {
    animation-delay: 0.1s;
}

.service-card-large:nth-child(5) {
    animation-delay: 0.2s;
}

.service-card-large:nth-child(6) {
    animation-delay: 0.3s;
}

.service-card-large::before {
    display: none;
}

.service-card-large::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(48, 156, 37, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card-large:hover::after {
    opacity: 1;
}

.service-card-large:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.service-card-large .service-image {
    width: 100%;
    overflow: hidden;
    position: relative;
    aspect-ratio: 21 / 9;
    max-height: 200px;
    background: #f5f7fa;
}

.service-card-large .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

@media (min-width: 1200px) {
    .service-card-large .service-image {
        max-height: 220px;
    }
}

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

.service-card-large .service-content {
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
}

@media (min-width: 1200px) {
    .service-card-large .service-content {
        padding: 2.5rem;
    }
}

.service-card-large .service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(48, 156, 37, 0.25);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

@media (min-width: 1200px) {
    .service-card-large .service-icon {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
}

.service-card-large:nth-child(2) .service-icon,
.service-card-large:nth-child(5) .service-icon {
    background: linear-gradient(135deg, var(--gray) 0%, #808080 100%);
    box-shadow: 0 6px 20px rgba(128, 128, 128, 0.25);
}

.service-card-large:nth-child(3) .service-icon,
.service-card-large:nth-child(6) .service-icon {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.25);
}

.service-card-large:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(48, 156, 37, 0.35);
}

.service-card-large:nth-child(2):hover .service-icon,
.service-card-large:nth-child(5):hover .service-icon {
    box-shadow: 0 8px 25px rgba(128, 128, 128, 0.35);
}

.service-card-large:nth-child(3):hover .service-icon,
.service-card-large:nth-child(6):hover .service-icon {
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.35);
}

.service-card-large h2 {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    color: #202020;
    font-weight: 600;
    letter-spacing: -0.4px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

@media (min-width: 1200px) {
    .service-card-large h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
}

.service-card-large .service-description {
    font-size: 1.05rem;
    color: #606060;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 1200px) {
    .service-card-large .service-description {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 2rem;
        -webkit-line-clamp: 5;
    }
}

.service-card-large .service-full-description h3,
.service-card-large .service-full-description h4 {
    color: #202020;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card-large .service-full-description h3:first-child {
    margin-top: 0;
}

.service-card-large .service-full-description p {
    color: #202020;
    margin-bottom: 1.5rem;
}

.service-card-large .btn {
    position: relative;
    z-index: 1;
    margin-top: auto;
    align-self: flex-start;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: var(--dark-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(31, 41, 55, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botão Flutuante Solicitar Orçamento */
.floating-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    color: var(--white);
}

.floating-btn-text {
    position: absolute;
    right: 70px;
    background: var(--dark-color);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 600;
}

.floating-btn-text::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: var(--dark-color);
}

.floating-btn:hover .floating-btn-text {
    opacity: 1;
    right: 75px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 576px) {
    .floating-btn {
        width: 55px;
        height: 55px;
        bottom: 95px;
        right: 15px;
        font-size: 1.3rem;
    }
    
    .floating-btn-text {
        display: none;
    }
}

/* Melhorias Gerais de Layout e Espaçamento */
.container {
    max-width: 1050px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1150px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Container para conteúdo de texto */
.content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Container para formulários */
.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
}

/* Limitar largura de textos longos */
.empresa-text, .servico-content, .servico-full-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.projeto-content, .projeto-description {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--white);
}

.empresa-text p, .servico-content p {
    max-width: 100%;
    text-align: left;
    line-height: 1.9;
}

.projeto-content p {
    max-width: 100%;
    text-align: left;
    line-height: 1.8;
    color: #404040;
}

.empresa-text p:first-child, .servico-content p:first-child {
    font-size: 1.15rem;
    color: var(--dark-color);
    font-weight: 500;
}

.projeto-content p:first-child {
    font-size: 1.1rem;
    color: #404040;
    font-weight: 500;
}

.empresa-text ul, .empresa-text ol, .servico-content ul, .servico-content ol {
    max-width: 100%;
}

/* Serviço e Projeto Detail - Design Futurista */
.servico-wrapper, .projeto-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.projeto-detail {
    background: linear-gradient(135deg, #f5f7fa 0%, #f5f7fa 50%, #ffffff 50%, #ffffff 100%) !important;
    padding: 120px 0 !important;
    position: relative;
    overflow: hidden;
    margin-top: -20px;
}

.projeto-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, transparent 48%, rgba(48, 156, 37, 0.02) 50%, transparent 52%, transparent 100%),
        radial-gradient(circle at 20% 30%, rgba(48, 156, 37, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(48, 156, 37, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.projeto-detail > .container {
    position: relative;
    z-index: 1;
}

.projeto-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.projeto-image {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    margin: 0 auto 3rem;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: #f5f7fa;
    animation: fadeInUp 0.8s ease;
    padding: 1.5rem;
}

.projeto-image img {
    width: 100%;
    max-width: 100%;
    max-height: 450px;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
    border-radius: 16px;
    object-fit: contain;
    margin: 0 auto;
    background: var(--white);
}

.projeto-image:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.projeto-image:hover img {
    transform: scale(1.01);
}

.projeto-content {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.8s ease 0.2s backwards;
    position: relative;
}

@media (max-width: 768px) {
    .projeto-content {
        padding: 2rem 1.5rem;
    }
}

.projeto-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 0;
}
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 4px 20px rgba(0, 0, 0, 0.2);
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: #f5f7fa;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.info-item strong {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #808080;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-item span {
    font-size: 1.1rem;
    color: #202020;
    font-weight: 600;
}

.projeto-description {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
    position: relative;
}

.projeto-description h2 {
    font-size: 2rem;
    color: #202020;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: -0.3px;
}

.projeto-description h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.projeto-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #404040;
    margin-bottom: 1.5rem;
}

.projeto-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-color);
}

.projeto-actions .btn {
    padding: 16px 36px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid transparent;
}

.projeto-actions .btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.projeto-actions .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.projeto-actions .btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.projeto-actions .btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.servico-cta, .projeto-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.servico-cta a,
.portfolio-actions a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.servico-cta a:hover,
.portfolio-actions a:hover {
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Serviço Detail - Nova Versão Elegante */
section.servico-header,
.servico-header.page-header {
    background: var(--dark-color) !important;
    padding: 80px 0 60px;
    position: relative;
    overflow: visible;
    color: var(--white) !important;
}

.servico-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.servico-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
    pointer-events: none;
}

.servico-header > .container {
    position: relative;
    z-index: 1;
}

.servico-header .breadcrumb a,
.servico-header .breadcrumb span {
    color: rgba(255, 255, 255, 0.8) !important;
}

.servico-header .breadcrumb .current {
    color: var(--white) !important;
}

.servico-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

.servico-hero-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
    font-size: 3rem;
    box-shadow: 0 10px 40px rgba(48, 156, 37, 0.3);
    animation: fadeInUp 0.8s ease 0.2s backwards;
    transition: transform 0.3s ease;
}

.servico-hero-icon:hover {
    transform: scale(1.05) rotate(5deg);
}

.servico-hero h1,
.servico-header .servico-hero h1,
section.servico-header .servico-hero h1 {
    font-size: 3rem;
    color: var(--white) !important;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.servico-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6;
    font-weight: 400;
}

.servico-image-section {
    padding: 4rem 0;
    background: var(--white);
}

.servico-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease;
}

.servico-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.servico-image-wrapper:hover img {
    transform: scale(1.02);
}

.servico-detail {
    background: linear-gradient(135deg, #f5f7fa 0%, #f5f7fa 50%, #ffffff 50%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.servico-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, transparent 48%, rgba(48, 156, 37, 0.02) 50%, transparent 52%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.servico-detail > .container {
    position: relative;
    z-index: 1;
}

.servico-intro {
    max-width: 900px;
    margin: 0 auto 5rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.8s ease;
}

.servico-intro .servico-full-content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #404040;
}

.servico-intro .servico-full-content h2,
.servico-intro .servico-full-content h3 {
    color: var(--dark-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.servico-intro .servico-full-content h2:first-child {
    margin-top: 0;
}

.servico-beneficios {
    margin: 5rem 0;
}

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

.servico-beneficios .section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.servico-beneficios .section-header p {
    font-size: 1.2rem;
    color: #606060;
}

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

.beneficio-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    animation: fadeInUp 0.8s ease;
    border: none;
}

.beneficio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.beneficio-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(48, 156, 37, 0.25);
}

.beneficio-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.beneficio-card p {
    font-size: 1rem;
    color: #606060;
    line-height: 1.7;
    margin: 0;
}

.servico-processo {
    margin: 5rem 0;
    background: var(--white);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.servico-processo .section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.servico-processo .section-header p {
    font-size: 1.2rem;
    color: #606060;
}

.processo-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.processo-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    animation: fadeInUp 0.8s ease;
}

.processo-item:last-child {
    margin-bottom: 0;
}

.processo-numero {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(48, 156, 37, 0.3);
}

.processo-content {
    flex: 1;
    padding-top: 0.5rem;
}

.processo-content h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.processo-content p {
    font-size: 1.05rem;
    color: #606060;
    line-height: 1.7;
    margin: 0;
}

.processo-arrow {
    position: absolute;
    left: 35px;
    top: 70px;
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

.servico-diferenciais {
    margin: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 10px 50px rgba(48, 156, 37, 0.2);
    color: var(--white);
}

.diferenciais-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.diferenciais-text h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 700;
}

.diferenciais-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.diferenciais-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.diferenciais-list li:last-child {
    margin-bottom: 0;
}

.diferenciais-list li i {
    color: var(--white);
    font-size: 1.2rem;
    width: 24px;
    flex-shrink: 0;
}

.diferenciais-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.diferenciais-cta h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.diferenciais-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.diferenciais-cta .btn {
    margin: 0.5rem;
}

.diferenciais-cta .btn-outline-primary {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.diferenciais-cta .btn-outline-primary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.diferenciais-cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.diferenciais-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.servico-cta-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a2a2a 100%) !important;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--white) !important;
}

.servico-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(48, 156, 37, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.servico-cta-section .cta-content {
    position: relative;
    z-index: 1;
}

.servico-cta-section .cta-content h2,
.servico-cta-section .cta-content h1,
.servico-cta-section .cta-content h3 {
    font-size: 2.5rem;
    color: var(--white) !important;
    margin-bottom: 1rem;
    font-weight: 700;
}

.servico-cta-section .cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 2rem;
    font-weight: 400;
}

.servico-cta-section .cta-content a:not(.btn) {
    color: var(--white) !important;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--dark-color);
}

/* Responsive */
@media (max-width: 992px) {
    .diferenciais-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .servico-hero h1 {
        font-size: 2.5rem;
    }
    
    .servico-hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .servico-hero-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .servico-hero h1 {
        font-size: 2rem;
    }
    
    .servico-intro {
        padding: 2rem 1.5rem;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .servico-processo {
        padding: 2rem 1.5rem;
    }
    
    .processo-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .processo-arrow {
        display: none;
    }
    
    .servico-diferenciais {
        padding: 2rem 1.5rem;
    }
    
    .diferenciais-text h2 {
        font-size: 2rem;
    }
    
    .diferenciais-cta {
        padding: 2rem 1.5rem;
    }
    
    .servico-cta-section .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

.content-wrapper {
    margin-bottom: 4rem;
}

/* Cards Melhorados */
.card, .service-card, .service-card-large, .value-card, .testimonial-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover, .service-card:hover, .service-card-large:hover, .value-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

/* Formulários Melhorados */
.form-control, .form-select, input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.form-control:focus, .form-select:focus, input:focus, textarea:focus, select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    outline: none;
}

.form-label, label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: block;
}

/* Formulário de Orçamento */
.orcamento-form, .contato-form {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .orcamento-form, .contato-form {
        padding: 1.5rem;
    }
}

.form-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.form-intro h2 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.form-intro p {
    color: var(--gray);
    font-size: 1.05rem;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 1rem;
    font-style: italic;
}

/* Espaçamentos Melhorados */
.mb-section {
    margin-bottom: 5rem;
}

.mt-section {
    margin-top: 5rem;
}

.py-section {
    padding: 5rem 0;
}

/* Breadcrumb duplicado removido - estilos estão no .page-header .breadcrumb */

/* Imagens Responsivas */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Listas Melhoradas */
ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* Tabelas (se houver) */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

table th, table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

table th {
    background: var(--light-gray);
    font-weight: 600;
    color: var(--dark-color);
}

/* Utilities */
.text-center {
    text-align: center;
}

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.shadow {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Melhorias Adicionais de Legibilidade */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray);
}

.empty-state i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* Estatísticas Melhoradas - Com Animação */
.empresa-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 5rem 0;
    padding: 4rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(48, 156, 37, 0.2);
    z-index: 2;
}

.empresa-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.empresa-stats .stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    animation: fadeIn 0.8s ease backwards;
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.empresa-stats .stat-item.visible {
    animation: fadeIn 0.8s ease forwards;
    opacity: 1;
}

.empresa-stats .stat-item:nth-child(1) { animation-delay: 0.1s; }
.empresa-stats .stat-item:nth-child(2) { animation-delay: 0.2s; }
.empresa-stats .stat-item:nth-child(3) { animation-delay: 0.3s; }
.empresa-stats .stat-item:nth-child(4) { animation-delay: 0.4s; }

.empresa-stats .stat-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.empresa-stats .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1;
    display: block;
    position: relative;
    z-index: 1;
}

.empresa-stats .stat-item:nth-child(even) .stat-number {
    color: var(--dark-color);
}

.empresa-stats .stat-label {
    font-size: 1rem;
    color: #202020;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

/* Links em estatísticas */
.empresa-stats a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.empresa-stats a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Valores da Empresa - Elegante e Moderno */
.empresa-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 5rem 0;
    position: relative;
    z-index: 2;
}

.value-card {
    padding: 3rem 2.5rem;
    text-align: center;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease backwards;
    opacity: 0;
}

.value-card.visible {
    animation: fadeIn 0.8s ease forwards;
    opacity: 1;
}

.value-card:nth-child(1) { 
    animation-delay: 0.1s;
}

.value-card:nth-child(2) { 
    animation-delay: 0.2s;
}

.value-card:nth-child(3) { 
    animation-delay: 0.3s;
}

.value-card::before {
    display: none;
}

.value-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(48, 156, 37, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.value-card:hover::after {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(48, 156, 37, 0.25);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.value-card:nth-child(2) .value-icon {
    background: var(--gray);
    box-shadow: 0 6px 20px rgba(128, 128, 128, 0.25);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(48, 156, 37, 0.35);
}

.value-card:nth-child(2):hover .value-icon {
    box-shadow: 0 8px 25px rgba(128, 128, 128, 0.35);
}

.value-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #202020;
    font-weight: 600;
    letter-spacing: -0.2px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.value-card p {
    color: #202020;
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Feature Card - Hospedagem */
.feature-card {
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border-top: 5px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease backwards;
    height: 100%;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; border-top-color: var(--dark-color); }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(151, 210, 25, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.feature-card:nth-child(2) .feature-icon {
    background: var(--dark-color);
    box-shadow: 0 8px 25px rgba(31, 41, 55, 0.4);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Pricing Card - Hospedagem */
.pricing-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeIn 0.8s ease backwards;
    opacity: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.pricing-card.visible {
    animation: fadeIn 0.8s ease forwards;
    opacity: 1;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    z-index: 2;
    box-shadow: 0 8px 30px rgba(48, 156, 37, 0.15);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 35px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(48, 156, 37, 0.3);
    z-index: 20;
}

.pricing-header {
    padding: 2rem 1.5rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    position: relative;
    border-radius: 24px 24px 0 0;
}

.pricing-card.featured .pricing-header {
    background: var(--gray);
    border-radius: 24px 24px 0 0;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: -0.2px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    opacity: 0.9;
}

.pricing-features {
    padding: 2rem 1.5rem;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #202020;
    line-height: 1.4;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.pricing-footer {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(48, 156, 37, 0.2);
}

/* Portfolio Filters - Design Futurista */
.portfolio-page .portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    animation: fadeInDown 0.8s ease;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    box-shadow: none;
    border: none;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}


/* Responsividade Melhorada */
@media (max-width: 991px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .empresa-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .empresa-values {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-content {
        padding: 40px 0 80px 0 !important;
    }
    
    .hero-description {
        margin-bottom: 2rem !important;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        min-height: auto;
        height: auto;
    }
    
    .hospedagem-content {
        padding: 80px 0 !important;
    }
    
    .hospedagem-content .section-header h2 {
        font-size: 2rem;
    }
    
    .uptime-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }
    
    .pricing-card.featured {
        z-index: 2;
    }
    
    .pricing-badge {
        right: -25px;
        padding: 5px 30px;
        font-size: 0.75rem;
    }
    
    .pricing-header {
        padding: 1.5rem 1.25rem 1.25rem;
        border-radius: 24px 24px 0 0;
    }
    
    .pricing-header h3 {
        font-size: 1.35rem;
    }
    
    .pricing-price .price {
        font-size: 2rem;
    }
    
    .pricing-features {
        padding: 1.5rem 1.25rem;
    }
    
    .pricing-features li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }
    
    .pricing-footer {
        padding: 1.25rem;
    }
    
    .mysql-features .feature-item,
    .email-features .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .mysql-features .feature-icon,
    .email-features .feature-icon {
        margin: 0 auto;
    }
    
    .page-header .container {
        min-height: auto;
        height: auto;
        padding: 50px 30px 90px 30px !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .page-header-content {
        width: 100%;
        max-width: 100%;
        padding: 0 15px 25px 15px;
        box-sizing: border-box;
    }
    
    .page-header h1 {
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        padding: 0;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        margin: 0;
        line-height: 1.6;
    }
    
    .page-header .breadcrumb {
        padding: 0;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .error-code {
        font-size: 5rem;
    }
}

/* Ajustes adicionais para telas muito pequenas */
@media (max-width: 576px) {
    .hero-content {
        padding: 35px 0 70px 0 !important;
    }
    
    .hero-description {
        margin-bottom: 1.5rem !important;
    }
    
    .page-header {
        min-height: auto;
        height: auto;
    }
    
    .page-header .container {
        min-height: auto;
        height: auto;
        padding: 40px 25px 80px 25px !important;
    }
    
    .page-header-content {
        padding: 0 10px 20px 10px;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
        padding: 0;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
        padding: 0;
        line-height: 1.5;
    }
    
    .page-header .breadcrumb {
        font-size: 0.85rem;
        padding: 0;
        gap: 0.3rem;
        margin-bottom: 1.25rem;
    }
    
    .page-header .breadcrumb span {
        margin: 0 4px;
    }
}

/* Modal de Depoimento */
.testimonial-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.testimonial-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.testimonial-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: slideUp 0.4s ease;
    padding: 2.5rem;
}

.testimonial-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #202020;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10001;
}

.testimonial-modal-close:hover {
    background: rgba(32, 32, 32, 0.1);
    transform: rotate(90deg);
}

.testimonial-modal-body {
    text-align: center;
}

.testimonial-modal-photo {
    margin-bottom: 1.5rem;
}

.testimonial-modal-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    margin: 0 auto;
    display: block;
}

.testimonial-modal-photo .testimonial-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--white);
    font-size: 3rem;
}

.testimonial-modal-info {
    margin-bottom: 2rem;
}

.testimonial-modal-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #202020;
    margin-bottom: 0.5rem;
}

.testimonial-modal-role {
    font-size: 1rem;
    color: #808080;
    margin-bottom: 0.25rem;
}

.testimonial-modal-company {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0;
}

.testimonial-modal-content-text {
    position: relative;
    text-align: left;
}

.testimonial-modal-content-text i {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-modal-content-text p {
    color: #202020;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .testimonial-modal-content {
        width: 95%;
        padding: 2rem 1.5rem;
        max-height: 85vh;
    }
    
    .testimonial-modal-photo img,
    .testimonial-modal-photo .testimonial-photo-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .testimonial-modal-info h3 {
        font-size: 1.25rem;
    }
}

/* LGPD Consent Banner */
.lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.lgpd-banner.show {
    transform: translateY(0);
}

.lgpd-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.lgpd-text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    min-width: 300px;
}

.lgpd-text i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.lgpd-text strong {
    display: block;
    color: #202020;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.lgpd-text p {
    color: #808080;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.lgpd-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.lgpd-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-lgpd-config,
.btn-lgpd-accept {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-lgpd-config {
    background: transparent;
    color: #202020;
    border: 2px solid #ddd;
}

.btn-lgpd-config:hover {
    background: #f5f5f5;
    border-color: #202020;
}

.btn-lgpd-accept {
    background: var(--primary-color);
    color: var(--white);
}

.btn-lgpd-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(48, 156, 37, 0.3);
}

/* LGPD Modal */
.lgpd-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.lgpd-modal.show {
    opacity: 1;
}

.lgpd-modal-content {
    background: var(--white);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.lgpd-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lgpd-modal-header h3 {
    margin: 0;
    color: #202020;
    font-size: 1.5rem;
}

.lgpd-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #808080;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 0.3s ease;
}

.lgpd-modal-close:hover {
    color: #202020;
}

.lgpd-modal-body {
    padding: 1.5rem;
}

.lgpd-option {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.lgpd-option:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.lgpd-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.lgpd-option input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.lgpd-option input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lgpd-option span {
    color: #202020;
    font-size: 1.05rem;
    line-height: 1.5;
}

.lgpd-option p {
    color: #808080;
    font-size: 0.9rem;
    margin: 0.5rem 0 0 1.75rem;
    line-height: 1.6;
}

.lgpd-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-lgpd-save,
.btn-lgpd-accept-all {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-lgpd-save {
    background: transparent;
    color: #202020;
    border: 2px solid #ddd;
}

.btn-lgpd-save:hover {
    background: #f5f5f5;
    border-color: #202020;
}

.btn-lgpd-accept-all {
    background: var(--primary-color);
    color: var(--white);
}

.btn-lgpd-accept-all:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(48, 156, 37, 0.3);
}

/* Checkbox Label para Formulários */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #202020;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label span {
    flex: 1;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.checkbox-label a:hover {
    text-decoration: none;
}

/* Responsividade LGPD */
@media (max-width: 768px) {
    .lgpd-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .lgpd-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-lgpd-config,
    .btn-lgpd-accept {
        width: 100%;
    }
    
    .lgpd-modal-content {
        margin: 1rem;
    }
    
    .lgpd-modal-footer {
        flex-direction: column;
    }
    
    .btn-lgpd-save,
    .btn-lgpd-accept-all {
        width: 100%;
    }
}


