/* Variables y Reset */
:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4cc9f0;
    --dark-color: #293241;
    --light-color: #f8f9fa;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --danger-color: #f44336;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-100);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

/* Botones */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--light-color);
    color: var(--dark-color);
    border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
    background-color: var(--gray-200);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 12px 24px;
    font-size: 18px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-payment {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    font-size: 16px;
}

/* Header */
header {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo h1 {
    font-size: 24px;
    margin-bottom: 0;
}

.logo span {
    color: var(--primary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--gray-700);
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.auth-buttons button {
    margin-left: 10px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: white;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--gray-100);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--dark-color);
}

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

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--gray-600);
}

/* Estilos para la sección de testimonios */
.testimonials {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
}

.testimonial-card {
    display: none;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-icon img {
    width: 40px;
    opacity: 0.7;
    margin-bottom: 20px;
}

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

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
}

.author-info {
    text-align: center;
}

.author-name {
    font-weight: bold;
    display: block;
    color: #333;
}

.author-detail {
    color: #777;
    font-size: 14px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.carousel-prev, .carousel-next {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 0 15px;
    transition: color 0.3s;
}

.carousel-prev:hover, .carousel-next:hover {
    color: #0066cc;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    padding: 0 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #0066cc;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: white;     
}

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

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    border: 1px solid var(--gray-200);
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: scale(1.03);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08);
}

.badge {
    position: absolute;
    top: -10px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.price span {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray-600);
}

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

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
}

.features-list li:last-child {
    border-bottom: none;
}


/* Estilos para la sección "Cómo funciona" */
.steps-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.steps-section .section-title {
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 2.2rem;
}

.steps-section .section-subtitle {
    text-align: center;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    min-width: 250px;
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}

.step-content {
    text-align: center;
    padding-top: 10px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f4ff;
    border-radius: 50%;
    color: #0066cc;
    font-size: 32px;
}

.step-title {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-description {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
}

.steps-cta {
    text-align: center;
    margin-top: 60px;
}

.steps-guarantee {
    color: #27ae60;
    margin-top: 15px;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.payment-methods {
    margin-top: 20px;
}

.payment-methods p {
    color: #7f8c8d;
    margin-bottom: 10px;
    font-size: 14px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 24px;
    color: #555;
}

/* Responsive */
@media (max-width: 992px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card {
        width: 100%;
        max-width: 350px;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 1000px;
    box-shadow: var(--box-shadow);
    position: relative;
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: var(--gray-600);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.close:hover {
    color: var(--dark-color);
}

/* Editor Styles */
.editor-container {
    padding: 20px 0;
}

.upload-container {
    text-align: center;
    padding: 60px 20px;
    border: 2px dashed var(--gray-300);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.upload-container:hover {
    border-color: var(--primary-color);
    background-color: var(--gray-100);
}

.upload-container h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.upload-container p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

#imageInput {
    display: none;
}

.editor-workspace {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.editor-sidebar {
    width: 250px;
    padding: 20px;
    background-color: var(--gray-100);
    border-radius: var(--border-radius);
}

.editor-sidebar h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-300);
}

.tool-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    text-align: left;
    background-color: white;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.tool-btn:hover {
    background-color: var(--gray-200);
}

.tool-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.tool-options {
    background-color: white;
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 10px;
    border: 1px solid var(--gray-300);
}

.tool-options label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.tool-options input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
}

.editor-main {
    flex: 1;
    background-color: var(--gray-200);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 400px;
}

.image-container {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#imagePreview {
    max-width: 100%;
    max-height: 400px;
}

.editor-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--gray-200);
}

.premium-features {
    color: var(--gray-600);
    font-size: 14px;
}

/* Payment Modal */
.payment-container {
    padding: 20px 0;
}

