
body {
	padding: 2rem;
	font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
}

h1 {
	font-size: 16px;
	margin-top: 0;
}

p {
	color: rgb(107, 114, 128);
	font-size: 15px;
	margin-bottom: 10px;
	margin-top: 5px;
}

.card {
	max-width: 620px;
	margin: 0 auto;
	padding: 16px;
	border: 1px solid lightgray;
	border-radius: 16px;
}

.card p:last-child {
	margin-bottom: 0;
}

/* New Pricing Table Styles */
.pricing-container-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease;
}

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

.plan-card.featured {
    border: 1px solid #3b82f6;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.tag {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #3b82f6;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: bold;
}
.plan-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}
.description {
    color: #1e40af;  /* Azul destacado */
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}
.price-box {
    margin-bottom: 1.5rem;
}

.setup {
    color: #1e40af;  /* Azul fuerte */
    font-size: 0.875rem;
    font-weight: 600;
}
.monthly {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1f2937;
    margin-top: 0.25rem;
}

.benefit-list {
    margin-bottom: 2rem;
    color: #4b5563;
}

.benefit-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.benefit-list strong {
    color: #3b82f6;
}

.btn-select {
    display: block;
    width: 100%;
    background: #3b82f6;
    color: white;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background: #2563eb;
}

.guarantee-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #f3f4f6;
    border-radius: 0.5rem;
    text-align: center;
}

.guarantee-section h4 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.guarantee-section p {
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}
.guarantee-section strong {
    color: #3b82f6;
}

/* Accordion Styles */
.specs-accordion details[open] summary .icon {
    content: "-";
    transform: rotate(45deg);
    transition: 0.3s;
}
.specs-accordion details summary::-webkit-details-marker {
    display: none;
}
