/* ========================================
   ABERTURA DE COFRES - CSS FUTURISTA
   Prefixo: cofres-
   ======================================== */

/* ===== VARIÁVEIS ===== */
:root {
    --cofres-primary: #012A55;
    --cofres-secondary: #FC791A;
    --cofres-accent: #15B239;
    --cofres-dark: #010F1C;
    --cofres-light: #5C6574;
    --cofres-white: #ffffff;
    --cofres-gradient-1: linear-gradient(135deg, #012A55 0%, #024A8C 100%);
    --cofres-gradient-2: linear-gradient(135deg, #FC791A 0%, #FF9A3D 100%);
    --cofres-gradient-3: linear-gradient(135deg, #15B239 0%, #1FD34D 100%);
    --cofres-shadow: 0 10px 40px rgba(1, 42, 85, 0.2);
    --cofres-shadow-hover: 0 20px 60px rgba(1, 42, 85, 0.3);
}

/* ===== RESET E BASE ===== */
.cofres-hero-section,
.cofres-types-section,
.cofres-process-section,
.cofres-differentials-section,
.cofres-faq-section,
.cofres-cta-section {
    position: relative;
    overflow: hidden;
}

/* ===== HERO SECTION ===== */
.cofres-hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000810 0%, #012A55 50%, #010F1C 100%);
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.cofres-particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(252, 121, 26, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(21, 178, 57, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.cofres-light-sweep {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(252, 121, 26, 0.1) 50%, 
        transparent 100%);
    animation: cofres-sweep 8s infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes cofres-sweep {
    0%, 100% {
        left: -100%;
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        left: 100%;
    }
}

.cofres-hero-content,
.cofres-hero-visual {
    position: relative;
    z-index: 3;
}

.cofres-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(252, 121, 26, 0.1);
    border: 1px solid rgba(252, 121, 26, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    color: var(--cofres-secondary);
    font-weight: 600;
    margin-bottom: 20px;
    animation: cofres-pulse 2s infinite;
}

@keyframes cofres-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(252, 121, 26, 0.4);
    }
    50% {
        box-shadow: 0 0 20px 10px rgba(252, 121, 26, 0);
    }
}

.cofres-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--cofres-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cofres-highlight {
    background: var(--cofres-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.cofres-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cofres-features-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.cofres-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--cofres-white);
    transition: all 0.3s ease;
}

.cofres-feature-item:hover {
    background: rgba(252, 121, 26, 0.1);
    border-color: var(--cofres-secondary);
    transform: translateY(-2px);
}

.cofres-feature-item i {
    color: var(--cofres-secondary);
    font-size: 1.2rem;
}

.cofres-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.cofres-btn-primary,
.cofres-btn-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

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

.cofres-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(252, 121, 26, 0.4);
    color: var(--cofres-white) !important;
}

.cofres-btn-glow {
    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.5s ease;
}

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

.cofres-btn-secondary {
    background: transparent;
    color: var(--cofres-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cofres-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cofres-white);
    transform: translateY(-3px);
    color: var(--cofres-white) !important;
}

/* ===== COFRE VISUAL ===== */
.cofres-safe-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    z-index: 1;
}

.cofres-safe-main {
    position: relative;
    width: 300px;
    height: 350px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 50px rgba(252, 121, 26, 0.1);
    margin: 0 auto;
    animation: cofres-float 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes cofres-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.cofres-safe-door {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    border-radius: 15px;
    border: 3px solid rgba(252, 121, 26, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    animation: cofres-door-glow 3s infinite;
}

@keyframes cofres-door-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(252, 121, 26, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(252, 121, 26, 0.6);
    }
}

.cofres-safe-dial {
    position: relative;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #2c3e50 0%, #1a1a2e 100%);
    border-radius: 50%;
    border: 5px solid rgba(252, 121, 26, 0.5);
    animation: cofres-dial-rotate 10s linear infinite;
}

@keyframes cofres-dial-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cofres-dial-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--cofres-gradient-2);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(252, 121, 26, 0.6);
}

.cofres-dial-marker {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 15px;
    background: var(--cofres-white);
    border-radius: 2px;
}

.cofres-safe-handle {
    width: 60px;
    height: 10px;
    background: linear-gradient(90deg, #FC791A 0%, #FF9A3D 100%);
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(252, 121, 26, 0.5);
    animation: cofres-handle-pulse 2s infinite;
}

@keyframes cofres-handle-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.cofres-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cofres-secondary), transparent);
    animation: cofres-scan 3s infinite;
}

