/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 50%, #000000 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(204, 51, 51, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 0, 0, 0.03) 0%, transparent 50%),
        linear-gradient(45deg, transparent 49%, rgba(204, 51, 51, 0.01) 50%, transparent 51%);
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header e Navegação */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.header-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(204, 51, 51, 0.1), rgba(192, 192, 192, 0.05));
    border-radius: 50%;
    filter: blur(40px);
}

.header-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.header-shape-2 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: 20%;
    animation: float 8s ease-in-out infinite reverse;
}

.header-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 15%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.navbar {
    padding: 8px 0;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(204, 51, 51, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.logo-symbol {
    position: relative;
    width: 120px;
    height: 120px;
    transform: perspective(1000px) rotateY(-15deg);
    transition: all 0.4s ease;
}

.logo-symbol:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(204, 51, 51, 0.4));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(204, 51, 51, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 60px;
    position: relative;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 8px 0;
}

.nav-text {
    position: relative;
    z-index: 2;
}

.nav-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #cc3333, #C0C0C0);
    transition: width 0.3s ease;
    border-radius: 0.5px;
}

.nav-link:hover .nav-line {
    width: 100%;
}

.nav-link:hover {
    color: #cc3333;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #cc3333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.hero-grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(204, 51, 51, 0.3), transparent);
    height: 1px;
    width: 100%;
}

.hero-grid-line-1 { top: 20%; animation: gridMove 20s linear infinite; }
.hero-grid-line-2 { top: 40%; animation: gridMove 25s linear infinite reverse; }
.hero-grid-line-3 { top: 60%; animation: gridMove 30s linear infinite; }
.hero-grid-line-4 { top: 80%; animation: gridMove 35s linear infinite reverse; }

@keyframes gridMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-element {
    position: absolute;
    background: linear-gradient(135deg, rgba(204, 51, 51, 0.1), rgba(192, 192, 192, 0.05));
    border-radius: 50%;
    filter: blur(30px);
}

.floating-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    right: 10%;
    animation: floatHero 8s ease-in-out infinite;
}

.floating-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 5%;
    animation: floatHero 10s ease-in-out infinite reverse;
}

.floating-3 {
    width: 100px;
    height: 100px;
    top: 80%;
    right: 20%;
    animation: floatHero 12s ease-in-out infinite;
}

@keyframes floatHero {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-30px) rotate(180deg) scale(1.1); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    align-items: center;
    min-height: calc(100vh - 100px);
}

.hero-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-main-title {
    font-family: 'Cinzel', serif;
    font-size: 5.5rem;
    font-weight: 700;
    color: #CC3333 !important;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-shadow: 0 0 40px rgba(204, 51, 51, 0.5);
    line-height: 1;
    margin: 0 0 20px 0;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
    text-align: center;
}

.hero-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #CC3333, #C0C0C0, #CC3333);
    box-shadow: 0 0 20px rgba(204, 51, 51, 0.6);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: lineLoad 2s ease-out 0.5s forwards;
}

.hero-subtitle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.hero-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #CC3333 !important;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(204, 51, 51, 0.4);
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-subtitle-separator {
    font-size: 2.5rem;
    color: #CC3333;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(204, 51, 51, 0.6);
}

.hero-description {
    font-size: 1.3rem;
    color: #888888;
    margin-bottom: 50px;
    line-height: 1.8;
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 12px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #cc3333 0%, #8b0000 100%);
    color: white;
    box-shadow: 0 15px 40px rgba(204, 51, 51, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(204, 51, 51, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #cc3333;
    border-color: #cc3333;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #cc3333;
    color: white;
    transform: translateY(-5px) scale(1.05);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-container {
    position: relative;
    transform: perspective(1000px) rotateY(-20deg) rotateX(10deg);
    transition: all 0.6s ease;
}

.hero-logo-container:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.1);
}

.hero-logo {
    position: relative;
    width: 450px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoFloat 6s ease-in-out infinite;
}

.hero-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(204, 51, 51, 0.5));
    transition: all 0.4s ease;
    animation: logoGlow 4s ease-in-out infinite;
}

.logo-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(204, 51, 51, 0.3) 0%, transparent 70%);
    filter: blur(15px);
    border-radius: 50%;
    animation: shadowPulse 5s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid #cc3333;
    border-bottom: 3px solid #cc3333;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}



