/* ========================================
   CRIAÇÃO DE SITES - CSS COMPLETO
   Versão Final - 100% Isolado
   ======================================== */

/* Variáveis */
:root {
    --cs-orange: #FF6D00;
    --cs-orange-light: #FF8C00;
    --cs-orange-dark: #FF4000;
    --cs-black: #0a0a0a;
    --cs-black-light: #1a1a1a;
    --cs-white: #ffffff;
}

/* Classe de cor laranja */
.cs-text-orange {
    color: var(--cs-orange) !important;
}

/* ========================================
   HERO SECTION
   ======================================== */
.cs-hero-section {
    min-height: 85vh; /* Mantém no desktop */
    background: var(--cs-black);
    display: flex;
    align-items: center;
    padding: 100px 0 60px; /* Mantém no desktop */
}

.cs-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cs-hero-content h1 {
    font-size: 52px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cs-hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 30px;
}

.cs-hero-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 109, 0, 0.1);
    border: 1px solid rgba(255, 109, 0, 0.3);
    border-radius: 25px;
    color: var(--cs-orange);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.cs-hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.cs-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 109, 0, 0.2);
    border-radius: 25px;
}

.cs-badge-item i {
    color: var(--cs-orange);
    font-size: 16px;
}

.cs-badge-item span {
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.cs-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cs-btn-primary,
.cs-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cs-btn-primary {
    background: linear-gradient(135deg, var(--cs-orange-dark), var(--cs-orange-light));
    color: white;
    box-shadow: 0 8px 25px rgba(255, 64, 0, 0.4);
}

.cs-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 64, 0, 0.6);
    color: white;
}

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

.cs-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 109, 0, 0.5);
    color: white;
}

/* Mockups */
.cs-hero-mockups {
    position: relative;
    height: 500px;
}

.cs-mockup-desktop {
    position: absolute;
    width: 380px;
    background: #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    top: 0;
    left: 0;
}

.cs-browser-top {
    background: #1a1a1a;
    padding: 12px;
    display: flex;
    gap: 6px;
}

.cs-browser-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #555;
}

.cs-screen-content {
    padding: 30px;
    background: white;
    min-height: 280px;
}

.cs-content-bar {
    height: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    background: var(--cs-orange);
    width: 60%;
}

.cs-content-lines .cs-line {
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    margin-bottom: 12px;
}

.cs-content-lines .cs-line.cs-short {
    width: 70%;
}

.cs-mockup-mobile {
    position: absolute;
    width: 180px;
    background: #1a1a1a;
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    bottom: 30px;
    right: 20px;
}

.cs-mobile-screen {
    background: white;
    border-radius: 16px;
    padding: 20px 15px;
    min-height: 320px;
}

.cs-mobile-bar {
    height: 8px;
    border-radius: 4px;
    margin-bottom: 15px;
    background: var(--cs-orange);
    width: 50%;
}

.cs-mobile-lines .cs-mline {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 10px;
}

.cs-mobile-lines .cs-mline.cs-short {
    width: 60%;
}

.cs-float-badge {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: csFloat 3s ease-in-out infinite;
}

.cs-float-badge.cs-badge-top {
    top: 50px;
    right: -20px;
}

.cs-float-badge.cs-badge-bottom {
    bottom: 80px;
    left: 50px;
}

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

.cs-float-badge i {
    font-size: 24px;
    color: var(--cs-orange);
}

.cs-float-badge strong {
    display: block;
    font-size: 20px;
    font-weight: 900;
    color: var(--cs-black);
}

.cs-float-badge span {
    display: block;
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
}

/* ========================================
   BRIEFING SECTION
   ======================================== */
.cs-briefing-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--cs-black-light) 0%, var(--cs-black) 100%);
}

.cs-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.cs-section-title h2 {
    font-size: 44px;
    font-weight: 900;
    color: white;
    margin-bottom: 12px;
}

.cs-section-title p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
}

