* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #d4af37;
    --secondary-dark: #b8941f;
    --accent-color: #ffd700;
    --text-color: #f5f5dc;
    --text-dark: #1a1a1a;
    --light-bg: #1a1a1a;
    --white: #ffffff;
    --gold-light: #ffd700;
    --gold-medium: #d4af37;
    --gold-dark: #b8941f;
    --gradient-primary: linear-gradient(135deg, #ffd700 0%, #d4af37 50%, #b8941f 100%);
    --gradient-tech: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #d4af37 50%, #b8941f 100%);
}

/* Full width for clients section */
.clients.clients-full .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0;
    padding-right: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: #1a1a1a;
    background-attachment: fixed;
    position: relative;
}


body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Animated Grid Background */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

/* Global Title Styles - Golden Color */
h1, h2, h3 {
    background: linear-gradient(135deg, #ffd700, #d4af37, #b8941f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #000000;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 60px rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    padding: 20px 0;
    border-bottom: 2px solid rgba(212, 175, 55, 0.4);
    isolation: isolate;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
    animation: scanline 3s linear infinite;
}

@keyframes scanline {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    position: relative;
}

.logo img {
    height: 120px;
    transition: all 0.3s ease;
    animation: logoGlow 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 1));
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 1)) 
                drop-shadow(0 0 60px rgba(184, 148, 31, 0.9)) 
                drop-shadow(0 0 90px rgba(245, 158, 11, 0.7))
                drop-shadow(0 0 120px rgba(255, 215, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(212, 175, 55, 1)) 
                drop-shadow(0 0 100px rgba(184, 148, 31, 1)) 
                drop-shadow(0 0 150px rgba(245, 158, 11, 0.9))
                drop-shadow(0 0 200px rgba(255, 215, 0, 0.7));
    }
}

/* Header Social Icons */
.header-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-header-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-header-icon.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.social-header-icon.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.social-header-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.social-header-icon:hover {
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a:hover {
    animation: menuGlow 2s ease-in-out infinite;
}

@keyframes menuGlow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6), 0 0 60px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 8px 40px rgba(0, 212, 255, 0.8), 0 0 80px rgba(102, 126, 234, 0.5);
    }
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 10px 20px;
    border-radius: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: linear-gradient(135deg, transparent, rgba(0, 212, 255, 0.05));
    border: 1px solid transparent;
    animation: menuItemPulse 6s ease-in-out infinite;
}

@keyframes menuItemPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 212, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    }
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.2), transparent);
    border-radius: 10px;
    z-index: -1;
    animation: menuPulseRing 6s ease-in-out infinite;
    opacity: 0;
}

@keyframes menuPulseRing {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

.nav-menu a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(245, 158, 11, 0.2), transparent);
    border-radius: 10px;
    z-index: -2;
    animation: menuPulseRing 6s ease-in-out infinite 1.5s;
    opacity: 0;
}

.nav-menu a:hover {
    color: #d4af37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 148, 31, 0.15));
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6), 0 0 60px rgba(184, 148, 31, 0.3);
    transform: translateY(-5px) scale(1.05);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.nav-menu a:hover::before {
    opacity: 0.5;
}

.nav-menu a:hover::after {
    opacity: 0.5;
}

@keyframes borderRotate {
    0% {
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.5), rgba(102, 126, 234, 0.5), rgba(124, 58, 237, 0.5));
    }
    33% {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.5), rgba(124, 58, 237, 0.5), rgba(0, 212, 255, 0.5));
    }
    66% {
        background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(0, 212, 255, 0.5), rgba(102, 126, 234, 0.5));
    }
    100% {
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.5), rgba(102, 126, 234, 0.5), rgba(124, 58, 237, 0.5));
    }
}

/* Active Menu Item */
.nav-menu a.active {
    color: #00d4ff;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(102, 126, 234, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.nav-menu a.active::before {
    width: 100%;
    height: 3px;
}

.nav-menu a.active::after {
    opacity: 0.8;
}

/* Admin link special styling */
.nav-menu a.admin-link {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(184, 148, 31, 0.2));
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #d4af37 !important;
}