@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-10px) rotate(45deg); }
    60% { transform: translateY(-5px) rotate(45deg); }
}

@keyframes lineLoad {
    0% {
        width: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

@keyframes lineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #CC3333;
    margin-bottom: 25px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(204, 51, 51, 0.3);
}

.title-underline {
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #C0C0C0, #cc3333, #C0C0C0);
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(204, 51, 51, 0.5);
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #1f1f1f 0%, #0a0a0a 100%);
    position: relative;
}

.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(204, 51, 51, 0.02) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(139, 0, 0, 0.01) 50%, transparent 52%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #cc3333;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-text p {
    font-size: 1.1rem;
    color: #888888;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-text ul {
    list-style: none;
    margin-top: 20px;
}

.about-text li {
    font-size: 1.1rem;
    color: #888888;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.about-text li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: #cc3333;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border: 2px solid #333333;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: #cc3333;
    box-shadow: 0 20px 40px rgba(204, 51, 51, 0.2);
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #cc3333;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(204, 51, 51, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: #888888;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
    justify-content: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid .value-card {
    padding: 35px 20px;
}

.services-grid .value-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    margin-bottom: 20px;
}

.services-grid h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.services-grid ul {
    font-size: 0.9rem;
}

.services-grid li {
    margin-bottom: 8px;
    padding-left: 15px;
}