.cs-briefing-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.cs-briefing-form {
    background: var(--cs-black-light);
    border: 2px solid rgba(255, 109, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.cs-briefing-question {
    display: none;
}

.cs-briefing-question.active {
    display: block;
    animation: csFadeIn 0.4s ease;
}

@keyframes csFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.cs-briefing-question h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.cs-briefing-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.cs-briefing-option {
    cursor: pointer;
}

.cs-briefing-option input[type="radio"] {
    display: none;
}

.cs-option-content {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 109, 0, 0.2);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cs-briefing-option:hover .cs-option-content {
    border-color: rgba(255, 109, 0, 0.5);
    background: rgba(255, 109, 0, 0.05);
    transform: translateY(-5px);
}

.cs-briefing-option input:checked + .cs-option-content {
    border-color: var(--cs-orange);
    background: rgba(255, 109, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 109, 0, 0.3);
}

.cs-option-content i {
    font-size: 36px;
    color: var(--cs-orange);
}

.cs-option-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.cs-option-content small {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.cs-briefing-input-group {
    margin-bottom: 20px;
}

.cs-briefing-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 109, 0, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cs-briefing-input:focus {
    outline: none;
    border-color: var(--cs-orange);
    background: rgba(255, 109, 0, 0.05);
}

.cs-briefing-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.cs-briefing-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cs-btn-prev,
.cs-btn-next,
.cs-btn-submit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cs-btn-prev {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.cs-btn-prev:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
}

.cs-btn-prev:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.cs-btn-next,
.cs-btn-submit {
    background: linear-gradient(135deg, var(--cs-orange-dark), var(--cs-orange-light));
    color: white;
    box-shadow: 0 5px 20px rgba(255, 64, 0, 0.4);
}

.cs-btn-next:hover,
.cs-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 64, 0, 0.6);
}

.cs-briefing-progress {
    flex: 1;
    text-align: center;
}

.cs-progress-text {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 8px;
}

.cs-progress-text strong,
.cs-current-q {
    color: var(--cs-orange);
}

.cs-progress-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.cs-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cs-orange-dark), var(--cs-orange-light));
    border-radius: 10px;
    transition: width 0.3s ease;
    width: 25%;
}

.cs-briefing-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cs-info-card {
    background: var(--cs-black-light);
    border: 2px solid rgba(255, 109, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.cs-info-card i {
    font-size: 36px;
    color: var(--cs-orange);
    margin-bottom: 15px;
}

.cs-info-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.cs-info-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.cs-trust-indicators {
    background: var(--cs-black-light);
    border: 2px solid rgba(255, 109, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cs-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.cs-trust-item i {
    color: var(--cs-orange);
    font-size: 18px;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.cs-features-section {
    padding: 80px 0;
    background: var(--cs-black);
}

.cs-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.cs-feature-card {
    background: var(--cs-black-light);
    border: 2px solid rgba(255, 109, 0, 0.2);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.cs-feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 109, 0, 0.6);
    box-shadow: 0 15px 40px rgba(255, 109, 0, 0.3);
}

.cs-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--cs-orange-dark), var(--cs-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-card-icon i {
    font-size: 36px;
    color: white;
}

.cs-card-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 14px;
    font-weight: 900;
    color: rgba(255, 109, 0, 0.3);
}

.cs-feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.cs-feature-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.cs-card-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 109, 0, 0.2);
    border: 1px solid rgba(255, 109, 0, 0.4);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--cs-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.cs-faq-section {
    padding: 80px 0;
    background: var(--cs-black-light);
}

.cs-faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 50px;
}

.cs-faq-item {
    background: var(--cs-black);
    border: 2px solid rgba(255, 109, 0, 0.2);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cs-faq-item:hover {
    border-color: rgba(255, 109, 0, 0.4);
}

.cs-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: white;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cs-faq-question:hover {
    color: var(--cs-orange);
}

.cs-faq-question i {
    font-size: 16px;
    color: var(--cs-orange);
    transition: transform 0.3s ease;
}

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

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

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

.cs-faq-answer p {
    padding: 0 30px 25px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.cs-process-section {
    padding: 80px 0;
    background: var(--cs-black);
}

.cs-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.cs-process-card {
    background: var(--cs-black-light);
    border: 2px solid rgba(255, 109, 0, 0.2);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.cs-process-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 109, 0, 0.6);
    box-shadow: 0 15px 40px rgba(255, 109, 0, 0.3);
}

.cs-process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--cs-orange-dark), var(--cs-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-process-icon i {
    font-size: 36px;
    color: white;
}

.cs-process-step-num {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    font-weight: 900;
    color: rgba(255, 109, 0, 0.3);
}

.cs-process-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.cs-process-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.cs-process-duration {
    margin-bottom: 20px;
}

.cs-duration-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 109, 0, 0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--cs-orange);
}

.cs-process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.cs-process-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.cs-process-list li i {
    color: var(--cs-orange);
    font-size: 14px;
}

/* ========================================
   PROJECTS SECTION - METADE COLORIDO, METADE PRETO
   ======================================== */