.nav-menu a.admin-link:hover {
    background: linear-gradient(135deg, #ffd700, #d4af37, #b8941f);
    color: #000 !important;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.8), 0 0 60px rgba(184, 148, 31, 0.5);
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    min-width: 250px;
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    position: relative;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background: var(--light-bg);
    color: var(--secondary-color);
}

.dropdown-content a .external-link-icon {
    font-size: 0.8em;
    margin-left: 5px;
    opacity: 0.7;
}

.dropdown-content a:hover .external-link-icon {
    opacity: 1;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: #1a1a1a;
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    z-index: 1;
}

@keyframes scanlines {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(50px);
    }
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%),
        linear-gradient(135deg, transparent 0%, rgba(0, 212, 255, 0.1) 100%);
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #d4af37, #b8941f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #b8941f, #f59e0b);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #d4af37, #b8941f, #f59e0b, #d4af37);
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.btn-cta:hover::after {
    opacity: 0.7;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.8), 0 0 60px rgba(184, 148, 31, 0.6);
}

.btn-cta:hover::before {
    left: 100%;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.about .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.about-section-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--secondary-color) !important;
    -webkit-text-fill-color: var(--secondary-color) !important;
    background: none !important;
    writing-mode: horizontal-tb;
    letter-spacing: 15px;
    line-height: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    width: 100%;
}

.about-section-title .title-word {
    display: block;
    color: var(--secondary-color) !important;
    -webkit-text-fill-color: var(--secondary-color) !important;
    background: none !important;
}

.about-section-title .title-word-1 {
    transform: translateY(100px);
    opacity: 0;
    animation: slideUpFromBottom 1s ease-out forwards;
}

.about-section-title .title-word-2 {
    transform: translateY(100px);
    opacity: 0;
    animation: slideUpFromBottom 1s ease-out 0.4s forwards;
}

@keyframes slideUpFromBottom {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.about-content {
    padding: 50px;
    background: rgba(15, 22, 36, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00d4ff, #667eea, #00d4ff, transparent);
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    }
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
    line-height: 1.8;
    color: #e0e0e0;
}

.about-content strong {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Gallery Section */
.gallery {
    padding: 80px 20px;
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2), 0 0 60px rgba(184, 148, 31, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4), 0 0 80px rgba(184, 148, 31, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

/* Responsividade para galeria */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .service-image img {
        height: 250px;
    }
}

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

/* Video Section */
.video-section {
    padding: 80px 20px;
    text-align: center;
}

.video-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.video-section p {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.video-wrapper {
    display: flex;
    justify-content: center;
}

/* Services Icons Section */
.services-icons {
    padding: 80px 20px;
    background: var(--light-bg);
}

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

.service-icon-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), #f0f0f0);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-icon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    color: var(--secondary-color);
}

.service-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary-color), #d45522);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-icon-wrapper i.fas:first-child {
    font-size: 2rem;
    color: white;
    z-index: 2;
}

.service-icon-wrapper .external-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 0.8rem;
    background: var(--white);
    padding: 3px;
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-icon-card:hover .service-icon-wrapper .external-icon {
    opacity: 1;
}

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

.service-icon-card h3 {
    margin: 15px 0 10px;
    font-size: 1.2rem;
    color: var(--text-color);
}

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

.service-icon-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Services Page */
.services-page {
    padding: 80px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.05) 50%, transparent 100%);
    position: relative;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-page-item {
    background: rgba(26, 26, 26, 0.2);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-page-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #b8941f, #d4af37, #ffd700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.service-page-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4), 0 0 60px rgba(184, 148, 31, 0.3);
    border-color: rgba(212, 175, 55, 0.6);
}

.service-page-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #b8941f, #d4af37, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: all 0.4s ease;
    position: relative;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6), 0 0 60px rgba(184, 148, 31, 0.4);
    }
}

.service-page-item:hover .service-page-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6), 0 0 80px rgba(184, 148, 31, 0.5);
}

.service-page-item:hover .service-page-icon-image {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5), 0 0 80px rgba(184, 148, 31, 0.4);
}

