/* ===== BRAND IDENTITY - ESTILOS ESPECÍFICOS ===== */

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

.service-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-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;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 4s infinite;
}

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

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-yellow);
    font-family: var(--font-heading);
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

/* ===== BRAND VISUAL ELEMENTS ===== */
.brand-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.brand-visual > i {
    font-size: 8rem;
    color: var(--primary-yellow);
    opacity: 0.8;
    animation: pulse 3s infinite;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-elements .element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.floating-elements .element:hover {
    transform: scale(1.2);
    background: rgba(194, 194, 60, 0.2);
}

.floating-elements .element::before {
    content: '';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands';
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--white);
}

/* Brand Identity Specific Icons */
.floating-elements .element[data-icon="fas fa-pen-nib"]::before { content: '\f5ad'; }
.floating-elements .element[data-icon="fas fa-swatchbook"]::before { content: '\f5c3'; }
.floating-elements .element[data-icon="fas fa-drafting-compass"]::before { content: '\f568'; }
.floating-elements .element[data-icon="fas fa-paint-brush"]::before { content: '\f1fc'; }
.floating-elements .element[data-icon="fas fa-ruler-combined"]::before { content: '\f546'; }
.floating-elements .element[data-icon="fas fa-vector-square"]::before { content: '\f5cb'; }

.floating-elements .element:nth-child(1) {
    top: 10%;
    left: 15%;
    animation: float 4s ease-in-out infinite;
}

.floating-elements .element:nth-child(2) {
    top: 15%;
    right: 10%;
    animation: float 4s ease-in-out infinite 1s;
}

.floating-elements .element:nth-child(3) {
    bottom: 35%;
    left: 5%;
    animation: float 4s ease-in-out infinite 2s;
}

.floating-elements .element:nth-child(4) {
    bottom: 10%;
    right: 20%;
    animation: float 4s ease-in-out infinite 3s;
}

.floating-elements .element:nth-child(5) {
    top: 45%;
    left: 45%;
    animation: float 4s ease-in-out infinite 0.5s;
}

.floating-elements .element:nth-child(6) {
    top: 65%;
    right: 45%;
    animation: float 4s ease-in-out infinite 1.5s;
}

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

.services h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--primary-blue);
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

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

.service-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;
}

.service-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;
}

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

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

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

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

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

.service-card p {
    font-family: var(--font-body);
    color: var(--neutral-gray);
    line-height: 1.6;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--neutral-gray);
    font-size: 0.9rem;
}

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

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

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

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

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

.process-icon {
    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: 2rem;
    transition: all 0.3s ease;
    margin: 0 auto;
}

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

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

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

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

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

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

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

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

.showcase-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);
}

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

.showcase-image {
    height: 280px;
    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;
}

.showcase-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;
}

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

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

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

.showcase-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

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

.testimonial-item {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

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

.testimonial-content {
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    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;
}

/* ===== 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;
}

/* ===== RESPONSIVE ESPECÍFICO PARA BRAND IDENTITY ===== */
@media (max-width: 1024px) {
    .service-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .process-timeline {
        max-width: 100%;
    }
    
    .process-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .process-features {
        grid-template-columns: 1fr;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

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

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

    .hero-stats {
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

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

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

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

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

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .hero-stats .stat-number {
        font-size: 1.5rem;
    }

    .process-content h3 {
        font-size: 1.3rem;
    }

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

    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

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

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

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

    .floating-elements .element {
        width: 50px;
        height: 50px;
    }

    .floating-elements .element::before {
        font-size: 1.2rem;
    }

    .brand-visual > i {
        font-size: 6rem;
    }
}