/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}



:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --accent-gold: #D4AF37;
    --accent-gold-light: #F4E4BC;
    --accent-gold-dark: #B8860B;
    --text-white: #ffffff;
    --text-gray: #e0e0e0;
    --text-dark: #2c2c2c;
    --gradient-primary: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    --gradient-secondary: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 15px 35px rgba(212, 175, 55, 0.3);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --border-radius-large: 24px;
    --hover-scale: 1.05;
    --hover-scale-large: 1.1;
    --hover-translate-y: -8px;
    --hover-translate-y-large: -12px;
    --hover-glow: 0 20px 40px rgba(212, 175, 55, 0.4);
    --hover-glow-intense: 0 25px 60px rgba(212, 175, 55, 0.6);
    --hover-rotation: 5deg;
    --hover-rotation-subtle: 2deg;
    --animation-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --animation-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-white);
    background: var(--gradient-dark);
    overflow-x: hidden;
    font-weight: 400;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-align: center;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin-left: auto;
    margin-right: auto;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-dark);
    box-shadow: var(--shadow-gold);
    position: relative;
}

.btn-whatsapp {
    background: var(--gradient-primary);
    color: var(--text-dark);
    margin-top: 1rem;
    padding: 12px 24px;
    font-size: 14px;
    box-shadow: var(--shadow-gold);
    border: 2px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: var(--accent-gold-dark);
    border-color: var(--accent-gold-dark);
    transform: translateY(var(--hover-translate-y)) scale(var(--hover-scale));
    box-shadow: var(--hover-glow-intense);
    animation: whatsappBounce 0.6s var(--animation-bounce);
}

.btn-whatsapp i {
    margin-right: 8px;
    font-size: 16px;
}

.btn-instagram {
    background: var(--gradient-primary);
    color: var(--text-dark);
    margin-top: 1rem;
    padding: 12px 24px;
    font-size: 14px;
    box-shadow: var(--shadow-gold);
    border: 2px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    background: var(--accent-gold-dark);
    border-color: var(--accent-gold-dark);
    transform: translateY(var(--hover-translate-y)) scale(var(--hover-scale));
    box-shadow: var(--hover-glow-intense);
    animation: instagramBounce 0.6s var(--animation-bounce);
}

.btn-instagram i {
    margin-right: 8px;
    font-size: 16px;
}

.btn-primary::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: var(--transition);
}

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

.btn-primary:hover {
    transform: translateY(var(--hover-translate-y)) scale(var(--hover-scale));
    box-shadow: var(--hover-glow-intense);
    animation: buttonPulse 0.6s var(--animation-bounce);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    transform: translateY(var(--hover-translate-y)) scale(var(--hover-scale));
    box-shadow: var(--hover-glow);
    animation: buttonSlide 0.6s var(--animation-spring);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    font-size: 1rem;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    animation: navLinkFloat 0.6s var(--animation-bounce);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 28px;
    height: 3px;
    background: var(--accent-gold);
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23FFD700" stroke-width="0.3" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-align: center;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 550px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 240px;
    height: 240px;
    position: relative;
}

/* Grid cell entrance animations - one by one */
.grid-cell {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(100px) scale(0.3) rotate(-10deg);
    animation: none;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

/* Enhanced entrance effect with bounce */
.grid-cell.animate-entrance {
    animation: gridCellEntranceEnhanced 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* Grid cell entrance keyframes */
@keyframes gridCellEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-10px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes gridCellEntranceEnhanced {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.3) rotate(-10deg);
    }
    50% {
        opacity: 0.9;
        transform: translateY(-25px) scale(1.3) rotate(8deg);
    }
    80% {
        opacity: 1;
        transform: translateY(15px) scale(0.95) rotate(-3deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

/* Enhanced hover effects for grid cells */
.grid-cell:hover {
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.8);
    border-color: var(--accent-gold-light);
    background: rgba(255, 215, 0, 0.25);
    z-index: 15;
    animation: gridCellHover 0.8s var(--animation-bounce);
}

@keyframes gridCellHover {
    0%, 100% { transform: scale(1.2) rotate(5deg); }
    50% { transform: scale(1.25) rotate(8deg); }
}

/* Grid cell content animation */
.grid-cell.animate-entrance .center-amp,
.grid-cell.animate-entrance:not(.center-amp) {
    animation: contentReveal 0.5s ease-out 0.3s both;
}

/* Ensure center-amp is always visible as fallback */
.grid-cell.center-amp {
    opacity: 1 !important;
    transform: translateY(0) scale(1) rotate(0deg) !important;
}

.grid-cell.center-amp > * {
    opacity: 1 !important;
    transform: scale(1) !important;
}

@keyframes contentReveal {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced text entrance for grid cells */
.grid-cell {
    position: relative;
}

.grid-cell > * {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.grid-cell.animate-entrance > * {
    opacity: 1;
    transform: scale(1);
}

/* Special animation for the ampersand */
.center-amp {
    font-size: 3rem;
    color: var(--accent-gold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 1 !important; /* Force visibility */
    transform: scale(1) !important; /* Ensure proper scale */
}

/* Ensure center-amp content is always visible */
.center-amp > * {
    opacity: 1 !important;
    transform: scale(1) !important;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    letter-spacing: -0.02em;
    text-align: center;
    font-family: 'Georgia', 'Times New Roman', serif;
    position: relative;
    z-index: 15;
    /* Proteção contra mudanças de estilo */
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    text-shadow: none !important;
    /* Garantir que o título sempre seja visível */
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

/* Remove completamente a linha dourada problemática */
.section-line {
    display: none !important;
}

.section-line::after {
    display: none !important;
    content: none !important;
}

/* Proteção adicional para títulos de seção */
.section-title::before,
.section-title::after {
    display: none !important;
    content: none !important;
}

/* Garantir que os títulos das seções não sejam afetados por outros estilos */
#about .section-title,
#ceo .section-title,
#services .section-title,
#contact .section-title {
    color: var(--text-white) !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    text-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--gradient-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--primary-black), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    margin-bottom: 5rem;
}

/* About Image Section */
.about-image-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-image-container {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    border: 3px solid rgba(255, 215, 0, 0.2);
}

.about-image-container:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 35px 80px rgba(212, 175, 55, 0.5);
    border-color: rgba(255, 215, 0, 0.5);
    animation: imageFloat 1s var(--animation-bounce);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image-container:hover .about-image {
    transform: scale(1.1);
    animation: imageZoom 0.8s var(--animation-spring);
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(-20px) scale(1.05); }
    50% { transform: translateY(-25px) scale(1.06); }
}

@keyframes imageZoom {
    0% { transform: scale(1.1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1.1); }
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 3rem 2rem 2rem;
    color: var(--text-white);
    text-align: center;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.overlay-content i {
    font-size: 2rem;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.overlay-content span {
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.image-decoration {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.decoration-line {
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.decoration-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* About Text Section - Now only contains the intro */
.about-text {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-intro {
    margin-bottom: 1.5rem;
}

.about-subtitle {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-align: center;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.about-paragraph {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

/* Story Section - Now positioned below the photo */
.about-story-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 4rem auto;
    max-width: 1100px;
    justify-items: center;
    align-items: start;
}

/* Place the third and fourth story items (Visão do Futuro and Compromisso com a Excelência) side by side */
.story-item:nth-child(3),
.story-item:nth-child(4) {
    grid-column: span 1;
    justify-self: stretch;
    max-width: none;
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
    .story-item:nth-child(3),
    .story-item:nth-child(4) {
        grid-column: 1 / -1;
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
    }
}

.story-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.08);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-gold);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

.story-item:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateX(12px) translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: rgba(255, 215, 0, 0.3);
    /* Animation removed */
}

.story-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.3rem;
    box-shadow: var(--shadow-gold);
}

.story-content h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    /* Removidos efeitos hover */
    transition: none;
    animation: none;
    transform: none;
}

.story-content p {
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

/* About Motto */
.about-motto {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.08));
    padding: 3rem;
    border-radius: var(--border-radius-large);
    border-left: 5px solid var(--accent-gold);
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.motto-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.8rem;
    box-shadow: var(--shadow-gold);
}

.motto-text h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.motto-text p {
    margin-bottom: 0;
    color: var(--text-gray);
    font-size: 1.2rem;
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 3rem auto 0;
    justify-items: center;
    align-items: start;
    max-width: 1000px;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--border-radius-large);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 320px;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.stat-item:hover {
    transform: translateY(var(--hover-translate-y)) scale(1.03);
    box-shadow: var(--hover-glow);
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.2);
    animation: statItemPulse 0.8s var(--animation-bounce);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.8rem;
    box-shadow: var(--shadow-gold);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 500;
}

/* CEO Section */
.ceo {
    padding: 8rem 0;
    background: var(--gradient-dark);
    position: relative;
}

.ceo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--secondary-black), transparent);
}