.service-page-icon i {
    font-size: 2rem;
    color: white;
}

.service-page-icon-image {
    width: 80px;
    height: 80px;
    background: none !important;
    border-radius: 50%;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4), 0 0 40px rgba(184, 148, 31, 0.3);
    animation: none !important;
}

.service-page-icon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.service-page-item:hover .service-page-icon-image img {
    transform: scale(1.1);
}

.service-page-item h2 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-page-item p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-page-item ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-page-item ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.service-page-item ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.btn-service {
    display: inline-block;
    background: linear-gradient(135deg, #b8941f, #d4af37);
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-service:hover::before {
    left: 100%;
}

.btn-service:hover {
    background: linear-gradient(135deg, #b8941f, #ffd700);
    transform: translateX(8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5), 0 0 60px rgba(184, 148, 31, 0.4);
}

.btn-service i {
    margin-left: 8px;
    font-size: 0.9em;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: var(--white);
}

/* Section Dividers */
.section-divider {
    width: 100%;
    height: 150px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.08), transparent);
    margin: 60px 0;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.8), rgba(245, 158, 11, 0.8), rgba(212, 175, 55, 0.8), transparent);
    animation: dividerGlow 3s ease-in-out infinite;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.3), transparent);
    animation: dividerScan 4s linear infinite;
}

@keyframes dividerGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.8), 0 0 80px rgba(245, 158, 11, 0.6);
    }
}

@keyframes dividerScan {
    0% {
        transform: translate(-50%, -50%) translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) translateX(100%);
        opacity: 0;
    }
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ffd700, #d4af37, #b8941f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    animation: titleUnderline 3s ease-in-out infinite;
}

@keyframes titleUnderline {
    0%, 100% {
        width: 100px;
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    }
    50% {
        width: 200px;
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
    }
}

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

.service-card {
    background: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
    text-decoration: none;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px;
    text-align: center;
    color: var(--text-color);
}

/* Stats Section */
.stats {
    padding: 80px 20px;
    background: transparent;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

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

.stat-item {
    padding: 30px;
    background: rgba(26, 6, 57, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(245, 158, 11, 0.15));
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.6);
    border-color: rgba(212, 175, 55, 0.8);
}

.stat-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ffffff, #d4af37, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

/* Clients Section */
.clients {
    padding: 80px 20px;
    background: var(--light-bg);
}