@keyframes cofres-scan {
    0% {
        top: 0;
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

.cofres-hologram-effect {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(21, 178, 57, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: cofres-hologram 4s infinite;
}

@keyframes cofres-hologram {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.6;
    }
}

/* ===== FLOATING STATS ===== */
.cofres-floating-stats {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    z-index: 3;
}

.cofres-stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.cofres-stat-card:hover {
    background: rgba(252, 121, 26, 0.1);
    border-color: var(--cofres-secondary);
    transform: translateY(-5px);
}

.cofres-stat-icon {
    width: 50px;
    height: 50px;
    background: var(--cofres-gradient-2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--cofres-white);
}

.cofres-stat-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--cofres-white);
    margin: 0;
}

.cofres-stat-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ===== TYPES SECTION ===== */
.cofres-types-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #010F1C 0%, #000810 100%);
}

.cofres-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.cofres-section-tag {
    display: inline-block;
    background: rgba(252, 121, 26, 0.1);
    color: var(--cofres-secondary);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    border: 1px solid rgba(252, 121, 26, 0.3);
}

.cofres-section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--cofres-white);
    margin-bottom: 15px;
}

.cofres-section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.cofres-type-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    overflow: hidden;
    height: 100%;
}

.cofres-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cofres-gradient-1);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.cofres-type-card:hover::before {
    opacity: 0.1;
}

.cofres-type-card:hover {
    transform: translateY(-10px);
    border-color: var(--cofres-secondary);
    box-shadow: 0 20px 60px rgba(252, 121, 26, 0.2);
}

.cofres-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(252, 121, 26, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.cofres-type-card:hover .cofres-card-glow {
    opacity: 1;
    animation: cofres-card-rotate 8s linear infinite;
}

@keyframes cofres-card-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cofres-card-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--cofres-gradient-2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--cofres-white);
    margin-bottom: 25px;
    z-index: 1;
}

.cofres-icon-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--cofres-secondary);
    border-radius: 50%;
    opacity: 0.3;
    animation: cofres-ring-pulse 2s infinite;
}

@keyframes cofres-ring-pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.cofres-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cofres-white);
    margin-bottom: 15px;
    z-index: 1;
    position: relative;
}

.cofres-card-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
}

.cofres-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1;
    position: relative;
}

.cofres-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.cofres-card-features li i {
    color: var(--cofres-accent);
    font-size: 1rem;
}

.cofres-card-featured {
    position: relative;
    border-color: var(--cofres-secondary);
}

.cofres-featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--cofres-gradient-2);
    color: var(--cofres-white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.cofres-card-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--cofres-gradient-2);
    transition: all 0.4s ease;
}

.cofres-type-card:hover .cofres-card-hover-line {
    width: 100%;
}

/* ===== PROCESS SECTION ===== */
.cofres-process-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #000810 0%, #012A55 50%, #000810 100%);
    position: relative;
}

.cofres-process-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, rgba(252, 121, 26, 0.03) 0px, transparent 2px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(252, 121, 26, 0.03) 0px, transparent 2px, transparent 40px);
    opacity: 0.5;
}

.cofres-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.cofres-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--cofres-secondary) 50%, 
        transparent 100%);
    transform: translateX(-50%);
}

.cofres-timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.cofres-timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.cofres-timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--cofres-gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 30px rgba(252, 121, 26, 0.5);
}

.cofres-timeline-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--cofres-white);
}

.cofres-timeline-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--cofres-secondary);
    border-radius: 50%;
    animation: cofres-timeline-pulse 2s infinite;
}

@keyframes cofres-timeline-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.cofres-timeline-content {
    width: calc(50% - 50px);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.cofres-timeline-content:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--cofres-secondary);
    transform: scale(1.02);
}

.cofres-timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--cofres-gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--cofres-secondary);
    margin-bottom: 15px;
}

.cofres-timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cofres-white);
    margin-bottom: 10px;
}

.cofres-timeline-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* ===== DIFFERENTIALS SECTION ===== */
.cofres-differentials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #000810 0%, #010F1C 100%);
}

.cofres-differential-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.cofres-differential-card:hover {
    background: rgba(252, 121, 26, 0.05);
    border-color: var(--cofres-secondary);
    transform: translateY(-10px);
}

.cofres-diff-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cofres-diff-icon-wrap i {
    font-size: 2.5rem;
    color: var(--cofres-secondary);
    z-index: 2;
    position: relative;
}

.cofres-diff-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--cofres-secondary);
    border-radius: 50%;
    opacity: 0.3;
    animation: cofres-diff-rotate 10s linear infinite;
}

@keyframes cofres-diff-rotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.cofres-differential-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cofres-white);
    margin-bottom: 10px;
}

.cofres-differential-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* ===== FAQ SECTION ===== */
.cofres-faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #010F1C 0%, #012A55 50%, #000810 100%);
}

/* Container do Vídeo */
.cofres-faq-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cofres-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(252, 121, 26, 0.3);
    transition: all 0.3s ease;
}

.cofres-video-wrapper:hover {
    border-color: var(--cofres-secondary);
    box-shadow: 0 20px 80px rgba(252, 121, 26, 0.4);
    transform: translateY(-5px);
}
.cofres-faq-video {
    width: 100%;
    height: 550px;
    display: block;
    background: #000;
    object-fit: cover;
}