.ceo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    justify-items: center;
    margin-bottom: 3rem;
}

/* CEO Image Section */
.ceo-image-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.ceo-image-container {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    border: 3px solid rgba(255, 215, 0, 0.2);
    width: 100%;
    max-width: 400px;
}

.ceo-image-container:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 35px 80px rgba(212, 175, 55, 0.5);
    border-color: rgba(255, 215, 0, 0.5);
    animation: ceoImageFloat 1s var(--animation-bounce);
}

.ceo-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
    object-fit: cover;
    aspect-ratio: 4/5;
}

.ceo-image-container:hover .ceo-image {
    transform: scale(1.1);
    animation: ceoImageZoom 0.8s var(--animation-spring);
}

@keyframes ceoImageFloat {
    0%, 100% { transform: translateY(-20px) scale(1.05); }
    50% { transform: translateY(-25px) scale(1.06); }
}

@keyframes ceoImageZoom {
    0% { transform: scale(1.1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1.1); }
}

/* CEO Secondary Image */
.ceo-image-secondary {
    margin-top: 2rem;
    transition: var(--transition);
}

.ceo-image-secondary:hover {
    transform: translateY(-10px);
}

.ceo-image-secondary .ceo-image-overlay {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 215, 0, 0.7));
}

.ceo-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 215, 0, 0.7));
    padding: 1.5rem;
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition);
}

.ceo-image-container:hover .ceo-image-overlay {
    transform: translateY(0);
}

.ceo-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
}

.ceo-overlay-content i {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.ceo-overlay-content span {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ceo-image-decoration {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.ceo-decoration-line {
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.ceo-decoration-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* CEO Text Section */
.ceo-text {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.ceo-intro {
    margin-bottom: 1.5rem;
}

.ceo-name {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.ceo-title {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ceo-description {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

/* CEO Qualifications */
.ceo-qualifications {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.qualification-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.08);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-gold);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.qualification-item:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
}

.qualification-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.2rem;
    box-shadow: var(--shadow-gold);
}

.qualification-content h4 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    /* Removidos efeitos hover */
    transition: none;
    animation: none;
    transform: none;
}

.qualification-content p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* CEO Motto */
.ceo-motto {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.08));
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    border-left: 5px solid var(--accent-gold);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.ceo-motto-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.5rem;
    box-shadow: var(--shadow-gold);
}

.ceo-motto-text h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.ceo-motto-text p {
    margin-bottom: 0;
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Services Section - Optimized positioning */
.services {
    padding: 6rem 0 8rem;
    background: var(--gradient-dark);
    position: relative;
    margin-top: -2rem; /* Move section up for better flow */
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--secondary-black), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
    justify-items: center;
    align-items: start;
    width: 100%;
}

/* Enhanced Service Cards with better spacing */
.service-card {
    background: var(--gradient-secondary);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    cursor: pointer;
    box-shadow: var(--shadow-card);
    width: 100%;
    max-width: 450px;
}

.service-card:hover {
    transform: translateY(var(--hover-translate-y)) scale(1.02);
    box-shadow: var(--hover-glow);
    border-color: rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.2rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
}

.service-card:hover .service-title {
    color: var(--accent-gold);
    transform: none;
    animation: none;
}

.service-card:hover .service-description {
    color: var(--text-white);
    transform: translateY(-2px);
}

.service-details {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--accent-gold);
    text-align: left;
}

.service-details p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.service-details strong {
    color: var(--accent-gold);
    font-weight: 600;
}

@keyframes serviceCardFloat {
    0%, 100% { transform: translateY(var(--hover-translate-y)) scale(1.02); }
    50% { transform: translateY(calc(var(--hover-translate-y) - 3px)) scale(1.025); }
}

@keyframes iconSpin {
    0% { transform: scale(1.1) rotate(5deg); }
    50% { transform: scale(1.15) rotate(8deg); }
    100% { transform: scale(1.1) rotate(5deg); }
}

.service-card:active {
    transform: translateY(-5px) scale(0.98);
    transition: all 0.1s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    border-radius: var(--border-radius-large);
}

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

.service-card:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
    transform: translateY(-3px);
}