.clients-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.clients-grid img {
    max-height: 80px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.clients-grid img:hover {
    opacity: 1;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-image {
    width: 100%;
    min-height: 300px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-image:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.testimonial-image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

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

.image-zoom-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.testimonial-image:hover .image-zoom-icon {
    opacity: 1;
    transform: scale(1);
}


/* Responsive Testimonials */
@media (max-width: 968px) {
    .testimonial-image {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 20px;
    }
    
    .testimonial-image {
        min-height: 200px;
    }
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    cursor: default;
    animation: modalZoomIn 0.3s ease;
}

@keyframes modalZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.image-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.image-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.9);
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.image-modal-close:hover {
    background: rgba(212, 175, 55, 1);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.7);
}

@media (max-width: 768px) {
    .image-modal-close {
        top: -40px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Instagram Section */
.instagram {
    padding: 80px 20px;
    background: var(--white);
}

.instagram h2 {
    text-align: center;
    margin-bottom: 40px;
}

.instagram-widget {
    display: flex;
    justify-content: center;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: transparent;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(10px);
}

.contact-item i {
    font-size: 28px;
    background: linear-gradient(135deg, #00d4ff, #0062ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
    margin-top: 5px;
    min-width: 30px;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
    transform: scale(1.1);
}

.contact-item h3 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

/* Contact WhatsApp number link */
.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-color);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(224, 224, 224, 0.6);
}

.btn-submit {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-submit:hover {
    background: var(--secondary-dark);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 212, 255, 0.5);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
    animation: floatParticle 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 40%;
    left: 50%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 30%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    top: 10%;
    left: 70%;
    animation-delay: 8s;
}

.particle:nth-child(6) {
    top: 50%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(100px, -100px) scale(1.5);
        opacity: 1;
    }
    50% {
        transform: translate(-50px, 100px) scale(0.8);
        opacity: 0.5;
    }
    75% {
        transform: translate(150px, 50px) scale(1.2);
        opacity: 0.8;
    }
}

/* WhatsApp Floating Button */
.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: white;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Social Media Section */
.social-media {
    padding: 80px 20px;
    background: rgba(15, 22, 36, 0.5);
    backdrop-filter: blur(10px);
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.social-card {
    background: rgba(15, 22, 36, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.social-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
    background: rgba(15, 22, 36, 0.8);
}

.social-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-icon.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4);
}

.social-icon.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

.social-card:hover .social-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.social-card h3 {
    margin: 15px 0 10px;
    font-size: 1.5rem;
    color: var(--text-color);
}

.social-card:hover h3 {
    color: var(--secondary-color);
}

.social-card p {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 10px;
}

.social-link {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-top: 10px;
    font-weight: 500;
}

.social-card:hover .social-link {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    flex-direction: column;
}

.footer-content > div:first-child,
.footer-content > div:nth-child(2) {
    width: 100%;
    text-align: center;
}

.footer-social {
    justify-content: center;
}

.footer-links {
    display: flex;
    justify-content: center;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* Instagram - Gradiente Rosa/Roxo */
.footer-icon-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.footer-icon-instagram:hover {
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 8px 30px rgba(225, 48, 108, 0.6);
}

/* YouTube - Vermelho */
.footer-icon-youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.footer-icon-youtube:hover {
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.6);
}

/* WhatsApp - Verde */
.footer-icon-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.footer-icon-whatsapp:hover {
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin-right: 20px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.footer-copyright p {
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-developer {
    text-align: center;
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-developer p {
    color: var(--white);
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.developer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

.developer-logo {
    height: 30px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.developer-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    opacity: 0.8;
}

.developer-link:hover {
    transform: translateY(-2px);
}

.developer-link:hover .developer-logo {
    opacity: 1;
    transform: scale(1.1);
}

.developer-link:hover .developer-text {
    opacity: 1;
    color: var(--secondary-color);
}

/* Service Pages */
.service-header,
.page-header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1), transparent 50%);
    animation: shine 8s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.service-header h1,
.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffd700, #d4af37, #b8941f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail {
    padding: 80px 20px;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-text h2 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.service-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.service-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-text ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.service-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-gallery {
    padding: 80px 20px;
    background: var(--light-bg);
}

/* CTA Section */
.cta-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent 70%);
    animation: ctaPulse 6s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

.cta-section > * {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffd700, #d4af37, #b8941f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

/* About Page */
.about-page {
    padding: 40px 20px;
}

.about-content-page {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    margin: 30px 0 15px 0;
    color: var(--secondary-color);
}

.about-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.team-section-inline {
    margin: 40px 0;
    padding: 40px 0;
}

.team-section-inline .team-content-wrapper {
    max-width: 100%;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1.1rem;
}

.features-list i {
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.values {
    padding: 40px 20px;
    background: var(--light-bg);
}

.values .container {
    max-width: 900px;
    margin: 0 auto;
}

.values .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Team Section */
.team-section {
    padding: 40px 20px;
    background: var(--light-bg);
}

.team-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.team-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.team-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0;
}

.team-text-content .section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 3.5rem;
    line-height: 0.6;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--secondary-color);
    background-clip: unset;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    width: 100%;
    padding-bottom: 0;
}

.team-text-content .section-title::after {
    display: none;
}

.team-text-content .title-separator-bar {
    width: 90%;
    max-width: 100%;
    height: 3px;
    background: var(--secondary-color);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    margin: 20px auto 30px auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.team-text-content .section-title br {
    display: block;
    margin: 0;
    content: "";
    line-height: 0;
}



.team-text-content .section-title .title-large {
    font-size: 1.3em;
    display: block;
    line-height: 0.6;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    text-align: center;
}

.team-text-content .section-title .title-small {
    font-size: 0.6em;
    display: block;
    line-height: 0.6;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    text-align: center;
}

.team-text-content .section-title .title-center {
    display: block;
    text-align: center;
    width: 100%;
    line-height: 0.6;
    margin: 0;
    padding: 0;
}

.team-text-content {
    align-self: center;
}

.section-subtitle {
    text-align: left;
    color: var(--text-color);
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 0;
    line-height: 1.8;
    margin-top: 0;
    font-weight: 300;
    padding-top: 0;
}

.team-image-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.team-image-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(212, 175, 55, 0.3);
    border: 3px solid var(--secondary-color);
    transition: all 0.3s ease;
    padding: 0;
    align-self: center;
    margin-top: 0;
    background: rgba(26, 26, 26, 0.8);
    display: block;
    min-height: 600px;
    position: relative;
}

.team-image-wrapper img {
    border-radius: 15px;
    width: 100%;
    display: block;
    height: 600px;
    object-fit: cover;
    object-position: center;
}

.team-image-wrapper:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5), 0 0 80px rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.team-main-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: rgba(15, 22, 36, 0.3);
}

