/* ===========================================
   ABOUT PAGE STYLES - NEO GRAFIK BOGOTÁ
   Complementa styles.css con estilos únicos
   =========================================== */

/* Variables adicionales */
:root {
    --hero-overlay: rgba(255, 255, 255, 0.95);
    --timeline-line: rgba(0, 0, 0, 0.1);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===========================================
   1. HERO SECTION - ABOUT
   =========================================== */
.about-hero {
    position: relative;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.98) 100%
    );
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cmyk-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
}

.gradient-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: blur(60px);
}

.cyan-layer {
    background: var(--cyan);
    animation: float 20s ease-in-out infinite;
}

.magenta-layer {
    background: var(--magenta);
    animation: float 25s ease-in-out infinite reverse;
}

.yellow-layer {
    background: var(--yellow);
    animation: float 30s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--cyan);
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
}

/* Hero Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        order: -1;
    }
}

/* Hero Text */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cyan);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
    max-width: 90%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Courier New', monospace;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
}

.secondary-btn {
    background: white;
    color: var(--black);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.secondary-btn:hover {
    transform: translateY(-3px);
    border-color: var(--cyan);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.visual-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.visual-container:hover .hero-image {
    transform: scale(1.05);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cyan-element {
    top: 20%;
    left: 10%;
    color: var(--cyan);
    animation-delay: 0s;
}

.magenta-element {
    top: 60%;
    right: 10%;
    color: var(--magenta);
    animation-delay: 1s;
}

.yellow-element {
    bottom: 20%;
    left: 20%;
    color: var(--yellow);
    animation-delay: 2s;
}

.experience-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.badge-content {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
    animation: float 3s ease-in-out infinite;
}

.badge-content .years {
    font-size: 1.25rem;
    line-height: 1;
}

.badge-content .text {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* ===========================================
   2. TIMELINE SECTION
   =========================================== */
.timeline-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Timeline Container */
.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--timeline-line);
    border-radius: 2px;
    overflow: hidden;
}

.line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--cyan), var(--magenta));
    border-radius: 2px;
    transition: height 1s ease;
}

.timeline-items {
    position: relative;
    z-index: 1;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    transform: translateX(-50px);
}

.timeline-item:nth-child(even).visible {
    transform: translateX(0);
}

.item-marker {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    margin: 0 2rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.marker-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s infinite;
    opacity: 0.5;
}

.item-content {
    flex: 1;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.timeline-item:hover .item-content {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(0, 188, 212, 0.2);
}

.item-year {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
}

.item-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

.item-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.item-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.mini-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #666;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 0.5rem;
}

/* Future Item (CTA) */
.future-item .item-content {
    background: linear-gradient(135deg, 
        rgba(0, 188, 212, 0.05) 0%, 
        rgba(233, 30, 99, 0.05) 100%
    );
    border: 2px dashed rgba(0, 188, 212, 0.3);
}

.item-cta {
    margin-top: 1.5rem;
}

.future-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: white;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.future-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
}

/* ===========================================
   3. MISSION SECTION
   =========================================== */
.mission-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.95) 100%
    );
    position: relative;
    overflow: hidden;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.mission-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.mission-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(0, 188, 212, 0.2);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.card-content {
    color: #666;
    line-height: 1.6;
}

.card-description {
    margin-bottom: 1.5rem;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.card-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.vision-milestones {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.milestone {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0.75rem;
    border-left: 4px solid;
}

.milestone-year {
    font-size: 1.25rem;
    font-weight: 800;
    min-width: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 188, 212, 0.2);
}

.value-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    margin: 0 auto 1rem;
}

.value-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.value-item p {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

/* Mission CTA */
.mission-cta {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.mission-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-card {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: var(--hover-shadow);
    border-width: 2px;
    border-style: solid;
}

.cyan-border {
    border-color: var(--cyan);
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--black);
}

.cta-text {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.cta-stats .stat {
    text-align: center;
}

.cta-stats .stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--cyan);
    margin-bottom: 0.25rem;
    font-family: 'Courier New', monospace;
}