.payment-container h2 {
    text-align: center;
    margin-bottom: 30px;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.payment-option {
    text-align: center;
    padding: 20px;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.payment-option:hover {
    border-color: var(--primary-color);
}

.payment-option img {
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 300px;
}

.footer-logo h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-logo p {
    color: var(--gray-400);
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--gray-700);
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        text-align: center;
    }
    
    .editor-workspace {
        flex-direction: column;
    }
    
    .editor-sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .auth-buttons {
        margin-top: 20px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .pricing-grid, .feature-grid {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .editor-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .premium-features {
        text-align: center;
        margin-top: 15px;
    }
}

/* Cropper.js Custom Styles */
.cropper-container {
    max-width: 100%;
}

.cropper-view-box {
    outline: 1px solid var(--primary-color);
    outline-color: rgba(67, 97, 238, 0.75);
}

.cropper-point {
    background-color: var(--primary-color);
}

.cropper-line {
    background-color: var(--primary-color);
}

  
        /* Estilos para los modales de autenticación */
        .auth-modal {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-color: #f5f5f5;
            padding: 20px;
    
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .auth-modal-content {
            position: relative;
            background-color: white;
            border-radius: 12px;
            width: 100%;
            max-width: 520px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transform: translateY(0);
            transition: transform 0.3s ease;
        }

        .auth-modal.active .auth-modal-content {
            transform: translateY(0);
        }

        .auth-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            color: #aaa;
            cursor: pointer;
            transition: color 0.3s;
        }

        .auth-close:hover {
            color: #333;
        }

        .auth-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .auth-header h2 {
            color: #2c3e50;
            font-size: 1.8rem;
            margin-bottom: 8px;
        }

        .auth-header p {
            color: #7f8c8d;
            font-size: 0.95rem;
        }

        .auth-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #2c3e50;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .form-group input {
            width: 100%;
            padding: 12px 15px 12px 40px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .form-group input:focus {
            border-color: #0066cc;
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
            outline: none;
        }

        .input-icon {
            position: absolute;
            left: 15px;
            bottom: 12px;
            color: #7f8c8d;
            font-size: 16px;
        }

        .show-password {
            position: absolute;
            right: 15px;
            bottom: 12px;
            background: none;
            border: none;
            color: #7f8c8d;
            cursor: pointer;
            font-size: 16px;
        }

        .password-hint {
            font-size: 0.8rem;
            color: #7f8c8d;
            margin-top: 5px;
        }

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #7f8c8d;
            cursor: pointer;
        }

        .forgot-password {
            color: #0066cc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .forgot-password:hover {
            color: #004999;
        }

        .btn-block {
            width: 100%;
            padding: 12px;
            font-size: 1rem;
        }

        .auth-divider {
            display: flex;
            align-items: center;
            color: #7f8c8d;
            font-size: 0.85rem;
            margin: 10px 0;
        }

        .auth-divider::before,
        .auth-divider::after {
            content: "";
            flex: 1;
            border-bottom: 1px solid #eee;
        }

        .auth-divider::before {
            margin-right: 10px;
        }

        .auth-divider::after {
            margin-left: 10px;
        }

        .social-auth {
            display: flex;
            gap: 10px;
        }

        .btn-social {
            flex: 1;
            padding: 10px;
            border-radius: 8px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s;
        }

        .btn-google {
            background-color: white;
            color: #333;
            border: 1px solid #ddd;
        }

        .btn-google:hover {
            background-color: #f8f8f8;
            border-color: #ccc;
        }

        .btn-facebook {
            background-color: #3b5998;
            color: white;
            border: 1px solid #3b5998;
        }

        .btn-facebook:hover {
            background-color: #344e86;
            border-color: #344e86;
        }

        .auth-footer {
            text-align: center;
            font-size: 0.9rem;
            color: #7f8c8d;
            margin-top: 15px;
        }

        .auth-footer a {
            color: #0066cc;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .auth-footer a:hover {
            color: #004999;
        }

        .terms-group {
            margin-top: -10px;
        }

        .terms-label {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 0.85rem;
            color: #7f8c8d;
            cursor: pointer;
            line-height: 1.4;
        }

        .terms-label a {
            color: #0066cc;
            text-decoration: none;
        }

        .terms-label a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 480px) {
            .auth-modal-content {
                padding: 25px 20px;
                margin: 0 15px;
            }
            
            .social-auth {
                flex-direction: column;
            }
        }

/* Estilos para el modal de selección de servicio */
#serviceSelectModal .modal-content {
    max-width: 800px;
    margin: 10vh auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: #fff;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.service-selector-container {
    padding: 0;
}

.modal-header-custom {
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    color: white;
    padding: 25px 30px;
    text-align: center;
    border-radius: 12px 12px 0 0;
}

.modal-header-custom h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.modal-subtitle {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 16px;
    opacity: 0.85;
}

.service-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    padding: 30px;
}

.service-card {
    flex: 1 1 350px;
    max-width: 350px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card-header {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: #f5f7fa;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 160px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.service-card-content {
    padding: 20px;
}

.service-card h3 {
    margin-top: 0;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: #5d6778;
    font-size: 14px;
}

.service-features li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #4ca1af;
}

.badge-recommended, .badge-premium {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.badge-premium {
    background: #8e44ad;
}

.service-price {
    display: flex;
    align-items: flex-end;
    margin-bottom: 15px;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.price-currency {
    font-size: 14px;
    color: #7f8c8d;
    margin-left: 5px;
    margin-bottom: 3px;
}

.btn-select-service {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-select-service i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-select-service:hover i {
    transform: translateX(5px);
}

.service-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    margin-top: 10px;
    background: #f8f9fa;
    border-top: 1px solid #eaeaea;
    color: #34495e;
}

.service-guarantee i {
    font-size: 20px;
    margin-right: 10px;
    color: #2ecc71;
}

.service-guarantee p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

/* Ajustes responsive */
@media (max-width: 768px) {
    .service-options {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .modal-header-custom {
        padding: 20px;
    }
    
    .modal-header-custom h2 {
        font-size: 24px;
    }
}

/* Efecto al abrir el modal */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#serviceSelectModal .modal-content {
    animation: fadeInUp 0.4s ease-out forwards;
}        