.service-card:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--gradient-secondary);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--primary-black), transparent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    justify-items: center;
    align-items: start;
    margin-bottom: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    width: 100%;
    max-width: 500px;
}

.contact-item:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.4rem;
    box-shadow: var(--shadow-gold);
}

.contact-details h4 {
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-details p {
    margin: 0;
    color: var(--text-white);
    font-size: 1.1rem;
}

/* Regra específica para números de telefone */
.phone-number {
    color: var(--text-white) !important;
}

/* Força máxima especificidade para números de telefone */
.contact-details p.phone-number,
p.phone-number,
span.phone-number,
.footer-contact p .phone-number,
a[href^="tel:"],
a[href*="tel:"],
.phone-number a,
a.phone-number {
    color: var(--text-white) !important;
    text-decoration: none !important;
    background: none !important;
}

/* Anular qualquer detecção automática de link pelo navegador */
.phone-number:link,
.phone-number:visited,
.phone-number:hover,
.phone-number:active {
    color: var(--text-white) !important;
    text-decoration: none !important;
}

/* Regras adicionais para garantir que números de telefone sejam sempre brancos */
.phone-number,
.phone-number *,
.phone-number a,
a.phone-number,
.phone-number span,
span.phone-number {
    color: var(--text-white) !important;
    text-decoration: none !important;
    background: none !important;
}

/* Sobrescrever qualquer estilo de link automático do navegador */
.phone-number[href*="tel:"],
.phone-number[href^="tel:"],
a[href*="tel:"] .phone-number,
a[href^="tel:"] .phone-number {
    color: var(--text-white) !important;
    text-decoration: none !important;
    background: none !important;
}

/* Regra final e mais específica para garantir cor branca */
.contact-details .phone-number,
.footer-contact .phone-number,
.contact-details p.phone-number,
.footer-contact p .phone-number,
.contact-details span.phone-number,
.footer-contact span.phone-number {
    color: var(--text-white) !important;
    text-decoration: none !important;
    background: none !important;
    font-weight: inherit !important;
    font-style: inherit !important;
}

/* Form */
.form {
    background: var(--gradient-dark);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.form-header h3 {
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-note {
    font-size: 0.9rem !important;
    color: var(--text-gray) !important;
    opacity: 0.8;
    margin-top: 0.5rem !important;
    margin-bottom: 0 !important;
    font-style: italic;
}

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

.form input,
.form textarea {
    width: 100%;
    padding: 1.2rem;
    background: var(--secondary-black);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    box-sizing: border-box;
    max-width: 100%;
}

.form input:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
    background: var(--secondary-black);
}

/* Maintain consistent dark background for all fields */
.form input:not(:placeholder-shown),
.form textarea:not(:placeholder-shown) {
    background: var(--secondary-black);
}

/* Ensure consistent styling for autofilled fields */
.form input:-webkit-autofill,
.form input:-webkit-autofill:hover,
.form input:-webkit-autofill:focus,
.form input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--secondary-black) inset !important;
    -webkit-text-fill-color: var(--text-white) !important;
    background: var(--secondary-black) !important;
}

/* Maintain styling for filled fields on different browsers */
.form input:valid,
.form textarea:valid {
    background: var(--secondary-black);
}

/* Ensure consistent appearance across different states */
.form input:not(:placeholder-shown):not(:focus),
.form textarea:not(:placeholder-shown):not(:focus) {
    background: var(--secondary-black);
}

/* Additional browser compatibility for filled fields */
.form input[value]:not([value=""]),
.form textarea:not(:empty) {
    background: var(--secondary-black);
}

/* Handle Firefox specific styling */
.form input:-moz-placeholder,
.form textarea:-moz-placeholder {
    color: var(--text-gray);
}

.form input::-moz-placeholder,
.form textarea::-moz-placeholder {
    color: var(--text-gray);
}

/* Ensure consistent text color for filled fields */
.form input:not(:placeholder-shown),
.form textarea:not(:placeholder-shown) {
    color: var(--text-white);
}

/* Handle edge case where placeholder might be hidden but field is empty */
.form input:placeholder-shown:not(:focus),
.form textarea:placeholder-shown:not(:focus) {
    background: var(--secondary-black);
}

.form input::placeholder,
.form textarea::placeholder {
    color: var(--text-gray);
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--secondary-black), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
    justify-items: center;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.footer-logo p {
    color: var(--text-gray);
    max-width: 350px;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    margin: 0 auto;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    text-align: center;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(8px);
    animation: footerLinkSlide 0.6s var(--animation-spring);
}