.service-card {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border: 2px solid #333333;
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(204, 51, 51, 0.05), rgba(139, 0, 0, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    border-color: #cc3333;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #cc3333 0%, #C0C0C0 100%);
    border-radius: 15px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 
        0 15px 40px rgba(204, 51, 51, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-family: 'Cinzel', serif;
    color: #cc3333;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #888888;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.service-card ul {
    list-style: none;
    text-align: left;
    position: relative;
    z-index: 2;
}

.service-card li {
    color: #888888;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-card li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #cc3333;
    font-size: 0.8rem;
}

/* Fleet Section */
.fleet {
    padding: 120px 0;
    background: linear-gradient(135deg, #1f1f1f 0%, #0a0a0a 100%);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    justify-content: center;
}

.fleet-item {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border: 2px solid #333333;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.fleet-item:hover {
    transform: translateY(-10px);
    border-color: #cc3333;
    box-shadow: 0 20px 40px rgba(204, 51, 51, 0.2);
}

.fleet-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #cc3333 0%, #C0C0C0 100%);
    border-radius: 10px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(204, 51, 51, 0.4);
}

.fleet-item h3 {
    font-family: 'Cinzel', serif;
    color: #cc3333;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fleet-item p {
    color: #888888;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-link {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid transparent;
}

.contact-link:hover {
    border-color: #cc3333;
    background: rgba(204, 51, 51, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(204, 51, 51, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #cc3333 0%, #C0C0C0 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(204, 51, 51, 0.4);
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: 'Cinzel', serif;
    color: #cc3333;
    font-size: 1.3rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-details p {
    color: #888888;
    line-height: 1.6;
}

.contact-form {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border: 2px solid #333333;
    border-radius: 15px;
    padding: 50px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333333;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #cc3333;
    box-shadow: 0 0 20px rgba(204, 51, 51, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

.form-group select option {
    background: #1a1a1a;
    color: #e0e0e0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    border-top: 2px solid rgba(204, 51, 51, 0.3);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo-symbol {
    position: relative;
    width: 60px;
    height: 60px;
}

.footer-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(204, 51, 51, 0.3));
}

.footer-brand h3 {
    font-family: 'Cinzel', serif;
    color: #cc3333;
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-brand p {
    color: #888888;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer h4 {
    font-family: 'Cinzel', serif;
    color: #cc3333;
    font-size: 1.2rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.footer li {
    margin: 0;
}

.footer a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #cc3333;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #cc3333 0%, #C0C0C0 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(204, 51, 51, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    color: #666666;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 40px 0;
        gap: 30px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
        padding: 0 20px;
    }
    
    .hero-title {
        margin-bottom: 30px;
        text-align: center;
        align-items: center;
    }
    
    .hero-main-title {
        font-size: 4rem;
        letter-spacing: 4px;
    }
    
    .hero-subtitle-container {
        justify-content: center;
        gap: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .hero-logo-container {
        transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    }
    
    .hero-logo {
        width: 350px;
        height: 250px;
    }
    

    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .mission-values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 100%;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .differentials-grid-second-row {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-title {
        text-align: center;
        align-items: center;
    }
    
    .hero-main-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle-container {
        gap: 10px;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle-separator {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .hero-logo {
        width: 280px;
        height: 200px;
    }
    
    .hero-logo-container {
        transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}

/* Animações de entrada baseadas na rolagem */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.fade-in-scale.animate {
    opacity: 1;
    transform: scale(1);
}

.slide-in-bottom {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease-out;
}

.slide-in-bottom.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Delay para animações em sequência */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Animações da Logo no Hero */
.hero-logo {
    animation: logoFloat 6s ease-in-out infinite;
    position: relative;
}

.hero-logo-image {
    animation: logoGlow 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(204, 51, 51, 0.3));
}

.logo-shadow {
    animation: shadowPulse 5s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(1deg);
    }
    50% {
        transform: translateY(-12px) rotate(0deg);
    }
    75% {
        transform: translateY(-6px) rotate(-1deg);
    }
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(204, 51, 51, 0.3));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(204, 51, 51, 0.6));
        transform: scale(1.02);
    }
}

@keyframes shadowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Efeitos de Hover da Logo */
.hero-logo:hover {
    animation-play-state: paused;
    transform: translateY(-5px) scale(1.05);
    transition: all 0.3s ease;
}

.hero-logo:hover .hero-logo-image {
    filter: drop-shadow(0 0 40px rgba(204, 51, 51, 0.8));
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.hero-logo:hover .logo-shadow {
    opacity: 0.8;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

/* Efeito de Partículas ao redor da Logo */
.hero-logo::before,
.hero-logo::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(204, 51, 51, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

.hero-logo::before {
    top: -20px;
    left: 20px;
    animation-delay: 0s;
}

.hero-logo::after {
    bottom: -20px;
    right: 20px;
    animation-delay: 4s;
}

@keyframes particleFloat {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(0px) scale(1);
    }
    25% {
        opacity: 1;
        transform: translateY(-15px) scale(1.2);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-25px) scale(0.8);
    }
    75% {
        opacity: 0.4;
        transform: translateY(-10px) scale(1.1);
    }
}

/* Mission Vision Values Section */
.mission-vision-values {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.mission-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.value-card {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border: 2px solid #333333;
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(204, 51, 51, 0.05), rgba(139, 0, 0, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    border-color: #cc3333;
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #cc3333 0%, #C0C0C0 100%);
    border-radius: 15px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 
        0 15px 40px rgba(204, 51, 51, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}



.value-card h3 {
    font-family: 'Cinzel', serif;
    color: #cc3333;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.value-card p {
    color: #888888;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.value-card ul {
    list-style: none;
    text-align: left;
    position: relative;
    z-index: 2;
}

.value-card li {
    color: #888888;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.value-card li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #cc3333;
    font-size: 0.8rem;
}

.value-card strong {
    color: #cc3333;
    font-weight: 600;
}

.company-structure {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border: 2px solid #333333;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.company-structure p {
    font-size: 1.1rem;
    color: #888888;
    line-height: 1.8;
    margin: 0;
}

/* Differentials Section */
.differentials {
    padding: 120px 0;
    background: linear-gradient(135deg, #1f1f1f 0%, #0a0a0a 100%);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    justify-content: center;
}

.differentials-grid-second-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 40px;
    justify-content: center;
    max-width: 800px;
    margin: 40px auto 0;
}

.differential-item {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border: 2px solid #333333;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.differential-item:hover {
    transform: translateY(-10px);
    border-color: #cc3333;
    box-shadow: 0 20px 40px rgba(204, 51, 51, 0.2);
}

.differential-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #cc3333 0%, #C0C0C0 100%);
    border-radius: 10px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(204, 51, 51, 0.4);
}

.differential-item h3 {
    font-family: 'Cinzel', serif;
    color: #cc3333;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.differential-item p {
    color: #888888;
    line-height: 1.6;
    font-size: 0.95rem;
}
