/* ===== LOGO DESIGN - ESTILOS ESPECÍFICOS ===== */

/* ===== SERVICE DETAIL HERO SECTION ===== */
.service-detail-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad1" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:1" /></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad1)" /><circle cx="800" cy="300" r="150" fill="url(%23grad1)" /><circle cx="400" cy="700" r="120" fill="url(%23grad1)" /></svg>');
    animation: float 6s ease-in-out infinite;
}

.service-detail-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
    animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.service-badge i {
    color: var(--primary-yellow);
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

/* ===== HERO HIGHLIGHTS ===== */
.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.highlight i {
    font-size: 1rem;
    color: var(--primary-yellow);
    flex-shrink: 0;
}

.highlight span {
    font-weight: 500;
    line-height: 1.3;
}

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

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

/* ===== LOGO DESIGN WORKSPACE VISUAL ===== */
.logo-design-graphic {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.design-workspace {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
}

.workspace-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
}

.workspace-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-blue);
}

.workspace-title i {
    font-size: 1.3rem;
}

.workspace-tools {
    display: flex;
    gap: 8px;
}

.tool-icon {
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.tool-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.canvas-area {
    padding: 25px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

.logo-concepts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.concept-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.concept-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.concept-card.featured {
    background: linear-gradient(135deg, rgba(0,0,255,0.05), rgba(194,194,60,0.05));
    border-color: var(--primary-blue);
}

.concept-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.logo-shape {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    position: relative;
}

.logo-shape.circle {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
}

.logo-shape.square {
    background: linear-gradient(135deg, #27ae60, #229954);
    border-radius: 8px;
}

.logo-shape.hexagon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 10px;
    transform: rotate(45deg);
}

.logo-shape.hexagon i {
    transform: rotate(-45deg);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--black);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.concept-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--neutral-gray);
}

.concept-status.approved {
    color: #27ae60;
}

.concept-status i {
    font-size: 0.9rem;
}

.design-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-content: start;
}

.design-details h4 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.colors {
    display: flex;
    gap: 8px;
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.color-swatch.primary {
    background: var(--primary-blue);
}

.color-swatch.secondary {
    background: var(--primary-yellow);
}

.color-swatch.accent {
    background: var(--secondary-purple);
}

.font-sample {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--black);
    text-align: center;
}

.format-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.format-tags span {
    background: var(--primary-yellow);
    color: var(--black);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

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

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

/* ===== LOGO TYPES SECTION ===== */
.logo-types {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.type-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.type-card::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;
}

.type-card:hover::before {
    left: 100%;
}

.type-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.type-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.type-card:hover .type-icon {
    transform: scale(1.2) rotate(360deg);
    animation: pulse 2s infinite;
}

.type-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.type-card p {
    color: var(--neutral-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.type-example {
    background: rgba(0, 0, 255, 0.1);
    color: var(--primary-blue);
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

/* ===== LOGO PROCESS SECTION ===== */
.logo-process {
    padding: 80px 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr 100px;
    gap: 30px;
    align-items: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,255,0.3);
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.step-content p {
    color: var(--neutral-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.step-features li {
    color: var(--neutral-gray);
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.step-features li::before {
    content: '•';
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.step-visual {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 255, 0.1);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-visual {
    transform: scale(1.1);
    background: var(--primary-blue);
    color: var(--white);
}

/* ===== LOGO PORTFOLIO SECTION ===== */
.logo-portfolio {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    color: var(--primary-blue);
    padding: 12px 25px;
    border: 2px solid var(--primary-blue);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,255,0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.portfolio-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.portfolio-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 25px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.5;
}

.portfolio-category {
    background: var(--primary-yellow);
    color: var(--black);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* ===== LOGO PACKAGES SECTION ===== */
.logo-packages {
    padding: 80px 0;
    background: var(--white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-blue);
}

.package-card.featured {
    border-color: var(--primary-blue);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,255,0.15);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-yellow);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.package-price .currency {
    font-size: 1.5rem;
    color: var(--neutral-gray);
}

.package-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: var(--font-heading);
}

.package-subtitle {
    color: var(--neutral-gray);
    margin-bottom: 30px;
    font-style: italic;
}

.package-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--neutral-gray);
}

.package-features li i {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.package-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 15px;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,255,0.3);
}

.package-delivery {
    color: var(--neutral-gray);
    font-size: 0.9rem;
    font-style: italic;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-item {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stars {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--neutral-gray);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author h4 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--neutral-gray);
    font-size: 0.9rem;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question:hover {
    background: rgba(0, 0, 255, 0.05);
}

.faq-question h4 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--neutral-gray);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
    animation: float 10s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-info-inline {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    opacity: 0.8;
}

.contact-info-inline span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

/* ===== DISEÑO RESPONSIVO ===== */
@media (max-width: 1024px) {
    .types-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .step-features {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .highlight {
        padding: 10px;
        font-size: 0.8rem;
    }

    .logo-design-graphic {
        padding: 15px;
    }

    .workspace-header {
        padding: 15px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .canvas-area {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }

    .concept-card {
        padding: 15px;
    }

    .logo-shape {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .design-details {
        gap: 15px;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        padding: 30px 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-info-inline {
        flex-direction: column;
        gap: 15px;
    }

    .portfolio-filter {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .logo-showcase {
        width: 250px;
        height: 250px;
    }

    .process-step {
        padding: 25px 15px;
    }

    .step-content h3 {
        font-size: 1.5rem;
    }

    .step-number,
    .step-visual {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .package-card {
        padding: 30px 20px;
    }

    .package-price .amount {
        font-size: 2.5rem;
    }

    .testimonial-item {
        padding: 30px 20px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .type-card {
        padding: 30px 20px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}