.footer-contact p {
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1rem;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--text-gray);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    /* Garantir espaçamento adequado em dispositivos móveis */
    .contact-item,
    .story-item,
    .qualification-item,
    .stat-item,
    .service-card {
        margin-bottom: 1.5rem !important;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        justify-items: center;
    }
    
    .ceo-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        justify-items: center;
    }
    
    .ceo-image-secondary {
        margin-top: 1.5rem;
    }
    
    .ceo-image-secondary:hover {
        transform: translateY(-10px);
    }
    
    .about-story-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin: 3rem 0;
    }
    
    .story-item {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 1.5rem;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-grid {
        width: 200px;
        height: 200px;
        gap: 10px;
    }
    
    .grid-cell {
        font-size: 2rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.4s;
        backdrop-filter: blur(20px);
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 215, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .service-card {
        padding: 2.5rem 2rem;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .service-hover-info {
        font-size: 0.8rem;
        padding: 0.8rem;
    }
    
    .service-card:active {
        transform: translateY(-5px) scale(0.98);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
        align-items: center;
        margin-bottom: 3rem;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .contact-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .form {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
        align-items: center;
    }
    
    .stat-item {
        padding: 2.5rem 2rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .about, .ceo, .services, .contact {
        padding: 4rem 0 5rem;
        min-height: auto;
    }
    
    .contact {
        padding: 4rem 0 6rem;
    }
    
    .about-motto {
        padding: 2.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        align-items: center;
        justify-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }
    
    .btn {
        padding: 16px 32px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
        align-items: center;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-subtitle {
        font-size: 1.5rem;
    }
    
    .story-content h4 {
        font-size: 1.2rem;
    }
    
    .story-content p {
        font-size: 1rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        width: 100%;
    }
    
    .ceo-name {
        font-size: 1.8rem;
    }
    
    .ceo-title {
        font-size: 1.1rem;
    }
    
    .qualification-item {
        padding: 1.2rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .ceo-motto {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .ceo-image-secondary {
        margin-top: 1rem;
    }
    
    .ceo-image-secondary:hover {
        transform: translateY(-8px);
    }
    
    .hero-grid {
        width: 180px;
        height: 180px;
        gap: 8px;
    }
    
    .grid-cell {
        font-size: 1.8rem;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .about-image-container {
        border-radius: var(--border-radius);
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .service-hover-info {
        font-size: 0.75rem;
        padding: 0.7rem;
    }
    
    .service-card:active {
        transform: translateY(-3px) scale(0.98);
    }
    
    .contact-item {
        padding: 1.2rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 1.2rem;
    }
    
    .contact-content {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .form {
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .about-motto {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .story-item {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .about, .ceo, .services, .contact {
        padding: 3rem 0 4rem;
    }
    
    .contact {
        padding: 3rem 0 5rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
}

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

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

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

@keyframes subtlePulse {
    0%, 100% { 
        transform: translateY(0) scale(1);
        box-shadow: var(--shadow-card);
    }
    50% { 
        transform: translateY(-2px) scale(1.01);
        box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation for grid */
.hero-grid {
    animation: gridContainerEntrance 1.5s ease-out 0.3s both;
    position: relative;
}

/* Grid container entrance animation */
@keyframes gridContainerEntrance {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Enhanced grid container with subtle glow */
.hero-grid::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(232, 206, 104, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease-out;
    pointer-events: none;
}

.hero-grid:hover::before {
    opacity: 1;
}

/* Hover effects for interactive elements */
.nav-link,
.btn,
.service-card,
.stat-item,
.contact-item {
    transition: var(--transition);
}

/* Focus states for accessibility */
.btn:focus,
.form input:focus,
.form textarea:focus,
.nav-link:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* About Image Section Animations */
@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

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

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

/* Keyframe removed - storyItemSlideIn */

/* Enhanced image container animations */
.about-image-container {
    animation: imageFloat 6s ease-in-out infinite;
}

.about-image-container:hover {
    animation-play-state: paused;
}

/* Image overlay animation */
.image-overlay {
    animation: overlaySlideUp 0.8s ease-out 1s both;
}

/* Decoration elements animation */
.decoration-dot {
    animation: decorationPulse 2s ease-in-out infinite;
}

.decoration-line {
    animation: decorationPulse 2s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Story items - no entrance animation */

/* Enhanced hover effects for story items - no animation */
.story-item:hover .story-icon {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
    /* Animation removed */
}

.story-icon {
    transition: all 0.3s ease;
}

/* Motto section enhancement */
.about-motto:hover .motto-icon {
    transform: rotate(15deg) scale(1.15);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.6);
    animation: mottoIconGlow 0.6s var(--animation-spring);
}

.motto-icon {
    transition: all 0.3s ease;
}

/* Stats enhancement */
.stat-item:hover .stat-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.6);
    animation: statIconGlow 0.6s var(--animation-spring);
}

.stat-icon {
    transition: all 0.3s ease;
}

/* Image loading state */
.about-image-container.loading {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.about-image-container.loaded {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced button animations */
.btn-primary:hover {
    transform: translateY(var(--hover-translate-y)) scale(var(--hover-scale));
    box-shadow: var(--hover-glow-intense);
    animation: buttonPulse 0.6s var(--animation-bounce);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    transform: translateY(var(--hover-translate-y)) scale(var(--hover-scale));
    box-shadow: var(--hover-glow);
    animation: buttonSlide 0.6s var(--animation-spring);
}

/* Enhanced card hover effects */
.service-card:hover {
    transform: translateY(var(--hover-translate-y)) scale(1.02);
    box-shadow: var(--hover-glow);
    border-color: rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
}

.stat-item:hover {
    transform: translateY(var(--hover-translate-y)) scale(1.03);
    box-shadow: var(--hover-glow);
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.2);
    animation: statItemPulse 0.8s var(--animation-bounce);
}

/* Enhanced navigation hover effects */
.nav-link:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    animation: navLinkFloat 0.6s var(--animation-bounce);
}

/* Enhanced logo hover effect */
.logo-img {
    transition: all 0.5s var(--animation-smooth);
}

.logo-img:hover {
    filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.6));
    transform: scale(1.08) rotate(2deg);
    animation: logoGlow 1s var(--animation-spring) infinite alternate;
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.6)); }
    100% { filter: drop-shadow(0 12px 30px rgba(212, 175, 55, 0.8)); }
}

/* Enhanced section transitions */
.about, .services, .contact {
    position: relative;
}

.about::after, .services::after, .contact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--primary-black), transparent);
    pointer-events: none;
}

/* Enhanced form focus states */
.form input:focus,
.form textarea:focus {
    transform: translateY(-3px);
    border-color: var(--accent-gold);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.25);
    animation: inputFocus 0.6s var(--animation-spring);
}

/* Enhanced mobile menu animations */
@media (max-width: 768px) {
    .nav-menu {
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .bar {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* Enhanced mobile grid animations */
@media (max-width: 768px) {
    .hero-grid {
        animation: gridContainerEntranceMobile 1.5s ease-out 0.3s both;
    }
    
    @keyframes gridContainerEntranceMobile {
        0% {
            opacity: 0;
            transform: scale(0.6) rotate(-5deg);
        }
        100% {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }
    }
}

/* Enhanced mobile button animations */
@media (max-width: 768px) {
    .btn:hover {
        transform: translateY(-3px) scale(1.02);
        animation: none;
    }
    
    .btn:active {
        transform: translateY(0);
    }
}

/* Enhanced mobile card animations */
@media (max-width: 768px) {
    .service-card:hover,
    .stat-item:hover,
    .story-item:hover {
        transform: translateY(-3px) scale(1.02);
        animation: none;
    }
    
    .service-card:hover {
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    }
    
    .stat-item:hover {
        box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    }
    
    .story-item:hover {
        transform: translateX(5px) translateY(-3px);
    }
    
    .contact-item:hover {
        transform: translateX(5px);
    }
    
    /* Disable complex animations on mobile */
    .about-image-container:hover,
    .ceo-image-container:hover {
        transform: translateY(-8px) scale(1.02);
        animation: none;
    }
    
    .logo-img:hover {
        transform: scale(1.05);
        animation: none;
    }
}

/* Enhanced mobile navigation */
@media (max-width: 768px) {
    .nav-link:hover {
        transform: none;
        text-shadow: none;
    }
    
    .nav-link:active {
        transform: scale(0.95);
    }
}

/* Enhanced mobile form */
@media (max-width: 768px) {
    .form input:focus,
    .form textarea:focus {
        transform: none;
    }
    
    .form-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-header p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .contact-note {
        font-size: 0.85rem !important;
    }
}

/* Enhanced mobile image */
@media (max-width: 768px) {
    .about-image-container:hover {
        transform: translateY(-8px);
    }
    
    .about-image-container:hover .about-image {
        transform: scale(1.05);
    }
}

/* Enhanced mobile stats */
@media (max-width: 768px) {
    .stat-item:hover {
        transform: translateY(-3px);
    }
}

/* Enhanced mobile story items */
@media (max-width: 768px) {
    .story-item:hover {
        transform: translateX(5px) translateY(-3px);
    }
}

/* Mobile contact items - No animations, consistent styling */
@media (max-width: 768px) {
    /* Contact item hover effects removed for mobile consistency */
    
    .contact-item:nth-child(2) .contact-icon {
        background: var(--gradient-primary);
    }
}

/* Enhanced mobile footer */
@media (max-width: 768px) {
    .footer-links a:hover {
        transform: none;
    }
    
    .footer-links a:active {
        transform: scale(0.95);
    }
}

/* Enhanced mobile logo */
@media (max-width: 768px) {
    .logo-img:hover {
        transform: none;
        filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
    }
}

/* Enhanced mobile section headers */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
        /* Proteção adicional para mobile */
        color: var(--text-white) !important;
        background: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        position: static !important;
        z-index: 15 !important;
    }
    
    .section-line {
        width: 80px;
        height: 4px;
    }
    
    .section-line::after {
        width: 16px;
        height: 16px;
    }
}

/* Enhanced mobile about section */
@media (max-width: 768px) {
    .about-subtitle {
        font-size: 1.4rem;
    }
    
    .about-paragraph {
        font-size: 1.1rem;
    }
    
    .story-content h4 {
        font-size: 1.1rem;
    }
    
    .story-content p {
        font-size: 1rem;
    }
}

/* Enhanced mobile services */
@media (max-width: 768px) {
    .service-title {
        font-size: 1.4rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
}

/* Enhanced mobile contact */
@media (max-width: 768px) {
    .contact-details h4 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 1rem;
    }
}

/* Enhanced mobile footer */
@media (max-width: 768px) {
    .footer-logo p {
        font-size: 1rem;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.1rem;
    }
    
    .footer-links a,
    .footer-contact p {
        font-size: 0.95rem;
    }
}

/* Enhanced mobile buttons */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Enhanced mobile grid */
@media (max-width: 480px) {
    .hero-grid {
        width: 160px;
        height: 160px;
        gap: 6px;
    }
    
    .grid-cell {
        font-size: 1.6rem;
    }
    
    .center-amp {
        font-size: 2.2rem;
    }
}

/* Enhanced mobile spacing */
@media (max-width: 480px) {
    .hero-container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .about-story-section {
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .services-grid {
        gap: 1.5rem;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
        margin-top: 1.5rem;
        padding: 14px 20px;
    }
    
    .about-stats {
        gap: 1.5rem;
    }
}

/* Enhanced mobile typography */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .about-subtitle {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .about-paragraph {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Enhanced mobile animations */
@media (max-width: 480px) {
    .scroll-animate {
        transform: translateY(30px);
    }
    
    .fade-in-up {
        animation: fadeInUp 0.8s ease-out;
    }
    
    .slide-in-left {
        animation: slideInLeft 0.8s ease-out;
    }
    
    .slide-in-right {
        animation: slideInRight 0.8s ease-out;
    }
    
    .scale-in {
        animation: scaleIn 0.6s ease-out;
    }
}

/* Enhanced mobile performance */
@media (max-width: 768px) {
    .hero-grid::before {
        display: none;
    }
    
    .about-image-container {
        animation: none;
    }
    
    .decoration-dot,
    .decoration-line {
        animation: none;
    }
}

/* Enhanced mobile accessibility */
@media (prefers-contrast: high) {
    :root {
        --accent-gold: #D4AF37;
        --text-gray: #ffffff;
        --text-dark: #000000;
    }
    
    .btn-primary {
        background: var(--accent-gold);
        color: var(--text-dark);
        border: 2px solid var(--accent-gold);
    }
    
    .btn-secondary {
        background: transparent;
        color: var(--accent-gold);
        border: 2px solid var(--accent-gold);
    }
    
    /* Maintain consistent dark background for form inputs even in high contrast mode */
    .form input,
    .form textarea {
        background: var(--secondary-black) !important;
        color: var(--text-white) !important;
        border: 2px solid var(--accent-gold);
    }
    
    /* Ensure autofilled fields maintain consistent dark background */
    .form input:-webkit-autofill,
    .form input:-webkit-autofill:hover,
    .form input:-webkit-autofill:focus,
    .form input:-webkit-autofill:active {
        -webkit-box-shadow: 0 0 0 30px var(--secondary-black) inset !important;
        -webkit-text-fill-color: var(--text-white) !important;
        background: var(--secondary-black) !important;
    }
    
    /* Maintain consistent styling for filled fields */
    .form input:not(:placeholder-shown),
    .form textarea:not(:placeholder-shown) {
        background: var(--secondary-black) !important;
    }
}

/* Thank you page styles */
.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: var(--gradient-dark);
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 4rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-gold);
    animation: scaleIn 0.6s ease-out;
}

.thank-you-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    letter-spacing: -0.02em;
}

.thank-you-message {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.thank-you-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.thank-you-info {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.thank-you-info h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.thank-you-info p {
    color: var(--text-gray);
    margin-bottom: 0;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .thank-you-title {
        font-size: 2.5rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .thank-you-title {
        font-size: 2rem;
    }
    
    .thank-you-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .thank-you-message {
        font-size: 1.1rem;
    }
}

/* Enhanced print styles */
@media print {
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    .hero-grid,
    .about-image-container,
    .btn,
    .nav-toggle {
        display: none !important;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .about-story-section {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* All contact items now have consistent styling without animations */
.contact-item:nth-child(2) {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.2);
}

.contact-item:nth-child(2):hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
}

.contact-item:nth-child(2) .contact-icon {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-gold);
}

/* Enhanced Hover Animations for Interactive Elements */

/* Global hover animation variables */
:root {
    --hover-scale: 1.05;
    --hover-scale-large: 1.1;
    --hover-translate-y: -8px;
    --hover-translate-y-large: -12px;
    --hover-glow: 0 20px 40px rgba(212, 175, 55, 0.4);
    --hover-glow-intense: 0 25px 60px rgba(212, 175, 55, 0.6);
    --hover-rotation: 5deg;
    --hover-rotation-subtle: 2deg;
    --animation-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --animation-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Enhanced Button Hover Animations */
.btn {
    transition: all 0.4s var(--animation-smooth);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s var(--animation-smooth);
}

.btn:hover::after {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(var(--hover-translate-y)) scale(var(--hover-scale));
    box-shadow: var(--hover-glow-intense);
    animation: buttonPulse 0.6s var(--animation-bounce);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    transform: translateY(var(--hover-translate-y)) scale(var(--hover-scale));
    box-shadow: var(--hover-glow);
    animation: buttonSlide 0.6s var(--animation-spring);
}

.btn-whatsapp:hover {
    transform: translateY(var(--hover-translate-y)) scale(var(--hover-scale));
    box-shadow: var(--hover-glow-intense);
    animation: whatsappBounce 0.6s var(--animation-bounce);
}

/* Button Animation Keyframes */
@keyframes buttonPulse {
    0%, 100% { transform: translateY(var(--hover-translate-y)) scale(var(--hover-scale)); }
    50% { transform: translateY(calc(var(--hover-translate-y) - 5px)) scale(calc(var(--hover-scale) + 0.02)); }
}

@keyframes buttonSlide {
    0% { transform: translateY(var(--hover-translate-y)) scale(var(--hover-scale)) translateX(-10px); }
    50% { transform: translateY(var(--hover-translate-y)) scale(var(--hover-scale)) translateX(5px); }
    100% { transform: translateY(var(--hover-translate-y)) scale(var(--hover-scale)) translateX(0); }
}

@keyframes whatsappBounce {
    0%, 100% { transform: translateY(var(--hover-translate-y)) scale(var(--hover-scale)); }
    25% { transform: translateY(calc(var(--hover-translate-y) - 3px)) scale(calc(var(--hover-scale) + 0.01)) rotate(1deg); }
    75% { transform: translateY(calc(var(--hover-translate-y) + 2px)) scale(calc(var(--hover-scale) - 0.01)) rotate(-1deg); }
}

@keyframes instagramBounce {
    0%, 100% { transform: translateY(var(--hover-translate-y)) scale(var(--hover-scale)); }
    25% { transform: translateY(calc(var(--hover-translate-y) - 3px)) scale(calc(var(--hover-scale) + 0.01)) rotate(-1deg); }
    75% { transform: translateY(calc(var(--hover-translate-y) + 2px)) scale(calc(var(--hover-scale) - 0.01)) rotate(1deg); }
}

/* Enhanced Navigation Link Hover Animations */
.nav-link {
    transition: all 0.4s var(--animation-smooth);
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.4s var(--animation-spring);
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    animation: navLinkFloat 0.6s var(--animation-bounce);
}

@keyframes navLinkFloat {
    0%, 100% { transform: translateY(-3px); }
    50% { transform: translateY(-6px); }
}

/* Enhanced Logo Hover Animation */
.logo-img {
    transition: all 0.5s var(--animation-smooth);
}

.logo-img:hover {
    filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.6));
    transform: scale(1.08) rotate(2deg);
    animation: logoGlow 1s var(--animation-spring) infinite alternate;
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.6)); }
    100% { filter: drop-shadow(0 12px 30px rgba(212, 175, 55, 0.8)); }
}

/* Enhanced Service Card Hover Animations */
.service-card {
    transition: all 0.5s var(--animation-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: all 0.5s var(--animation-spring);
    transform-origin: left;
}

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

.service-card:hover {
    transform: translateY(var(--hover-translate-y-large)) scale(1.02);
    box-shadow: var(--hover-glow-intense);
    border-color: rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.03));
    animation: serviceCardFloat 0.8s var(--animation-bounce);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.6);
    animation: iconSpin 0.6s var(--animation-spring);
}

.service-card:hover .service-title {
    color: var(--accent-gold);
    /* Removidos efeitos hover complexos */
    transform: none;
    animation: none;
}

.service-card:hover .service-description {
    color: var(--text-white);
    /* Removidos efeitos hover complexos */
    transform: none;
}

@keyframes serviceCardFloat {
    0%, 100% { transform: translateY(var(--hover-translate-y-large)) scale(1.02); }
    50% { transform: translateY(calc(var(--hover-translate-y-large) - 5px)) scale(1.03); }
}

@keyframes iconSpin {
    0% { transform: scale(1.15) rotate(8deg); }
    50% { transform: scale(1.2) rotate(12deg); }
    100% { transform: scale(1.15) rotate(8deg); }
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 5px rgba(212, 175, 55, 0.3); }
    100% { text-shadow: 0 0 20px rgba(212, 175, 55, 0.6); }
}

/* Enhanced Story Item Hover Animations */
.story-item {
    /* Transition removed */
    position: relative;
}

.story-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-primary);
    /* Transition removed */
    border-radius: 2px;
}

.story-item:hover::before {
    height: 100%;
}

.story-item:hover {
    transform: translateX(12px) translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.18);
    /* Animation removed */
}

