/* CSS Dulce Espera */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --normal: #ff85a2; /* Rosa suave para parto natural */
            --normal-light: #ffd1dc; /* Rosa más claro */
            --cesarean: #c77dff; /* Morado suave para cesárea */
            --cesarean-light: #e0b0ff; /* Morado más claro */
            --light: #ffffff;
            --dark: #5a2a4b; /* Morado oscuro para textos */
            --text: #7a3d63; /* Rosa oscuro */
            --text-light: #b784a7; /* Rosa claro */
            --background: #fff5f9; /* Fondo rosa muy claro */
            --card-bg: #ffffff;
            --border: #f8d7e9; /* Borde rosa claro */
            --accent: #ff6b9d; /* Rosa fuerte para acentos */
        }
        
        body {
            font-family: 'Raleway', sans-serif;
            background: var(--background);
            color: var(--text);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
            scroll-behavior: smooth;
            background-image: linear-gradient(to bottom, #fff5f9, #ffeef6, #fff1f9, #fff5fc, #ffffff);
        }
        
        /* Animación de fondo */
        .background-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            background: 
                radial-gradient(circle at 20% 30%, var(--normal-light) 0%, transparent 30%),
                radial-gradient(circle at 70% 60%, var(--cesarean-light) 0%, transparent 30%);
            opacity: 0.3;
            animation: gradientAnimation 20s ease infinite;
            background-size: 200% 200%;
        }
        
        @keyframes gradientAnimation {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        
        .floating-icons {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .floating-icon {
            position: absolute;
            font-size: 1.5rem;
            color: rgba(255, 133, 162, 0.2); /* Rosa suave */
            animation: float 15s infinite ease-in-out;
        }
        
        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(30px, -40px) rotate(120deg);
            }
            66% {
                transform: translate(-20px, 30px) rotate(240deg);
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }
        
        .plans-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
            z-index: 10;
        }
        
        .header-section {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            animation: fadeInDown 1s ease-out;
            padding-top: 40px;
        }
        
        .clinic-logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .clinic-logo span {
            color: var(--accent);
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .clinic-logo .logo-icon {
            font-size: 2.5rem;
            color: var(--normal);
            background: rgba(255, 133, 162, 0.15);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .section-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--normal), var(--cesarean));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            display: inline-block;
            font-family: 'Montserrat', sans-serif;
            text-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        
        .section-subtitle {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 30px auto 0;
            color: var(--text);
            line-height: 1.6;
            font-weight: 400;
            background: rgba(255, 255, 255, 0.7);
            padding: 25px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border);
            position: relative;
        }
        
        .section-subtitle::before {
            content: "“";
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 6rem;
            color: var(--normal-light);
            opacity: 0.5;
        }
        
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .plan-card {
            background: var(--card-bg);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            border: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .plan-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        .plan-card.normal:hover {
            box-shadow: 0 25px 50px rgba(255, 133, 162, 0.25);
        }
        
        .plan-card.cesarean:hover {
            box-shadow: 0 25px 50px rgba(199, 125, 255, 0.25);
        }
        
        .plan-image {
            height: 280px;
            overflow: hidden;
            position: relative;
        }
        
        .plan-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.8));
            z-index: 1;
        }
        
        .plan-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .plan-card:hover .plan-image img {
            transform: scale(1.05);
        }
        
        .plan-header {
            padding: 30px 40px;
            text-align: center;
            color: var(--dark);
            position: relative;
            background: linear-gradient(to bottom, rgba(255,255,255,0.9), var(--card-bg));
        }
        
        .plan-name {
            font-size: 2.6rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 15px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .plan-card.normal .plan-name {
            color: var(--normal);
        }
        
        .plan-card.normal .plan-name::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: var(--normal);
            border-radius: 2px;
        }
        
        .plan-card.cesarean .plan-name {
            color: var(--cesarean);
        }
        
        .plan-card.cesarean .plan-name::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: var(--cesarean);
            border-radius: 2px;
        }
        
        .plan-price {
            font-size: 2.8rem;
            font-weight: 700;
            margin: 25px 0;
            color: var(--dark);
            display: flex;
            justify-content: center;
            align-items: baseline;
            gap: 10px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .plan-price span {
            font-size: 1.2rem;
            font-weight: 400;
            color: var(--text-light);
            font-family: 'Raleway', sans-serif;
        }
        
        .plan-tagline {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 90%;
            margin: 0 auto;
            color: var(--text);
            font-style: italic;
            line-height: 1.6;
        }
        
        .plan-ribbon {
            position: absolute;
            top: 25px;
            right: -45px;
            color: white;
            padding: 10px 45px;
            font-weight: 600;
            transform: rotate(45deg);
            font-size: 1rem;
            font-family: 'Montserrat', sans-serif;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            z-index: 2;
        }
        
        .plan-card.normal .plan-ribbon {
            background: var(--normal);
        }
        
        .plan-card.cesarean .plan-ribbon {
            background: var(--cesarean);
        }
        
        .plan-features {
            padding: 0 40px 30px;
            flex-grow: 1;
        }
        
        .feature-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 25px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--border);
            position: relative;
            color: var(--dark);
            font-family: 'Montserrat', sans-serif;
        }
        
        .plan-card.normal .feature-title {
            color: var(--normal);
        }
        
        .plan-card.cesarean .feature-title {
            color: var(--cesarean);
        }
        
        .feature-list {
            list-style: none;
        }
        
        .feature-list li {
            padding: 16px 0;
            padding-left: 45px;
            position: relative;
            font-size: 1.2rem;
            color: var(--text);
            border-bottom: 1px solid var(--border);
            line-height: 1.5;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 16px;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            border-radius: 50%;
        }
        
        .plan-card.normal .feature-list li::before {
            background: rgba(255, 133, 162, 0.15);
            color: var(--normal);
            border: 2px solid var(--normal);
        }
        
        .plan-card.cesarean .feature-list li::before {
            background: rgba(199, 125, 255, 0.15);
            color: var(--cesarean);
            border: 2px solid var(--cesarean);
        }
        
        .plan-footer {
            padding: 0 40px 40px;
            text-align: center;
        }
        
        .btn-details {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 45px;
            font-weight: 600;
            font-size: 1.3rem;
            border-radius: 50px;
            transition: all 0.4s ease;
            text-decoration: none;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 0.5px;
        }
        
        .btn-details:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .plan-card.normal .btn-details {
            background: rgba(255, 133, 162, 0.15);
            color: var(--normal);
            border: 2px solid var(--normal);
        }
        
        .plan-card.normal .btn-details:hover {
            background: var(--normal);
            color: white;
            box-shadow: 0 10px 25px rgba(255, 133, 162, 0.35);
        }
        
        .plan-card.cesarean .btn-details {
            background: rgba(199, 125, 255, 0.15);
            color: var(--cesarean);
            border: 2px solid var(--cesarean);
        }
        
        .plan-card.cesarean .btn-details:hover {
            background: var(--cesarean);
            color: white;
            box-shadow: 0 10px 25px rgba(199, 125, 255, 0.35);
        }
        
        .btn-details i {
            margin-right: 12px;
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(90, 42, 75, 0.9); /* Fondo morado oscuro semitransparente */
            z-index: 1000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease-out;
        }
        
        .modal-content {
            background: var(--card-bg);
            border-radius: 25px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
            width: 90%;
            max-width: 900px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid var(--border);
        }
        
        .modal.normal .modal-content {
            border-top: 8px solid var(--normal);
        }
        
        .modal.cesarean .modal-content {
            border-top: 8px solid var(--cesarean);
        }
        
        .modal-image {
            height: 300px;
            overflow: hidden;
            position: relative;
        }
        
        .modal-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.9));
            z-index: 1;
        }
        
        .modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .modal-header {
            padding: 35px 40px;
            text-align: center;
            color: var(--dark);
            position: relative;
            background: linear-gradient(to bottom, rgba(255,255,255,0.9), var(--card-bg));
        }
        
        .modal-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 15px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .modal.normal .modal-title {
            color: var(--normal);
        }
        
        .modal.normal .modal-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 180px;
            height: 4px;
            background: var(--normal);
            border-radius: 2px;
        }
        
        .modal.cesarean .modal-title {
            color: var(--cesarean);
        }
        
        .modal.cesarean .modal-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 180px;
            height: 4px;
            background: var(--cesarean);
            border-radius: 2px;
        }
        
        .modal-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 90%;
            margin: 0 auto;
            color: var(--text);
            font-style: italic;
            line-height: 1.6;
        }
        
        .modal-price {
            font-size: 2.8rem;
            font-weight: 700;
            margin: 30px 0;
            color: var(--dark);
            display: flex;
            justify-content: center;
            align-items: baseline;
            gap: 10px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .modal-price span {
            font-size: 1.2rem;
            font-weight: 400;
            color: var(--text-light);
        }
        
        .close-modal {
            position: absolute;
            top: 25px;
            right: 25px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.8);
            color: var(--text-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid var(--border);
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .close-modal:hover {
            background: rgba(255, 255, 255, 1);
            color: var(--text);
            transform: rotate(90deg);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .modal-body {
            padding: 35px 40px;
        }
        
        .modal-section {
            margin-bottom: 40px;
            background: rgba(255, 245, 249, 0.7);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
            border: 1px solid var(--border);
        }
        
        .modal-section-title {
            font-size: 1.8rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid;
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
        }
        
        .modal.normal .modal-section-title {
            color: var(--normal);
            border-bottom: 3px solid var(--normal-light);
        }
        
        .modal.cesarean .modal-section-title {
            color: var(--cesarean);
            border-bottom: 3px solid var(--cesarean-light);
        }
        
        .modal-features {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
            gap: 25px;
        }
        
        .modal-features li {
            padding: 16px 0 16px 55px;
            position: relative;
            font-size: 1.2rem;
            color: var(--text);
            border-bottom: 1px dashed var(--border);
            line-height: 1.5;
        }
        
        .modal-features li:last-child {
            border-bottom: none;
        }
        
        .modal-features li::before {
            content: '✓';
            position: absolute;
            left: 20px;
            top: 16px;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            border-radius: 50%;
        }
        
        .modal.normal .modal-features li::before {
            background: rgba(255, 133, 162, 0.15);
            color: var(--normal);
            border: 2px solid var(--normal);
        }
        
        .modal.cesarean .modal-features li::before {
            background: rgba(199, 125, 255, 0.15);
            color: var(--cesarean);
            border: 2px solid var(--cesarean);
        }
        
        .modal-footer {
            padding: 0 40px 40px;
            text-align: center;
            display: flex;
            justify-content: center;
            gap: 25px;
        }
        
        .btn-contact {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 40px;
            font-weight: 600;
            font-size: 1.3rem;
            border-radius: 50px;
            transition: all 0.4s ease;
            text-decoration: none;
            color: white;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 0.5px;
        }
        
        .btn-contact:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }
        
        .modal.normal .btn-contact {
            background: var(--normal);
        }
        
        .modal.normal .btn-contact:hover {
            background: #ff6b9d;
            box-shadow: 0 12px 30px rgba(255, 133, 162, 0.4);
        }
        
        .modal.cesarean .btn-contact {
            background: var(--cesarean);
        }
        
        .modal.cesarean .btn-contact:hover {
            background: #b56bff;
            box-shadow: 0 12px 30px rgba(199, 125, 255, 0.4);
        }
        
        .btn-back {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 40px;
            font-weight: 600;
            font-size: 1.3rem;
            border-radius: 50px;
            transition: all 0.4s ease;
            text-decoration: none;
            background: rgba(255, 255, 255, 0.9);
            color: var(--text);
            border: 2px solid var(--border);
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 0.5px;
        }
        
        .btn-back:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        
        /* Botones flotantes */
        .floating-buttons {
            position: fixed;
            bottom: 35px;
            right: 35px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            z-index: 100;
        }
        
        .floating-btn {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .floating-btn.whatsapp {
            background: #ff6b9d; /* Rosa fuerte */
            color: white;
        }
        
        .floating-btn.whatsapp:hover {
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 12px 30px rgba(255, 107, 157, 0.4);
        }
        
        .floating-btn.back {
            background: var(--cesarean); /* Morado */
            color: white;
        }
        
        .floating-btn.back:hover {
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 12px 30px rgba(199, 125, 255, 0.4);
        }
        
        /* Comparación */
        .comparison-section {
            background: rgba(255, 255, 255, 0.85);
            border-radius: 25px;
            padding: 50px;
            margin: 80px auto;
            max-width: 1200px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border);
        }
        
        .comparison-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 50px;
            color: var(--dark);
            position: relative;
            padding-bottom: 25px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .comparison-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 250px;
            height: 5px;
            background: linear-gradient(to right, var(--normal), var(--cesarean));
            border-radius: 3px;
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
        }
        
        .comparison-table th, .comparison-table td {
            padding: 20px;
            text-align: center;
            border-bottom: 2px solid var(--border);
        }
        
        .comparison-table th {
            font-size: 1.4rem;
            font-weight: 600;
            background: rgba(255, 245, 249, 0.7);
            color: var(--dark);
            font-family: 'Montserrat', sans-serif;
        }
        
        .comparison-table th:first-child {
            text-align: left;
            width: 40%;
        }
        
        .comparison-table td:first-child {
            text-align: left;
            font-weight: 500;
            font-size: 1.2rem;
        }
        
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        
        .comparison-table .normal {
            background: rgba(255, 133, 162, 0.08);
        }
        
        .comparison-table .cesarean {
            background: rgba(199, 125, 255, 0.08);
        }
        
        .feature-icon {
            font-size: 1.8rem;
            margin-right: 15px;
            vertical-align: middle;
        }
        
        .normal .feature-icon {
            color: var(--normal);
        }
        
        .cesarean .feature-icon {
            color: var(--cesarean);
        }
        
        /* Decoración */
        .decoration {
            position: absolute;
            z-index: -1;
        }
        
        .decoration.heart {
            top: 5%;
            left: 5%;
            font-size: 5rem;
            color: var(--normal-light);
            opacity: 0.3;
            animation: float 8s infinite ease-in-out;
        }
        
        .decoration.star {
            bottom: 15%;
            right: 8%;
            font-size: 4rem;
            color: var(--cesarean-light);
            opacity: 0.3;
            animation: float 10s infinite ease-in-out reverse;
        }
        
        /* Animaciones */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes scaleIn {
            from { transform: scale(0.9); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0); }
        }
        
        /* Responsividad */
        @media (max-width: 1200px) {
            .plans-grid {
                grid-template-columns: 1fr;
                max-width: 800px;
                margin: 0 auto;
            }
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.8rem;
            }
            
            .section-subtitle {
                font-size: 1.3rem;
                padding: 20px;
            }
            
            .plan-name {
                font-size: 2.3rem;
            }
            
            .modal-content {
                width: 95%;
            }
            
            .modal-footer {
                flex-direction: column;
                gap: 20px;
            }
            
            .comparison-section {
                padding: 30px;
            }
            
            .comparison-title {
                font-size: 2.2rem;
            }
            
            .floating-buttons {
                bottom: 25px;
                right: 25px;
            }
            
            .floating-btn {
                width: 60px;
                height: 60px;
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 576px) {
            .clinic-logo {
                font-size: 2.3rem;
                flex-direction: column;
                gap: 15px;
            }
            
            .section-title {
                font-size: 2.3rem;
            }
            
            .section-subtitle {
                font-size: 1.2rem;
            }
            
            .plans-grid {
                gap: 50px;
            }
            
            .plan-name {
                font-size: 2.1rem;
            }
            
            .modal-features {
                grid-template-columns: 1fr;
            }
            
            .comparison-table th, 
            .comparison-table td {
                padding: 15px 10px;
                font-size: 1rem;
            }
            
            .feature-icon {
                font-size: 1.4rem;
            }
            
            .decoration.heart,
            .decoration.star {
                display: none;
            }
        }
