/* Design Your Sign Page Styles */

/* Page Title Section */
.page-title-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-bottom: 0;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #001a4d;
}

/* Animation for title */
.animate-zoom-in {
    animation: zoomIn 0.5s ease-in-out;
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Intro Section */
.design-sign-intro {
    background-color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    max-width: 1320px;
    margin: 0 auto;
}

.intro-content {
    padding-right: 30px;
}

.design-sign-intro .display-3 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.design-sign-intro .team-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-primary, #002674);
    margin-bottom: 30px;
    font-weight: 400;
}

.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.intro-video {
    width: 100%;
    display: block;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.video-container:hover .intro-video {
    transform: scale(1.05);
}

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(135deg, #002674 0%, #001440 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Burbujas flotantes para How It Works */
.how-it-works-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 15s infinite ease-in-out;
    z-index: 1;
}

.how-bubble-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.how-bubble-2 {
    width: 180px;
    height: 180px;
    top: 60%;
    right: 5%;
    animation-delay: 2s;
    animation-duration: 22s;
    background: rgba(255, 255, 255, 0.05);
}

.how-bubble-3 {
    width: 80px;
    height: 80px;
    bottom: 10%;
    left: 15%;
    animation-delay: 4s;
    animation-duration: 15s;
    background: rgba(255, 255, 255, 0.08);
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

.how-it-works-section .section-title {
    color: #fff;
    font-size: 52px;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 24px;
    margin-bottom: 50px;
}

.steps-row {
    margin-top: 40px;
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-self: center !important;
    padding: 0 15px;
}

.step-card {
    border: 2px solid var(--color-white, #ffffff);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background-color: rgb(255, 255, 255);
    border-color: var(--color-white, #ffffff);
    color: var(--color-primary, #002674);
}

.step-icon {
    font-size: 60px;
    margin-bottom: 25px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 25px auto;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.step-title {
    font-size: 32px;
    font-family: var(--font-primary);
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-subtitle {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.step-description {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.testimonials-section .section-title {
    margin-bottom: 50px;
}

.testimonials-row {
    margin-top: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #001a4d;
}

/* Animaciones */
@keyframes animate-slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: animate-slide-up 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

/* Social Media Section */
.social-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.social-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #001a4d;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #001a4d;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* Animation for social section */
.animate-fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .design-sign-intro {
        padding: 60px 0;
    }
    
    .intro-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .design-sign-intro .display-3 {
        font-size: 2.8rem;
    }
    
    .how-it-works-section .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .design-sign-intro {
        padding: 50px 0;
    }
    
    .design-sign-intro .display-3 {
        font-size: 2.8rem;
    }
    
    .design-sign-intro .team-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .how-it-works-section {
        padding: 60px 0;
    }
    
    .how-it-works-section .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .step-card {
        margin-bottom: 20px;
    }
    
    .testimonial-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 28px;
    }
    
    .design-sign-intro {
        padding: 40px 0;
    }
    
    .design-sign-intro .display-3 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .how-it-works-section .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .gallery-end-cta {
        padding: 12px 25px;
        font-size: 16px;
    }
}

/* Sección de productos */
.yard-signs-products {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.yard-signs-products .display-4 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #002674;
}

.yard-signs-products .team-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.products-row {
    margin-top: 40px;
}

/* Slider de productos */
.products-slider-container {
    position: relative;
    padding: 0 10px;
    margin-top: 40px;
}

.products-slider {
    display: flex;
    overflow: hidden;
    margin: 0 -15px;
    padding: 10px 0;
}

.slider-item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
    transition: transform 0.3s ease;
}

/* Tarjetas de productos mejoradas */
.product-card {
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: #4a90e2;
}


.product-image {
    height: 280px;
    overflow: hidden;
    position: relative;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    background-color: #fff;
}

.product-title {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #4a90e2;
    line-height: 1.3;
    font-family: 'Arial', sans-serif;
}

.product-price {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-button {
    margin-top: 15px;
}


.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
}

.slider-prev,
.slider-next {
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--color-secondary);
}

/* Estilos responsivos para el slider */
@media (max-width: 991px) {
    .slider-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .slider-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Aviso importante */
.important-notice {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 20px;
    margin-top: 40px;
}

.important-notice h4 {
    color: #856404;
    font-weight: 600;
    margin-bottom: 10px;
}

.important-notice p {
    color: #856404;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5;
}