.story-item:hover .story-icon {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
    /* Animation removed */
}

/* Keyframe removed - storyItemFloat */

/* Keyframe removed - iconBounce */

/* Enhanced Stat Item Hover Animations */
.stat-item {
    transition: all 0.5s var(--animation-smooth);
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: all 0.5s var(--animation-spring);
    transform-origin: left;
}

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

.stat-item:hover {
    transform: translateY(var(--hover-translate-y)) scale(1.03);
    box-shadow: var(--hover-glow);
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.2);
    animation: statItemPulse 0.8s var(--animation-bounce);
}

.stat-item:hover .stat-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.6);
    animation: statIconGlow 0.6s var(--animation-spring);
}

.stat-item:hover .stat-number {
    /* Removidos efeitos hover complexos */
    animation: none;
}

@keyframes statItemPulse {
    0%, 100% { transform: translateY(var(--hover-translate-y)) scale(1.03); }
    50% { transform: translateY(calc(var(--hover-translate-y) - 3px)) scale(1.05); }
}

@keyframes statIconGlow {
    0% { box-shadow: 0 25px 60px rgba(212, 175, 55, 0.6); }
    100% { box-shadow: 0 30px 70px rgba(212, 175, 55, 0.8); }
}

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

/* Enhanced Contact Item Hover Animations - Simplified */
.contact-item {
    transition: all 0.3s ease;
    position: relative;
}

