.breadcrumbs {
    padding: 20px 0;
    background: rgba(26, 26, 26, 0.8);
    border-bottom: 1px solid rgba(85, 85, 85, 0.3);
}
.breadcrumbs a {
    color: #e8c5d8;
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumbs a:hover {
    color: #d4a5c4;
}
.separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}
.main-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}
.hero-about {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    overflow: hidden;
    padding: 40px 20px;
}
.hero-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, rgba(232, 197, 216, 0.1) 0%, transparent 70%);
    z-index: 1;
    animation: pulseGlow 4s ease-in-out infinite;
}
.hero-content {
    position: relative;
    z-index: 2;
    animation: heroEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 800px;
    width: 100%;
}
.page-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
    animation: gradientWave 3s ease-in-out infinite, titleBounce 1s ease-out;
}
.page-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: rgba(204, 204, 204, 0.9);
    margin-bottom: 40px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: indicatorFloat 2s ease-in-out infinite;
}
.scroll-arrow {
    width: 20px;
    height: 20px;
    border: 2px solid #e8c5d8;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: arrowPulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(232, 197, 216, 0.5));
}
.historia-section,
.quienes-section,
.confianza-section,
.calidad-section,
.envios-section {
    padding: clamp(60px, 10vw, 100px) 0;
    position: relative;
    overflow: hidden;
}
.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 80px);
    align-items: center;
}
.content-row.reverse {
    grid-template-columns: 1fr 1fr;
}
.content-row.reverse .content-text {
    order: 2;
}
.content-row.reverse .content-image {
    order: 1;
}
.section-badge {
    display: inline-block;
    background: rgba(232, 197, 216, 0.1);
    color: #e8c5d8;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(232, 197, 216, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    animation: badgeGlow 3s ease-in-out infinite;
}
.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmerSlide 2s infinite;
}
.section-badge.pink {
    background: rgba(255, 182, 193, 0.1);
    color: #ffb6c1;
    border-color: rgba(255, 182, 193, 0.2);
}
.section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #ffffff;
    animation: gradientWave 4s ease-in-out infinite;
}
.section-description {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: rgba(204, 204, 204, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: clamp(20px, 4vw, 30px);
    margin-top: 40px;
}
.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(51, 51, 51, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(85, 85, 85, 0.2);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: statEntrance 0.6s ease-out backwards;
}
.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:hover {
    transform: translateY(-10px) scale(1.05) rotate(2deg);
    box-shadow: 0 15px 35px rgba(232, 197, 216, 0.3);
    background: rgba(232, 197, 216, 0.1);
    border-color: rgba(232, 197, 216, 0.5);
}
.stat-number {
    display: block;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #e8c5d8;
    margin-bottom: 8px;
    animation: numberPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-shadow: 0 0 15px rgba(232, 197, 216, 0.4);
}
.stat-label {
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    color: rgba(204, 204, 204, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.feature-list {
    margin-top: 30px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(204, 204, 204, 0.9);
    font-size: clamp(0.9rem, 2vw, 1rem);
    opacity: 0;
    animation: slideInLeft 0.6s ease-out forwards;
}
.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}
.trust-features {
    margin-top: 40px;
}
.trust-item {
    display: flex;
    gap: clamp(15px, 3vw, 20px);
    margin-bottom: 25px;
    padding: clamp(15px, 3vw, 20px);
    background: rgba(51, 51, 51, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(85, 85, 85, 0.2);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: trustSlideIn 0.8s ease-out backwards;
}
.trust-item:nth-child(1) { animation-delay: 0.2s; }
.trust-item:nth-child(2) { animation-delay: 0.4s; }
.trust-item:hover {
    background: rgba(51, 51, 51, 0.5);
    border-color: rgba(232, 197, 216, 0.4);
    transform: translateX(20px) scale(1.03);
    box-shadow: -10px 10px 30px rgba(232, 197, 216, 0.2);
}
.trust-icon,
.shipping-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 0 auto;
}
.trust-icon img,
.shipping-icon img {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
}
.trust-item:hover .trust-icon img,
.shipping-item:hover .shipping-icon img {
    transform: scale(1.2) rotate(10deg);
}
.trust-content h4 {
    color: #e8c5d8;
    margin-bottom: 8px;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}
.trust-content p {
    color: rgba(204, 204, 204, 0.8);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    line-height: 1.6;
}
.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: clamp(20px, 4vw, 30px);
    margin-top: 40px;
}
.quality-item {
    text-align: center;
    padding: clamp(20px, 4vw, 25px);
    background: rgba(232, 197, 216, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(232, 197, 216, 0.1);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: qualityPop 0.8s ease-out backwards;
}
.quality-item:nth-child(1) { animation-delay: 0.1s; }
.quality-item:nth-child(2) { animation-delay: 0.2s; }
.quality-item:hover {
    transform: translateY(-15px) rotateY(10deg) rotateX(5deg) scale(1.05);
    box-shadow: 0 20px 50px rgba(232, 197, 216, 0.3);
    background: rgba(232, 197, 216, 0.15);
    border-color: rgba(232, 197, 216, 0.5);
}
.quality-number {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #e8c5d8;
    display: block;
    margin-bottom: 8px;
    animation: qualityNumberPulse 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(232, 197, 216, 0.5);
}
.quality-label {
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    color: rgba(204, 204, 204, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.shipping-features {
    margin-top: 40px;
}
.shipping-item {
    display: flex;
    align-items: center;
    gap: clamp(15px, 3vw, 20px);
    margin-bottom: 20px;
    padding: clamp(15px, 3vw, 20px);
    background: rgba(51, 51, 51, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(85, 85, 85, 0.2);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: shippingWave 0.8s ease-out backwards;
}
.shipping-item:nth-child(1) { animation-delay: 0.1s; }
.shipping-item:nth-child(2) { animation-delay: 0.2s; }
.shipping-item:nth-child(3) { animation-delay: 0.3s; }
.shipping-item:hover {
    background: rgba(51, 51, 51, 0.5);
    border-color: rgba(232, 197, 216, 0.4);
    transform: translateX(25px) scale(1.05);
    box-shadow: -15px 10px 35px rgba(232, 197, 216, 0.25);
}
.shipping-info h4 {
    color: #e8c5d8;
    margin-bottom: 5px;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}
.shipping-info p {
    color: rgba(204, 204, 204, 0.8);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    line-height: 1.5;
}
.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(51, 51, 51, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(85, 85, 85, 0.3);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    perspective: 1000px;
}
.image-container:hover {
    transform: translateY(-20px) rotateY(-5deg) rotateX(5deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(232, 197, 216, 0.3);
    border-color: rgba(232, 197, 216, 0.5);
}
.main-image {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;
    transition: all 0.6s ease;
    animation: imageFloat 6s ease-in-out infinite;
}
.image-container:hover .main-image {
    transform: scale(1.1) rotate(2deg);
}
.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, rgba(232, 197, 216, 0.2) 0%, transparent 70%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: glowPulse 3s ease-in-out infinite;
}
.image-container:hover .image-glow {
    opacity: 1;
}
@keyframes heroEntrance {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.8) rotate(-5deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}
@keyframes titleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes gradientWave {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}
@keyframes indicatorFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}
@keyframes arrowPulse {
    0%, 100% {
        transform: rotate(-45deg) translateY(0);
        opacity: 1;
    }
    50% {
        transform: rotate(-45deg) translateY(10px);
        opacity: 0.5;
    }
}
@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(232, 197, 216, 0.2); }
    50% { box-shadow: 0 0 25px rgba(232, 197, 216, 0.5); }
}
@keyframes shimmerSlide {
    0% { left: -100%; }
    100% { left: 200%; }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes statEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.5) rotate(-10deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}
@keyframes numberPop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px) rotate(-5deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}
@keyframes trustSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-80px) rotateY(-90deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0deg);
    }
}
@keyframes qualityPop {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}
@keyframes qualityNumberPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(232, 197, 216, 0.5);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 40px rgba(232, 197, 216, 0.8);
    }
}
@keyframes shippingWave {
    0% {
        opacity: 0;
        transform: translateX(-100px) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}
@keyframes imageFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(2deg); }
    66% { transform: translateY(-5px) rotate(-2deg); }
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}
[data-aos] {
    opacity: 0;
    transition: all 0.8s ease;
}
[data-aos].aos-animate {
    opacity: 1;
}
[data-aos="fade-right"] {
    transform: translateX(-80px) rotate(-10deg);
}
[data-aos="fade-left"] {
    transform: translateX(80px) rotate(10deg);
}
[data-aos="fade-right"].aos-animate,
[data-aos="fade-left"].aos-animate {
    transform: translateX(0) rotate(0deg);
}
@media (max-width: 768px) {
    .hero-about {
        min-height: 45vh;
        padding: 30px 15px;
    }
    .page-title {
        margin-bottom: 15px;
        animation: titleBounce 1.5s ease-out infinite;
    }
    .page-subtitle {
        margin-bottom: 30px;
    }
    .hero-scroll-indicator {
        bottom: 20px;
    }
    .content-row,
    .content-row.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .content-row.reverse .content-text,
    .content-row.reverse .content-image {
        order: unset;
    }
    .feature-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .feature-item {
        justify-content: center;
        max-width: 300px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .trust-features,
    .shipping-features {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .trust-item,
    .shipping-item {
        flex-direction: row;
        text-align: left;
    }
    .trust-item:hover,
    .shipping-item:hover {
        transform: translateX(0) scale(1.02) rotate(1deg);
    }
    .image-container {
        max-width: 320px;
    }
    .main-image {
        max-height: 280px;
    }
    .image-container:hover {
        transform: translateY(-10px) scale(1.03);
    }
}
@media (max-width: 600px) {
    .breadcrumbs {
        padding: 15px 0;
    }
    .hero-about {
        min-height: 40vh;
        padding: 25px 10px;
    }
    .section-badge {
        font-size: 11px;
        padding: 6px 15px;
        margin-bottom: 15px;
    }
    .section-title {
        margin-bottom: 20px;
    }
    .section-description {
        margin-bottom: 25px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .stat-item {
        padding: 20px 15px;
    }
    .stat-item:hover {
        transform: translateY(-8px) scale(1.03);
    }
    .feature-list {
        margin-top: 25px;
    }
    .feature-item {
        margin-bottom: 12px;
        gap: 12px;
    }
    .trust-features {
        margin-top: 30px;
    }
    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        margin-bottom: 20px;
        padding: 20px 15px;
    }
    .trust-item:hover {
        transform: translateY(-8px) scale(1) rotate(0deg);
    }
    .shipping-features {
        margin-top: 30px;
    }
    .shipping-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px 15px;
    }
    .shipping-item:hover {
        transform: translateY(-8px) scale(1) rotate(0deg);
    }
    .quality-item {
        padding: 25px 20px;
    }
    .quality-item:hover {
        transform: translateY(-10px) scale(1.03);
    }
    .image-container {
        max-width: 280px;
    }
    .main-image {
        max-height: 240px;
    }
    .image-container:hover {
        transform: translateY(-8px) scale(1.02);
    }
    .historia-section,
    .quienes-section,
    .confianza-section,
    .calidad-section,
    .envios-section {
        padding: 50px 0;
    }
    .trust-icon,
    .shipping-icon {
        width: 45px;
        height: 45px;
    }
    .trust-icon img,
    .shipping-icon img {
        width: 35px;
        height: 35px;
    }
}
@media (max-width: 480px) {
    .hero-about {
        min-height: 35vh;
        padding: 20px 10px;
    }
    .page-subtitle {
        padding: 0 10px;
    }
    .content-row {
        gap: 30px;
    }
    .historia-section,
    .quienes-section,
    .confianza-section,
    .calidad-section,
    .envios-section {
        padding: 40px 0;
    }
    .stat-item {
        padding: 15px 10px;
    }
    .stat-item:hover {
        transform: translateY(-5px) scale(1.02);
    }
    .trust-item,
    .shipping-item,
    .quality-item,
    .stat-item {
        border-radius: 12px;
    }
    .image-container {
        border-radius: 15px;
        max-width: 240px;
    }
    .main-image {
        max-height: 200px;
    }
    .image-container:hover {
        transform: translateY(-5px) scale(1.01);
    }
    .trust-icon,
    .shipping-icon {
        width: 40px;
        height: 40px;
    }
    .trust-icon img,
    .shipping-icon img {
        width: 30px;
        height: 30px;
    }
}
@media (max-width: 360px) {
    .hero-about {
        min-height: 30vh;
        padding: 15px 8px;
    }
    .section-badge {
        font-size: 10px;
        padding: 5px 12px;
    }
    .feature-item,
    .trust-item,
    .shipping-item {
        padding: 15px 12px;
        gap: 10px;
    }
    .quality-item,
    .stat-item {
        padding: 15px 12px;
    }
    .stats-grid,
    .quality-grid {
        gap: 12px;
    }
    .stat-item:hover,
    .quality-item:hover {
        transform: translateY(-3px);
    }
}
@media (hover: hover) and (pointer: fine) {
    .section-badge:hover {
        transform: scale(1.1) rotate(2deg);
        box-shadow: 0 0 30px rgba(232, 197, 216, 0.6);
    }
    .section-title:hover {
        text-shadow: 0 0 20px rgba(232, 197, 216, 0.6);
        transform: scale(1.02);
    }
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .main-image {
        animation: none;
    }
    .hero-content,
    .page-title,
    .stat-item,
    .feature-item,
    .trust-item,
    .shipping-item,
    .quality-item {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
@media (prefers-contrast: more) {
    .section-badge,
    .stat-item,
    .trust-item,
    .shipping-item,
    .quality-item {
        border-width: 2px;
    }
    .page-title,
    .section-title {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
}
@media (pointer: coarse) {
    .stat-item,
    .quality-item,
    .trust-item,
    .shipping-item {
        min-height: 44px;
        padding: 20px;
    }
    .feature-item {
        padding: 12px 0;
    }
}