.cs-projects-section {
    padding: 80px 0;
    background: var(--cs-black-light);
}

.cs-projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.cs-project-card {
    background: var(--cs-black);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.cs-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 109, 0, 0.3);
}

/* ========================================
   RESPONSIVO
   ======================================== */
@media (max-width: 1200px) {
    .cs-hero-grid,
    .cs-briefing-wrapper,
    .cs-cta-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cs-features-grid,
    .cs-process-grid,
    .cs-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* ADICIONE ESTAS LINHAS AQUI 👇 */
    .cs-hero-section {
        min-height: auto !important;
        padding: 30px 0 30px !important;
    }
    /* ATÉ AQUI 👆 */
    
    .cs-hero-content h1 {
        font-size: 36px;
    }
    
    .cs-section-title h2 {
        font-size: 32px;
    }
    
    .cs-briefing-options,
    .cs-features-grid,
    .cs-process-grid,
    .cs-projects-grid,
    .cs-tech-grid {
        grid-template-columns: 1fr;
    }
    
    .cs-briefing-form {
        padding: 30px 20px;
    }
    
    .cs-briefing-navigation {
        flex-direction: column;
    }
    
    .cs-briefing-progress {
        order: -1;
        width: 100%;
    }
    
    .cs-hero-mockups {
        display: none;
    }
}


/* PARTE COLORIDA - TOPO */
.cs-project-visual {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-gradient-purple .cs-project-visual {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cs-gradient-blue .cs-project-visual {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.cs-gradient-green .cs-project-visual {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.cs-gradient-pink .cs-project-visual {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.cs-project-visual i {
    font-size: 64px;
    color: white;
}

/* PARTE PRETA - EMBAIXO */
.cs-project-content {
    padding: 30px 25px;
    background: var(--cs-black);
}

.cs-project-content h4 {
    font-size: 18px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cs-project-result {
    margin-bottom: 20px;
}

.cs-result-number {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: var(--cs-orange);
}

.cs-result-text {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cs-project-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.cs-project-tag {
    padding: 6px 14px;
    background: transparent;
    border: 1px solid var(--cs-orange);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    color: var(--cs-orange);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ========================================
   TECH SECTION
   ======================================== */
.cs-tech-section {
    padding: 80px 0;
    background: var(--cs-black);
}

.cs-tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.cs-tech-card {
    background: var(--cs-black-light);
    border: 2px solid rgba(255, 109, 0, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.cs-tech-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 109, 0, 0.6);
    box-shadow: 0 10px 30px rgba(255, 109, 0, 0.3);
}

.cs-tech-card i {
    font-size: 48px;
    color: var(--cs-orange);
    margin-bottom: 12px;
}

.cs-tech-card span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cs-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cs-orange-dark) 0%, var(--cs-orange-light) 100%);
}

.cs-cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 50px;
    border-radius: 25px;
}

.cs-cta-content-left h2 {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
}

.cs-cta-content-left h2 span {
    color: var(--cs-black);
}

.cs-cta-content-left p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.cs-cta-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs-cta-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.cs-cta-list li i {
    color: white;
    font-size: 20px;
}

.cs-btn-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 35px;
    background: white;
    color: var(--cs-black);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 25px;
}

.cs-btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    color: var(--cs-black);
}

.cs-btn-cta i {
    font-size: 32px;
    color: #25d366;
}

.cs-btn-text-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cs-btn-main {
    font-size: 18px;
    font-weight: 900;
}

.cs-btn-sub {
    font-size: 13px;
    color: #666;
}

.cs-cta-trust-badges {
    display: flex;
    gap: 15px;
}

.cs-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.cs-trust-badge i {
    color: white;
}

/* ========================================
   RESPONSIVO
   ======================================== */
@media (max-width: 1200px) {
    .cs-hero-grid,
    .cs-briefing-wrapper,
    .cs-cta-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cs-features-grid,
    .cs-process-grid,
    .cs-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cs-hero-content h1 {
        font-size: 36px;
    }
    
    .cs-section-title h2 {
        font-size: 32px;
    }
    
    .cs-briefing-options,
    .cs-features-grid,
    .cs-process-grid,
    .cs-projects-grid,
    .cs-tech-grid {
        grid-template-columns: 1fr;
    }
    
    .cs-briefing-form {
        padding: 30px 20px;
    }
    
    .cs-briefing-navigation {
        flex-direction: column;
    }
    
    .cs-briefing-progress {
        order: -1;
        width: 100%;
    }
    
    .cs-hero-mockups {
        display: none;
    }
}