.contact-item:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
}

.contact-item:hover .contact-icon {
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Enhanced About Image Hover Animations */
.about-image-container {
    transition: all 0.6s var(--animation-smooth);
}

.about-image-container:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 35px 80px rgba(212, 175, 55, 0.5);
    border-color: rgba(255, 215, 0, 0.5);
    animation: imageFloat 1s var(--animation-bounce);
}

.about-image-container:hover .about-image {
    transform: scale(1.1);
    animation: imageZoom 0.8s var(--animation-spring);
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(-20px) scale(1.05); }
    50% { transform: translateY(-25px) scale(1.06); }
}

@keyframes imageZoom {
    0% { transform: scale(1.1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1.1); }
}

/* Enhanced CEO Image Hover Animations */
.ceo-image-container {
    transition: all 0.6s var(--animation-smooth);
}

.ceo-image-container:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 35px 80px rgba(212, 175, 55, 0.5);
    border-color: rgba(255, 215, 0, 0.5);
    animation: ceoImageFloat 1s var(--animation-bounce);
}

.ceo-image-container:hover .ceo-image {
    transform: scale(1.1);
    animation: ceoImageZoom 0.8s var(--animation-spring);
}

@keyframes ceoImageFloat {
    0%, 100% { transform: translateY(-20px) scale(1.05); }
    50% { transform: translateY(-25px) scale(1.06); }
}

