/* Reset e variáveis globais - Ferrari Official Style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ferrari-red: #DC143C;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --white: #ffffff;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* Splash Screen / Loader - Efeito de Janela Abrindo */
.ferrari-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    pointer-events: none;
}

.loader-doors {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
}

.door-left,
.door-right {
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.ferrari-loader.opening .door-left {
    transform: translateX(-100%);
}

.ferrari-loader.opening .door-right {
    transform: translateX(100%);
}

.door-left::before,
.door-right::before {
    content: '';
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(220, 20, 60, 0.5) 50%, 
        transparent 100%);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.8);
}

.door-left::before {
    right: 0;
}

.door-right::before {
    left: 0;
}

.door-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.door-left .door-content {
    right: -50%;
}

.door-right .door-content {
    left: -50%;
}

.door-content .loader-logo {
    width: 80px;
    filter: invert(1);
    opacity: 0.3;
    animation: doorLogoPulse 2s ease-in-out infinite;
}

@keyframes doorLogoPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.loader-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10001;
    text-align: center;
}

.center-logo {
    width: 150px;
    filter: invert(1) drop-shadow(0 0 30px rgba(220, 20, 60, 0.6));
    margin-bottom: 1.5rem;
    animation: centerPulse 2s ease-in-out infinite;
}

@keyframes centerPulse {
    0%, 100% {
        transform: scale(1);
        filter: invert(1) drop-shadow(0 0 30px rgba(220, 20, 60, 0.6));
    }
    50% {
        transform: scale(1.08);
        filter: invert(1) drop-shadow(0 0 50px rgba(220, 20, 60, 1));
    }
}

.loader-center h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 12px;
    color: #fff;
    text-shadow: 
        0 0 10px rgba(220, 20, 60, 0.8),
        0 0 20px rgba(220, 20, 60, 0.6),
        0 0 40px rgba(220, 20, 60, 0.4);
    margin-bottom: 2rem;
}

.loader-bar {
    width: 350px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, #DC143C, #ff1744, #DC143C);
    background-size: 200% 100%;
    animation: loading 2s ease forwards, shimmer 1.5s ease-in-out infinite;
    box-shadow: 
        0 0 10px #DC143C,
        0 0 20px rgba(220, 20, 60, 0.6);
}

@keyframes loading {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Header Superior */
.header-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 900;
    padding: 1rem 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-ferrari img {
    width: 35px;
    height: auto;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ferrari-red);
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.search-icon {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-icon:hover {
    color: var(--ferrari-red);
}

/* Sidebar que abre ao clicar */
.sidebar-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 1000;
    transition: left 0.4s ease;
}

.sidebar-menu.active {
    left: 0;
}

.close-sidebar {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.close-sidebar:hover {
    color: var(--ferrari-red);
    transform: rotate(90deg);
}

.sidebar-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    height: 100vh;
}

.sidebar-left {
    padding: 5rem 3rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    color: var(--white);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.sidebar-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.sidebar-nav a:hover {
    color: var(--white);
    padding-left: 10px;
}

.sidebar-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--ferrari-red);
    transition: width 0.3s ease;
}

.sidebar-nav a:hover::before {
    width: 5px;
}

.sidebar-right {
    position: relative;
    overflow: hidden;
}

.sidebar-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.sidebar-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

/* Hero Section Ferrari Style */
.hero-ferrari {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#heroVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 5;
    display: flex;
    gap: 15px;
}

.video-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.video-controls button:hover {
    background: rgba(220, 20, 60, 0.8);
    border-color: #DC143C;
    transform: scale(1.1);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.hero-content-ferrari {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.hero-label {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.hero-title-ferrari {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: var(--white);
}

.discover-btn-ferrari {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid var(--white);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.discover-btn-ferrari:hover {
    background: var(--white);
    color: var(--black);
}

.discover-btn-ferrari i {
    transition: transform 0.3s ease;
}

.discover-btn-ferrari:hover i {
    transform: translateX(5px);
}

/* Full Screen Sections */
.fullscreen-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.fullscreen-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.section-label-white {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.fullscreen-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
    color: var(--white);
}

.discover-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid var(--white);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.discover-btn-white:hover {
    background: var(--white);
    color: var(--black);
}

/* News Section */
.news-section {
    background: var(--white);
    padding: 4rem 0;
    position: relative;
}

.news-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
    padding: 0 4rem;
}

.news-content {
    position: relative;
}

.news-navigation {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--black);
    border-radius: 50%;
    color: var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: var(--black);
    color: var(--white);
}

.news-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.news-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--black);
    border-radius: 50px;
    color: var(--black);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: var(--black);
    color: var(--white);
}