.cta-stats .stat-label {
    font-size: 0.875rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    min-width: 220px;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.phone-btn {
    background: white;
    color: var(--black);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.phone-btn:hover {
    transform: translateY(-3px);
    border-color: var(--cyan);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-btn small {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
}

/* ===========================================
   4. COMMITMENT SECTION
   =========================================== */
.commitment-section {
    padding: 6rem 0;
    background: white;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .commitment-grid {
        grid-template-columns: 1fr;
    }
}

.commitment-item {
    text-align: center;
    padding: 2rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.commitment-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.commitment-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(0, 188, 212, 0.2);
}

.item-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.commitment-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

.commitment-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials */
.testimonials-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.testimonials-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(0, 188, 212, 0.2);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-weight: 700;
    color: var(--black);
    font-size: 0.9375rem;
}

.author-location {
    font-size: 0.875rem;
    color: #888;
}

/* ===========================================
   5. STUDIO SECTION
   =========================================== */
.studio-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(0, 188, 212, 0.03) 0%, 
        rgba(233, 30, 99, 0.03) 100%
    );
}

.studio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .studio-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.studio-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.studio-description {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.studio-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: #666;
}

.studio-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.studio-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    min-width: 220px;
}

.studio-btn small {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Studio Visual */
.studio-visual {
    position: relative;
}

.studio-image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.studio-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.studio-image-container:hover .studio-image {
    transform: scale(1.05);
}

.floating-badges {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.floating-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===========================================
   6. FINAL CTA SECTION
   =========================================== */
.final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        var(--cyan) 0%, 
        var(--cyan-dark) 100%
    );
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.final-cta-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.decoration-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.cyan-dot {
    background: rgba(255, 255, 255, 0.2);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.magenta-dot {
    background: rgba(255, 255, 255, 0.15);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.yellow-dot {
    background: rgba(255, 255, 255, 0.1);
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.final-cta-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.final-cta-title .title-line {
    display: block;
}

.title-highlight {
    display: inline-block;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    z-index: -1;
}

.final-cta-text {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.final-cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.final-stat {
    text-align: center;
}

.final-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
}

.final-stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.final-cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.final-cta-btn {
    display: block;
    text-decoration: none;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    min-width: 280px;
}

.whatsapp-cta {
    background: white;
    color: var(--black);
}

.phone-cta {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.final-cta-btn:hover {
    transform: translateY(-5px);
}

.whatsapp-cta:hover {
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.phone-cta:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cta-btn-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
}

.cta-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.cta-text {
    text-align: left;
    flex: 1;
}

.cta-main-text {
    display: block;
    font-weight: 800;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.cta-sub-text {
    display: block;
    font-size: 0.875rem;
    opacity: 0.8;
}

.cta-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 70%
    );
    animation: shine 3s infinite linear;
}

.final-cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ===========================================
   7. ANIMATIONS ESPECÍFICAS
   =========================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* ===========================================
   8. RESPONSIVE ADJUSTMENTS
   =========================================== */
@media (max-width: 768px) {
    /* Hero */
    .about-hero {
        padding: 4rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Timeline */
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .item-marker {
        margin: 0 0 1rem 0;
    }
    
    .item-content {
        width: 100%;
    }
    
    /* Mission */
    .mission-cta {
        padding: 2rem 1rem;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
    }
    
    /* Studio */
    .studio-cta {
        flex-direction: column;
    }
    
    .studio-btn {
        width: 100%;
    }
    
    /* Final CTA */
    .final-cta-title {
        font-size: 2.5rem;
    }
    
    .final-cta-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .final-cta-actions {
        flex-direction: column;
    }
    
    .final-cta-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .studio-title {
        font-size: 2rem;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
    
    .cta-card {
        padding: 2rem 1rem;
    }
}

/* ===========================================
   9. LOADING STATES
   =========================================== */
.timeline-item.loading,
.mission-card.loading,
.commitment-item.loading {
    animation: skeletonLoading 1.5s infinite;
    background: linear-gradient(90deg,
        rgba(0, 0, 0, 0.05) 25%,
        rgba(0, 0, 0, 0.08) 50%,
        rgba(0, 0, 0, 0.05) 75%
    );
    background-size: 200% 100%;
}

@keyframes skeletonLoading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ===========================================
   10. ACCESSIBILITY
   =========================================== */
@media (prefers-reduced-motion: reduce) {
    .timeline-item,
    .mission-card,
    .commitment-item,
    .testimonial-card,
    .floating-element,
    .decoration-dot,
    .floating-badge {
        animation: none;
        transition: opacity 0.3s ease;
    }
    
    .hero-image,
    .studio-image {
        transition: none;
    }
}

/* Focus states */
.hero-btn:focus,
.future-btn:focus,
.cta-btn:focus,
.studio-btn:focus,
.final-cta-btn:focus {
    outline: 3px solid var(--cyan);
    outline-offset: 2px;
}