@keyframes ceoImageZoom {
    0% { transform: scale(1.1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1.1); }
}

/* Qualification Item Hover Effects - No Animations */
.qualification-item {
    transition: all 0.3s ease;
    position: relative;
}

.qualification-item:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
}

.qualification-item:hover .qualification-icon {
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Enhanced About Motto Hover Animations */
.about-motto {
    transition: all 0.5s var(--animation-smooth);
}

.about-motto:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-gold);
    border-color: rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    animation: mottoFloat 0.8s var(--animation-bounce);
}

.about-motto:hover .motto-icon {
    transform: rotate(15deg) scale(1.15);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.6);
    animation: mottoIconGlow 0.6s var(--animation-spring);
}

@keyframes mottoFloat {
    0%, 100% { transform: translateY(-5px) scale(1.02); }
    50% { transform: translateY(-8px) scale(1.03); }
}

@keyframes mottoIconGlow {
    0% { box-shadow: 0 25px 60px rgba(212, 175, 55, 0.6); }
    100% { box-shadow: 0 30px 70px rgba(212, 175, 55, 0.8); }
}

/* Enhanced Footer Link Hover Animations */
.footer-links a {
    transition: all 0.4s var(--animation-smooth);
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.4s var(--animation-spring);
    border-radius: 1px;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(8px);
    animation: footerLinkSlide 0.6s var(--animation-spring);
}

@keyframes footerLinkSlide {
    0% { transform: translateX(8px); }
    50% { transform: translateX(12px); }
    100% { transform: translateX(8px); }
}

/* Enhanced Form Input Hover Animations */
.form input,
.form textarea {
    transition: all 0.4s var(--animation-smooth);
}

.form input:hover,
.form textarea:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
    animation: inputFloat 0.6s var(--animation-smooth);
}

.form input:focus,
.form textarea:focus {
    transform: translateY(-3px);
    border-color: var(--accent-gold);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.25);
    animation: inputFocus 0.6s var(--animation-spring);
}

@keyframes inputFloat {
    0%, 100% { transform: translateY(-2px); }
    50% { transform: translateY(-4px); }
}

@keyframes inputFocus {
    0% { transform: translateY(-3px) scale(1); }
    50% { transform: translateY(-3px) scale(1.02); }
    100% { transform: translateY(-3px) scale(1); }
}

/* Enhanced Section Header Hover Animations - Removidos */
.section-header:hover .section-line {
    animation: none;
}

.section-header:hover .section-line::after {
    animation: none;
}

@keyframes lineGlow {
    0% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
    100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.6); }
}

@keyframes dotPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

/* Enhanced Grid Cell Hover Animations */
.grid-cell:hover {
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.8);
    border-color: var(--accent-gold-light);
    background: rgba(255, 215, 0, 0.25);
    z-index: 15;
    animation: gridCellHover 0.8s var(--animation-bounce);
}

@keyframes gridCellHover {
    0%, 100% { transform: scale(1.2) rotate(5deg); }
    50% { transform: scale(1.25) rotate(8deg); }
}