.news-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.news-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 0 4rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--ferrari-red);
    width: 12px;
    height: 12px;
}

.view-all {
    margin-left: 2rem;
    color: var(--black);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    border-bottom: 1px solid var(--black);
    transition: all 0.3s ease;
}

.view-all:hover {
    color: var(--ferrari-red);
    border-color: var(--ferrari-red);
}

/* Grid 2x2 Section */
.grid-section {
    background: var(--black);
}

.grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 50vh);
}

.grid-item {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: pointer;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.grid-item:hover .grid-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.grid-content {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    z-index: 2;
}

.grid-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.grid-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.grid-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: transparent;
    border: 2px solid var(--white);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.grid-btn:hover {
    background: var(--white);
    color: var(--black);
}

/* White and Dark Sections */
.white-section {
    background: #ffffff;
    color: #000000;
}

.dark-section {
    background: #000000;
    color: #ffffff;
}

.section-label-dark {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title-dark {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000000;
    margin-bottom: 1rem;
}

.section-description-dark {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

/* Lineup Section */
.lineup-section {
    padding: 100px 0;
}

.section-header.centered {
    text-align: center;
    margin-bottom: 80px;
}

.featured-model {
    margin-bottom: 80px;
}

.model-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.model-info h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.model-info p {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
}

.model-specs {
    display: flex;
    gap: 30px;
    margin-bottom: 2rem;
}

.model-specs span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #DC143C;
}

.model-link {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #000000;
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.model-link:hover {
    background: #000000;
    color: #ffffff;
}

.model-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.model-card {
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.model-card:hover {
    transform: translateY(-10px);
}

.model-card .model-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.model-details {
    padding: 30px;
}

.model-details h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000000;
}

.model-details p {
    font-size: 1.1rem;
    color: #DC143C;
    margin-bottom: 1rem;
}

.model-details a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    border-bottom: 1px solid #000000;
    transition: all 0.3s ease;
}

.model-details a:hover {
    color: #DC143C;
    border-color: #DC143C;
}

/* Heritage Section */
.heritage-section {
    padding: 100px 0;
}

.heritage-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.heritage-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.heritage-text {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.heritage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 3rem;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #DC143C;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
}

.heritage-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #000000;
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.heritage-btn:hover {
    background: #000000;
    color: #ffffff;
}

/* Experience Section */
.experience-section {
    padding: 100px 0;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.experience-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.experience-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.experience-services {
    margin-bottom: 3rem;
}

.service-item {
    margin-bottom: 2rem;
}

.service-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.service-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.experience-link {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.experience-link:hover {
    background: #ffffff;
    color: #000000;
}

.experience-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Contact & Social Section */
.contact-section {
    padding: 100px 0;
    background: #ffffff;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    padding-right: 2rem;
}

.contact-description {
    color: #666;
    line-height: 1.8;
    margin: 2rem 0 3rem;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DC143C;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: #DC143C;
    color: #ffffff;
    transform: scale(1.1);
}

.contact-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #666;
    line-height: 1.6;
}

.contact-social {
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.contact-social h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.5rem;
}

.contact-social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.contact-social-icons a:hover {
    background: #DC143C;
    border-color: #DC143C;
    color: #ffffff;
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: #f8f8f8;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.ferrari-contact-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #DC143C;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: #DC143C;
    color: #ffffff;
    border: 2px solid #DC143C;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: transparent;
    color: #DC143C;
}

.submit-btn i {
    font-size: 1rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.newsletter-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.newsletter-form .form-group {
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #DC143C;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 15px 40px;
    background: #DC143C;
    border: 2px solid #DC143C;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: transparent;
    color: #DC143C;
}

/* Footer */
.ferrari-footer {
    background: #0a0a0a;
    color: #ffffff;
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    color: #ffffff;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column a:hover {
    color: #DC143C;
    transform: translateX(5px);
}

.footer-social {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: #DC143C;
    border-color: #DC143C;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 40px 0;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-legal-links a:hover {
    color: #DC143C;
}

.footer-legal-links span {
    color: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .sidebar {
        width: 80px;
    }
    
    .sidebar-header,
    .sidebar-nav,
    .sidebar-footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .nav-section-title,
    .nav-section-link,
    .nav-submenu {
        display: none;
    }
    
    .main-content {
        margin-left: 80px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .hero-title-ferrari {
        font-size: 2.5rem;
    }
    
    .fullscreen-title {
        font-size: 2.5rem;
    }
    
    .news-container {
        grid-template-columns: 1fr;
        padding: 0 2rem;
    }
    
    .grid-2x2 {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 50vh);
    }
    
    .grid-content {
        left: 2rem;
        bottom: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