.cofres-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cofres-faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cofres-faq-item.active {
    border-color: var(--cofres-secondary);
}

.cofres-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cofres-faq-question:hover {
    background: rgba(252, 121, 26, 0.05);
}

.cofres-faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cofres-white);
    margin: 0;
}

.cofres-faq-question i {
    font-size: 1.2rem;
    color: var(--cofres-secondary);
    transition: all 0.3s ease;
}

.cofres-faq-item.active .cofres-faq-question i {
    transform: rotate(45deg);
}

.cofres-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.cofres-faq-item.active .cofres-faq-answer {
    max-height: 500px;
}

.cofres-faq-answer p {
    padding: 0 25px 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cofres-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000810 0%, #012A55 100%);
    position: relative;
}

.cofres-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(252, 121, 26, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(21, 178, 57, 0.1) 0%, transparent 50%);
}

.cofres-cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 30px 30px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}

.cofres-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cofres-cta-icon {
    width: 100px;
    height: 100px;
    background: var(--cofres-gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--cofres-white);
    margin: 0 auto 30px;
    box-shadow: 0 10px 40px rgba(252, 121, 26, 0.5);
    animation: cofres-pulse 2s infinite;
}

.cofres-cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--cofres-white);
    margin-bottom: 15px;
}

.cofres-cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cofres-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.cofres-cta-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.cofres-cta-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.cofres-cta-info-item i {
    color: var(--cofres-accent);
    font-size: 1.2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .cofres-hero-title {
        font-size: 3rem;
    }
    
    .cofres-section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .cofres-hero-section {
        min-height: auto;
        padding: 40px 0;
    }
    
    .cofres-hero-content {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .cofres-hero-title {
        font-size: 2.5rem;
    }
    
    .cofres-features-quick {
        justify-content: center;
    }
    
    .cofres-cta-buttons {
        justify-content: center;
    }
    
    .cofres-floating-stats {
        position: static;
        transform: none;
        margin-top: 40px;
    }
    
    .cofres-timeline::before {
        left: 30px;
    }
    
    .cofres-timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .cofres-timeline-marker {
        left: 30px;
        transform: none;
    }
    
    .cofres-timeline-content {
        width: 100%;
    }
    
    /* FAQ - Vídeo visível em tablet */
    .cofres-faq-video-container {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .cofres-hero-title {
        font-size: 2rem;
    }
    
    .cofres-hero-subtitle {
        font-size: 1rem;
    }
    
    .cofres-section-title {
        font-size: 2rem;
    }
    
    .cofres-btn-primary,
    .cofres-btn-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    /* OCULTAR COFRE NO MOBILE */
    .cofres-hero-visual {
        display: none;
    }
    
    .cofres-stat-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 150px;
    }
    
    .cofres-cta-content h2 {
        font-size: 2rem;
    }
    
    .cofres-cta-content p {
        font-size: 1rem;
    }
    
    .cofres-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cofres-cta-buttons .cofres-btn-primary,
    .cofres-cta-buttons .cofres-btn-secondary {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .cofres-hero-section,
    .cofres-types-section,
    .cofres-process-section,
    .cofres-differentials-section,
    .cofres-faq-section,
    .cofres-cta-section {
        padding: 30px 0;
    }
    
    .cofres-section-header {
        margin-bottom: 40px;
    }
    
    .cofres-features-quick {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cofres-feature-item {
        justify-content: center;
    }
    
    .cofres-cta-buttons {
        flex-direction: column;
    }
    
    .cofres-btn-primary,
    .cofres-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .cofres-stat-card {
        flex: 1 1 100%;
    }
    
    .cofres-timeline-item {
        padding-left: 60px;
    }
    
    .cofres-timeline-marker {
        width: 40px;
        height: 40px;
        left: 20px;
    }
    
    .cofres-timeline-number {
        font-size: 1.2rem;
    }
    
    .cofres-cta-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cofres-cta-info-item {
        justify-content: center;
    }
    
    .cofres-safe-container {
        padding: 20px 0;
    }
    
    .cofres-floating-stats {
        padding: 0 15px;
    }
    
    .cofres-hero-content {
        padding: 0 15px;
    }
    
    /* FAQ - Vídeo visível também no mobile */
    .cofres-faq-video-container {
        margin-bottom: 30px;
        padding: 10px;
    }
    
    .cofres-video-wrapper {
        max-width: 100%;
    }
    
    /* Centralizar título FAQ no mobile */
    .cofres-faq-section .cofres-section-header {
        text-align: center;
    }
}

/* ===== ANIMAÇÕES EXTRAS ===== */
@keyframes cofres-gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ===== LOADING STATES ===== */
.cofres-loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.cofres-loading.loaded {
    opacity: 1;
    transform: translateY(0);
}