/* Enhanced Mobile Hover Effects */
@media (max-width: 768px) {
    /* Reduce animation intensity on mobile for better performance */
    .btn:hover,
    .service-card:hover,
    .stat-item:hover,
    .story-item:hover,
    .contact-item:hover {
        transform: translateY(-3px) scale(1.02);
        animation: none;
    }
    
    .btn:hover {
        box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    }
    
    .service-card:hover {
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    }
    
    .stat-item:hover {
        box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    }
    
    .story-item:hover {
        transform: translateX(5px) translateY(-3px);
    }
    
    .contact-item:hover {
        transform: translateX(5px);
    }
    
    /* Disable complex animations on mobile */
    .about-image-container:hover,
    .ceo-image-container:hover {
        transform: translateY(-8px) scale(1.02);
        animation: none;
    }
    
    .logo-img:hover {
        transform: scale(1.05);
        animation: none;
    }
}

/* Enhanced Touch Device Support */
@media (hover: none) and (pointer: coarse) {
    /* Reduce animations for touch devices */
    .btn:hover,
    .service-card:hover,
    .stat-item:hover,
    .story-item:hover,
    .contact-item:hover,
    .about-image-container:hover,
    .ceo-image-container:hover,
    .logo-img:hover {
        transform: none;
        animation: none;
        box-shadow: var(--shadow-card);
    }
    
    /* Add active state animations for touch feedback */
    .btn:active,
    .service-card:active,
    .stat-item:active,
    .story-item:active,
    .contact-item:active {
        transform: scale(0.98);
        transition: all 0.1s ease;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .btn:hover,
    .service-card:hover,
    .stat-item:hover,
    .story-item:hover,
    .contact-item:hover,
    .about-image-container:hover,
    .ceo-image-container:hover,
    .logo-img:hover {
        transform: none;
        animation: none;
    }
}

/* Enhanced Accessibility for Hover States */
@media (hover: hover) {
    /* Only show hover effects when user has hover capability */
    /* Hover effects are already defined above for all elements */
}

/* Enhanced Focus States for Keyboard Navigation */
.btn:focus,
.service-card:focus,
.stat-item:focus,
.story-item:focus,
.contact-item:focus,
.nav-link:focus,
.footer-links a:focus {
    outline: 3px solid var(--accent-gold);
    outline-offset: 3px;
    transform: translateY(-2px);
    transition: all 0.2s ease;
}

/* Enhanced Active States */
.btn:active,
.service-card:active,
.stat-item:active,
.story-item:active,
.contact-item:active {
    transform: scale(0.98);
    transition: all 0.1s ease;
}

/* Enhanced Loading States */
.loading {
    opacity: 0.6;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.loaded {
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s ease;
}

/* Enhanced Error States */
.error {
    animation: errorShake 0.6s var(--animation-bounce);
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Enhanced Success States */
.success {
    animation: successPulse 0.6s var(--animation-spring);
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Enhanced section title animations */
.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-white) !important;
    letter-spacing: -0.02em;
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    text-shadow: none !important;
    transition: none !important;
    animation: none !important;
    transform: none !important;
    /* Proteção adicional contra interferências */
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 15 !important;
}

/* Removido keyframe titleGlow - não mais utilizado */

.section-title:hover {
    /* Removidos todos os efeitos hover */
    transform: none;
    text-shadow: none;
    filter: none;
}

/* Enhanced section header background */
.section-header {
    text-align: center;
    position: relative;
    padding: 2rem 0;
    background: none;
    border-radius: 0;
    margin: 0 2rem 3rem;
    border: none;
    backdrop-filter: none;
    transition: none;
}

.section-header:hover {
    /* Removidos todos os efeitos hover */
    background: none;
    border-color: transparent;
    transform: none;
    box-shadow: none;
}

/* Enhanced section line animations */
.section-line {
    width: 120px;
    height: 6px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 3px;
    position: relative;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.section-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: lineShine 3s ease-in-out infinite;
}

@keyframes lineShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.section-header:hover .section-line {
    /* Removidos todos os efeitos hover */
    width: 120px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Enhanced dot animations */
.section-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
    animation: dotPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.section-header:hover .section-line::after {
    /* Removidos todos os efeitos hover */
    width: 24px;
    height: 24px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
    animation: none;
}

@keyframes dotPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        box-shadow: 0 0 35px rgba(255, 215, 0, 1);
    }
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
    .section-header {
        margin: 0 1rem 3rem;
        padding: 1.5rem 0;
        background: none;
    }
    
    .section-title {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        animation: none;
    }
    
    .section-line {
        width: 100px;
        height: 5px;
    }
    
    .section-line::after {
        width: 20px;
        height: 20px;
    }
    
    .about, .ceo, .services, .contact {
        padding: 4rem 0 5rem;
        margin-top: 0.5rem;
        min-height: auto;
    }
    
    .services {
        margin-top: -1.5rem;
    }
    
    .services-grid {
        margin-top: 1.5rem;
    }
    
    .service-card {
        padding: 2.5rem 2rem;
        margin-bottom: 0.5rem;
    }
    
    /* Cor dos números de telefone para branco no mobile */
    .phone-number {
        color: var(--text-white) !important;
    }
    
    /* Forçar cor branca para números de telefone em dispositivos móveis */
    .contact-details .phone-number {
        color: var(--text-white) !important;
    }
    
    /* Garantir que o conteúdo não seja cortado */
    body {
        overflow-x: hidden;
    }
    
    main {
        min-height: 100vh;
    }
    
    /* Ajustar espaçamento do footer */
    .footer {
        padding: 3rem 0 2rem;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin: 0 0.5rem 2.5rem;
        padding: 1rem 0;
        background: none;
    }
    
    .section-title {
        font-size: 2.4rem;
        margin-bottom: 1.2rem;
        animation: none;
        /* Proteção adicional para mobile pequeno */
        color: var(--text-white) !important;
        background: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        position: static !important;
        z-index: 15 !important;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    
    .section-line {
        width: 80px;
        height: 4px;
    }
    
    .section-line::after {
        width: 18px;
        height: 18px;
    }
    
    .about, .ceo, .services, .contact {
        padding: 3rem 0 4rem;
        margin-top: 0.25rem;
    }
    
    .services {
        margin-top: -1.5rem;
    }
    
    .services-grid {
        margin-top: 1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 0.25rem;
        width: 100%;
        max-width: 100%;
    }
    
    /* Cor dos números de telefone para branco no mobile pequeno */
    .phone-number {
        color: var(--text-white) !important;
    }
    
    /* Forçar cor branca para números de telefone em dispositivos móveis pequenos */
    .contact-details .phone-number {
        color: var(--text-white) !important;
    }
}