.team-owners-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px 0 20px;
    margin-top: 0;
    width: 100%;
}

.team-owners-name {
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    white-space: nowrap;
    line-height: 1.1;
}

.team-owners-role {
    text-align: center;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 400;
    margin-top: -2px;
    padding: 0;
    opacity: 0.9;
    text-transform: capitalize;
    line-height: 1.1;
}

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

.team-member {
    text-align: center;
    padding: 30px;
    background: rgba(15, 22, 36, 0.6);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.05));
    opacity: 0;
    transition: opacity 0.3s;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(212, 175, 55, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.team-member:hover .team-photo {
    border-color: rgba(212, 175, 55, 0.8);
    transform: scale(1.05);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .team-photo img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffd700, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.team-description {
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

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

.team-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    color: var(--secondary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social a:hover {
    background: var(--secondary-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

@media (max-width: 992px) {
    .team-content-wrapper {
        gap: 40px;
    }
    
    .team-text-content .section-title {
        font-size: 2.8rem;
        line-height: 0.6;
    }
    
    .team-text-content .section-title br {
        display: block;
        margin: 0;
        content: "";
        line-height: 0;
    }
    
    .team-text-content .title-separator-bar {
        width: 90%;
        max-width: 100%;
        margin: 20px auto 30px auto;
    }
    
    .team-text-content .section-title .title-large {
        font-size: 1.3em;
        line-height: 0.6;
    }
    
    .team-text-content .section-title .title-small {
        font-size: 0.6em;
        line-height: 0.6;
        text-align: center;
    }
    
    .team-text-content .section-title .title-center {
        display: block;
        text-align: center;
        width: 100%;
        line-height: 0.6;
    }
}

@media (max-width: 768px) {
    .team-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
    }
    
    .team-text-content {
        padding-top: 0;
        text-align: center;
    }
    
    .team-text-content .section-title {
        text-align: center;
        font-size: 2.2rem;
        line-height: 0.6;
        letter-spacing: 1px;
        width: 100%;
    }
    
    .team-text-content .section-title br {
        display: block;
        margin: 0;
        content: "";
        line-height: 0;
    }
    
    .team-text-content .title-separator-bar {
        width: 90%;
        max-width: 100%;
        margin: 20px auto 30px auto;
    }
    
    .team-text-content .section-title .title-large {
        font-size: 1.3em;
        line-height: 0.6;
    }
    
    .team-text-content .section-title .title-small {
        font-size: 0.6em;
        line-height: 0.6;
        text-align: center;
    }
    
    .team-text-content .section-title .title-center {
        display: block;
        text-align: center;
        width: 100%;
        line-height: 0.6;
    }
    
    .section-subtitle {
        text-align: center;
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .team-image-container {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .team-image-wrapper {
        margin-top: 0;
        min-height: 500px;
    }
    
    .team-image-wrapper img {
        height: 500px;
    }
    
    .team-owners-info {
        padding-top: 20px;
    }
    
    .team-owners-name {
        font-size: 1.2rem;
        white-space: normal;
        line-height: 1.1;
    }
    
    .team-owners-role {
        font-size: 0.9rem;
        margin-top: -2px;
        line-height: 1.1;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-photo {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 600px) {
    .team-text-content .section-title {
        text-align: center;
        font-size: 1.8rem;
        letter-spacing: 0.5px;
        line-height: 0.6;
        width: 100%;
    }
    
    .team-text-content .section-title br {
        display: block;
        margin: 0;
        content: "";
        line-height: 0;
    }
    
    .team-text-content .title-separator-bar {
        width: 90%;
        max-width: 100%;
        margin: 20px auto 30px auto;
    }
    
    .team-text-content .section-title .title-large {
        font-size: 1.3em;
        line-height: 0.6;
    }
    
    .team-text-content .section-title .title-small {
        font-size: 0.6em;
        line-height: 0.6;
        text-align: center;
    }
    
    .team-text-content .section-title .title-center {
        display: block;
        text-align: center;
        width: 100%;
        line-height: 0.6;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .team-image-wrapper {
        min-height: 450px;
    }
    
    .team-image-wrapper img {
        height: 450px;
    }
    
    .team-owners-info {
        padding-top: 15px;
    }
    
    .team-owners-name {
        font-size: 1.1rem;
        white-space: normal;
        line-height: 1.1;
    }
    
    .team-owners-role {
        font-size: 0.85rem;
        margin-top: -2px;
        line-height: 1.1;
    }
}

.value-item {
    text-align: center;
    padding: 20px 15px;
    background: rgba(15, 22, 36, 0.6);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 212, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s;
}

.value-item:hover::before {
    opacity: 1;
}

.value-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.value-item:nth-child(1) i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    margin-bottom: 15px;
}

.value-item:nth-child(2) i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #00d4ff, #0062ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    margin-bottom: 15px;
}

.value-item:nth-child(3) i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #7c3aed, #b8941f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
    margin-bottom: 15px;
}

.value-item:nth-child(4) i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(236, 72, 153, 0.5);
    margin-bottom: 15px;
}

.value-item h3 {
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 1.1rem;
}

.value-item p {
    color: #999;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Map Section */
.map-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.8) 50%, transparent 100%);
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3), 0 0 60px rgba(26, 26, 26, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.map-wrapper iframe {
    width: 100%;
    border: none;
    display: block;
}

.map-section .section-title {
    color: #ffffff;
    text-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header Mobile */
    .logo img {
        height: 70px;
        max-width: 200px;
    }

    .header {
        padding: 15px 10px;
    }

    .header .container {
        gap: 15px;
        padding: 0 10px;
    }

    .menu-toggle {
        display: block;
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 5px 30px rgba(0,0,0,0.5);
        padding: 20px 15px;
        gap: 15px;
        z-index: 1000;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }

    .nav-menu a {
        font-size: 1.1rem;
        font-weight: 600;
        padding: 15px 20px;
        text-align: center;
        border: 2px solid rgba(212, 175, 55, 0.3);
        border-radius: 12px;
        letter-spacing: 1px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        margin-top: 10px;
    }

    /* Hero Mobile */
    .hero {
        padding: 40px 15px;
        min-height: auto;
    }

    .hero-content {
        width: 100%;
        padding: 0;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
        line-height: 1.3;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .hero-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: center;
        padding: 0 10px;
        margin-bottom: 25px;
    }

    .btn-cta {
        padding: 14px 30px;
        font-size: 1rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* About Mobile */
    .about {
        padding: 50px 15px;
    }

    .about-content {
        padding: 30px 20px;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: justify;
    }

    .about-section-title {
        font-size: 2rem;
        letter-spacing: 5px;
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-section-title .title-word-1,
    .about-section-title .title-word-2 {
        transform: translateY(30px);
        font-size: 2rem;
    }

    /* Stats Mobile */
    .stats {
        padding: 50px 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-item h3 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    /* Clients Mobile */
    .clients {
        padding: 50px 10px;
    }

    .clients .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    #clientsCarousel {
        height: 200px;
        margin: 0 10px;
    }

    /* Testimonials Mobile */
    .testimonials {
        padding: 50px 15px;
    }

    .testimonials .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .testimonial-content {
        max-width: 100%;
        padding: 0;
    }

    .testimonial-image {
        min-height: 250px;
        border-radius: 12px;
    }

    .image-zoom-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: 10px;
        right: 10px;
    }

    /* Section Divider Mobile */
    .section-divider {
        height: 60px;
        margin: 30px 0;
    }

    .section-divider::before {
        width: 60%;
        height: 2px;
    }

    .section-divider::after {
        display: none;
    }

    /* Section Titles Mobile */
    .section-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    /* Footer Mobile */
    .footer {
        padding: 30px 15px;
        margin-top: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
        gap: 15px;
    }

    .footer-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    /* Contact Mobile */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-content {
        grid-template-columns: 1fr;
    }

    .about-content-page,
    .about-content {
        text-align: left;
        padding: 25px 20px;
    }

    /* WhatsApp Button Mobile */
    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.3rem;
        letter-spacing: 0.5px;
        padding: 0 5px;
    }

    .hero-content p {
        font-size: 0.9rem;
        padding: 0 5px;
    }

    .about-section-title {
        font-size: 1.6rem;
        letter-spacing: 3px;
    }

    .about-section-title .title-word-1,
    .about-section-title .title-word-2 {
        font-size: 1.6rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .testimonial-image {
        min-height: 200px;
    }

    .btn-cta {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }

    .about-content {
        padding: 20px 15px;
    }

    .about-content p {
        font-size: 0.95rem;
    }

    #clientsCarousel {
        height: 180px;
    }
}

/* --- Spacing refinements (section rhythm) --- */
.clients,
.about,
.stats,
.services,
.values,
.instagram,
.contact,
.page-header,
.service-header,
.service-gallery,
.cta-section {
    padding-top: 48px;
    padding-bottom: 48px;
}

/* Tighter title spacing to bring content closer */
.section-title {
    margin-bottom: 20px;
}

/* Clients carousel title spacing and container breathing */
.clients .section-title {
    margin-bottom: 16px;
}

/* Divider with slightly increased vertical rhythm */
.section-divider {
    margin: 48px 0;
}

/* Footer top margin to separate from previous section */
.footer {
    margin-top: 36px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .clients,
    .about,
    .stats,
    .services,
    .values,
    .instagram,
    .contact,
    .page-header,
    .service-header,
    .service-gallery,
    .cta-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .section-divider { margin: 40px 0; }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .clients,
    .about,
    .stats,
    .services,
    .values,
    .instagram,
    .contact,
    .page-header,
    .service-header,
    .service-gallery,
    .cta-section {
        padding-top: 28px;
        padding-bottom: 28px;
    }
    .section-divider { margin: 28px 0; }
    .section-title { margin-bottom: 16px; }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .value-item {
        padding: 18px 12px;
    }
}

/* Global Mobile Improvements */
@media (max-width: 768px) {
    /* Ensure images are responsive */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Better text readability */
    body {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    /* Touch-friendly buttons */
    button, 
    .btn-cta,
    a[role="button"],
    .testimonial-nav-btn {
        min-height: 44px;
        min-width: 44px;
    }

    /* Better spacing for containers */
    .container {
        padding: 0 15px;
    }

    /* Image modal mobile adjustments */
    .image-modal-content {
        max-width: 95%;
        padding: 10px;
    }

    .image-modal-close {
        top: -45px;
        right: 5px;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 30px 15px;
    }

    .hero-content h1 {
        font-size: 1.3rem;
    }

    .section-divider {
        height: 40px;
        margin: 20px 0;
    }
}

@media (max-width: 600px) {
    .value-item:nth-child(1) i,
    .value-item:nth-child(2) i,
    .value-item:nth-child(3) i,
    .value-item:nth-child(4) i {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .value-item h3 {
        font-size: 1rem;
    }
    
    .value-item p {
        font-size: 0.8rem;
    }
}


